Home
last modified time | relevance | path

Searched refs:category (Results 1 – 25 of 550) sorted by relevance

12345678910>>...22

/external/webrtc/webrtc/base/
Dtrace_event.h164 #define TRACE_EVENT0(category, name) \ argument
165 INTERNAL_TRACE_EVENT_ADD_SCOPED(category, name)
166 #define TRACE_EVENT1(category, name, arg1_name, arg1_val) \ argument
167 INTERNAL_TRACE_EVENT_ADD_SCOPED(category, name, arg1_name, arg1_val)
168 #define TRACE_EVENT2(category, name, arg1_name, arg1_val, arg2_name, arg2_val) \ argument
169 INTERNAL_TRACE_EVENT_ADD_SCOPED(category, name, arg1_name, arg1_val, \
174 #define UNSHIPPED_TRACE_EVENT0(category, name) (void)0 argument
175 #define UNSHIPPED_TRACE_EVENT1(category, name, arg1_name, arg1_val) (void)0 argument
176 #define UNSHIPPED_TRACE_EVENT2(category, name, arg1_name, arg1_val, \ argument
178 #define UNSHIPPED_TRACE_EVENT_INSTANT0(category, name) (void)0 argument
[all …]
/external/selinux/libsepol/tests/policies/test-cond/
Drefpolicy-base.conf547 category c0; category c1; category c2; category c3;
548 category c4; category c5; category c6; category c7;
549 category c8; category c9; category c10; category c11;
550 category c12; category c13; category c14; category c15;
551 category c16; category c17; category c18; category c19;
552 category c20; category c21; category c22; category c23;
553 category c24; category c25; category c26; category c27;
554 category c28; category c29; category c30; category c31;
555 category c32; category c33; category c34; category c35;
556 category c36; category c37; category c38; category c39;
[all …]
/external/chromium-trace/catapult/systrace/systrace/agents/
Dftrace_agent.py142 for category in self._categories:
143 self._category_enable(category)
167 for category in self._categories:
168 self._category_disable(category)
198 def _is_category_available(self, category): argument
199 if category not in all_categories:
202 req_events = all_categories[category]["req"]
220 for category in self._avail_categories():
221 desc = all_categories[category]["desc"]
222 print "{0: <16}".format(category), ": ", desc
[all …]
/external/fio/
Doptions.c1281 .category = FIO_OPT_C_GENERAL,
1290 .category = FIO_OPT_C_GENERAL,
1301 .category = FIO_OPT_C_FILE,
1311 .category = FIO_OPT_C_FILE,
1321 .category = FIO_OPT_C_FILE,
1334 .category = FIO_OPT_C_FILE,
1359 .category = FIO_OPT_C_FILE,
1372 .category = FIO_OPT_C_IO,
1420 .category = FIO_OPT_C_IO,
1441 .category = FIO_OPT_C_IO,
[all …]
/external/selinux/libsepol/cil/test/integration_testing/
Dordered_lists_easy.cil23 (category c0)
24 (category c1)
25 (category c2)
26 (category c3)
27 (category c4)
28 (category c5)
29 (category c6)
30 (category c7)
31 (category c8)
32 (category c9)
Dordered_lists_hard.cil27 (category c0)
28 (category c1)
29 (category c2)
30 (category c3)
31 (category c4)
32 (category c5)
33 (category c6)
34 (category c7)
35 (category c8)
36 (category c9)
Dordered_lists_bad2.cil27 (category c0)
28 (category c1)
29 (category c2)
30 (category c3)
31 (category c4)
32 (category c5)
33 (category c6)
34 (category c7)
35 (category c8)
36 (category c9)
Dordered_lists_bad3.cil27 (category c0)
28 (category c1)
29 (category c2)
30 (category c3)
31 (category c4)
32 (category c5)
33 (category c6)
34 (category c7)
35 (category c8)
36 (category c9)
Dordered_lists_bad1.cil26 (category c0)
27 (category c1)
28 (category c2)
29 (category c3)
30 (category c4)
31 (category c5)
32 (category c6)
33 (category c7)
34 (category c8)
35 (category c9)
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
Dtracing_category_filter.py66 for category in filter_set:
67 if category == '':
70 if _delay_re.match(category):
71 self._synthetic_delays.add(category)
74 if category[0] == '-':
75 assert not category[1:] in self._included_categories
76 self._excluded_categories.add(category[1:])
79 if category.startswith('disabled-by-default-'):
80 self._disabled_by_default_categories.add(category)
83 assert not category in self._excluded_categories
[all …]
/external/mesa3d/src/mapi/glapi/gen/
Dextension_helper.py107 [category, num] = api.get_category_for_name( n )
108 if category not in abi:
116 [category, num] = api.get_category_for_name( n )
117 if category in abi:
134 [category, num] = api.get_category_for_name( n )
135 if category not in abi:
136 condition.append( 'defined(need_%s)' % (gl_XML.real_category_name( category )) )
197 [category, num] = api.get_category_for_name( n )
198 if category not in abi:
199 c = gl_XML.real_category_name(category)
[all …]
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
DFirstFitLocalCombiningAllocator.java252 int category = ssaSpec.getCategory(); in handleLocalAssociatedOther() local
254 && category > maxCategory) { in handleLocalAssociatedOther()
255 maxCategory = category; in handleLocalAssociatedOther()
331 private void markReserved(int ropReg, int category) { in markReserved() argument
332 reservedRopRegs.set(ropReg, ropReg + category, true); in markReserved()
488 int category = checkRegSpec.getCategory(); in handleCheckCastResults() local
493 checkMapped = tryMapReg(checkRegSpec, moveRopReg, category); in handleCheckCastResults()
497 moveMapped = tryMapReg(moveRegSpec, checkRopReg, category); in handleCheckCastResults()
502 int ropReg = findNextUnreservedRopReg(paramRangeEnd, category); in handleCheckCastResults()
508 while (!tryMapRegs(ssaRegs, ropReg, category, false)) { in handleCheckCastResults()
[all …]
/external/icu/icu4c/source/common/
Dpluralmap.h56 static const char *getCategoryName(Category category);
183 const T &get(const char *category) const { in get() argument
184 return get(toCategory(category)); in get()
191 const T &get(const UnicodeString &category) const { in get() argument
192 return get(toCategory(category)); in get()
206 Category category, in getMutable() argument
208 return getMutable(category, NULL, status); in getMutable()
217 const char *category, in getMutable() argument
219 return getMutable(toCategory(category), NULL, status); in getMutable()
228 Category category, in getMutableWithDefault() argument
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DRegisterType.java43 public final byte category; field in RegisterType
46 private RegisterType(byte category, @Nullable TypeProto type) { in RegisterType() argument
47 …assert ((category == REFERENCE || category == UNINIT_REF || category == UNINIT_THIS) && type != nu… in RegisterType()
48 … ((category != REFERENCE && category != UNINIT_REF && category != UNINIT_THIS) && type == null); in RegisterType()
50 this.category = category; in RegisterType()
56 return "(" + CATEGORY_NAMES[category] + (type==null?"":("," + type)) + ")"; in toString()
61 writer.write(CATEGORY_NAMES[category]); in writeTo()
76 if (category != that.category) { in equals()
82 if (category == UNINIT_REF || category == UNINIT_THIS) { in equals()
90 int result = category; in hashCode()
[all …]
/external/libchrome/base/trace_event/
Dtrace_config.cc362 std::string category = *iter; in InitializeFromStrings() local
364 if (category.empty()) in InitializeFromStrings()
367 if (category.find(kSyntheticDelayCategoryFilterPrefix) == 0 && in InitializeFromStrings()
368 category.at(category.size() - 1) == ')') { in InitializeFromStrings()
369 category = category.substr( in InitializeFromStrings()
371 category.size() - strlen(kSyntheticDelayCategoryFilterPrefix) - 1); in InitializeFromStrings()
372 size_t name_length = category.find(';'); in InitializeFromStrings()
374 name_length != category.size() - 1) { in InitializeFromStrings()
375 synthetic_delays_.push_back(category); in InitializeFromStrings()
377 } else if (category.at(0) == '-') { in InitializeFromStrings()
[all …]
/external/mesa3d/src/mesa/main/
DAPIspec.dtd3 <!ELEMENT api (category*, function*)>
4 <!ELEMENT category EMPTY> element
18 <!ATTLIST category name NMTOKEN #REQUIRED>
35 category NMTOKEN #IMPLIED> attribute
39 category NMTOKEN #IMPLIED> attribute
45 category NMTOKEN #IMPLIED> attribute
48 category NMTOKEN #IMPLIED> attribute
52 category NMTOKEN #IMPLIED> attribute
/external/llvm/lib/Support/
DAPFloat.cpp601 category = rhs.category; in assign()
603 if (isFiniteNonZero() || category == fcNaN) in assign()
610 assert(isFiniteNonZero() || category == fcNaN); in copySignificand()
622 category = fcNaN; in makeNaN()
695 category = rhs.category; in operator =()
784 category != rhs.category || in bitwiseIsEqual()
787 if (category==fcZero || category==fcInfinity) in bitwiseIsEqual()
800 category = fcNormal; in APFloat()
809 category = fcZero; in APFloat()
1225 category = fcInfinity; in handleOverflow()
[all …]
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dintent.py15 category=None, component=None, data=None, extras=None, argument
34 if isinstance(category, list) or category is None:
35 self._category = category
37 self._category = [category]
58 def category(self): member in Intent
93 if self.category:
94 args.extend(arg for cat in self.category for arg in ('-c', cat))
/external/libmicrohttpd/src/testcurl/
Dgauger.h20 #define GAUGER(category, counter, value, unit)\ argument
36 __gauger_v[8] = category; \
48 #define GAUGER_ID(category, counter, value, unit, id)\ argument
66 __gauger_v[10] = category;\
81 #define GAUGER_ID(category, counter, value, unit, id) {} argument
82 #define GAUGER(category, counter, value, unit) {} argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRuleBasedBreakIterator.java449 int category; in checkDictionary() local
454 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
461 if ((category & 0x4000) != 0) { in checkDictionary()
466 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
467 } while (c != CharacterIteration.DONE32 && ((category & 0x4000)) != 0); in checkDictionary()
483 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
485 while (c != CharacterIteration.DONE32 && ((category & 0x4000) != 0)); in checkDictionary()
497 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
509 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
513 while((current = fText.getIndex()) < rangeEnd && (category & 0x4000) == 0) { in checkDictionary()
[all …]
DRBBIDataWrapper.java451 int category; in dumpCharCategories() local
454 for (category = 0; category <= fHeader.fCatCount; category ++) { in dumpCharCategories()
455 catStrings[category] = ""; in dumpCharCategories()
460 category = fTrie.getCodePointValue(char32); in dumpCharCategories()
461 category &= ~0x4000; // Mask off dictionary bit. in dumpCharCategories()
462 if (category < 0 || category > fHeader.fCatCount) { in dumpCharCategories()
463 System.out.println("Error, bad category " + Integer.toHexString(category) + in dumpCharCategories()
467 if (category == lastCat ) { in dumpCharCategories()
481 lastCat = category; in dumpCharCategories()
490 for (category = 0; category <= fHeader.fCatCount; category ++) { in dumpCharCategories()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedBreakIterator.java439 int category; in checkDictionary() local
444 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
451 if ((category & 0x4000) != 0) { in checkDictionary()
456 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
457 } while (c != CharacterIteration.DONE32 && ((category & 0x4000)) != 0); in checkDictionary()
473 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
475 while (c != CharacterIteration.DONE32 && ((category & 0x4000) != 0)); in checkDictionary()
487 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
499 category = (short)fRData.fTrie.getCodePointValue(c); in checkDictionary()
503 while((current = fText.getIndex()) < rangeEnd && (category & 0x4000) == 0) { in checkDictionary()
[all …]
DRBBIDataWrapper.java452 int category; in dumpCharCategories() local
455 for (category = 0; category <= fHeader.fCatCount; category ++) { in dumpCharCategories()
456 catStrings[category] = ""; in dumpCharCategories()
461 category = fTrie.getCodePointValue(char32); in dumpCharCategories()
462 category &= ~0x4000; // Mask off dictionary bit. in dumpCharCategories()
463 if (category < 0 || category > fHeader.fCatCount) { in dumpCharCategories()
464 System.out.println("Error, bad category " + Integer.toHexString(category) + in dumpCharCategories()
468 if (category == lastCat ) { in dumpCharCategories()
482 lastCat = category; in dumpCharCategories()
491 for (category = 0; category <= fHeader.fCatCount; category ++) { in dumpCharCategories()
[all …]
/external/selinux/secilc/docs/
Dcil_mls_labeling_statements.md159 category section in Multi-Level Security Labeling Statements
162 Declare a category identifier in the current namespace. Multiple category statements declared in th…
166 (category category_id)
177 <td align="left"><p><code>category</code></p></td>
178 <td align="left"><p>The <code>category</code> keyword.</p></td>
182 <td align="left"><p>The <code>category</code> identifier.</p></td>
189 This example declares a three [`category`](cil_mls_labeling_statements.md#category) identifiers:
191 (category c0)
192 (category c1)
193 (category c2)
[all …]
/external/apache-http/src/org/apache/http/impl/
DEnglishReasonPhraseCatalog.java93 final int category = status / 100; in getReason() local
94 final int subcode = status - 100*category; in getReason()
97 if (REASON_PHRASES[category].length > subcode) in getReason()
98 reason = REASON_PHRASES[category][subcode]; in getReason()
124 final int category = status / 100; in setReason() local
125 final int subcode = status - 100*category; in setReason()
126 REASON_PHRASES[category][subcode] = reason; in setReason()

12345678910>>...22