HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 76 - 100 of 1545) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
system_category.pass.cpp 25 assert(e_cond.category() == std::generic_category());
28 assert(e_cond.category() == std::system_category());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
assign.pass.cpp 25 assert(ec.category() == std::system_category());
31 assert(ec.category() == std::generic_category());
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
assign.pass.cpp 25 assert(ec.category() == std::system_category());
31 assert(ec.category() == std::generic_category());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
system_category.pass.cpp 25 assert(e_cond.category() == std::generic_category());
28 assert(e_cond.category() == std::system_category());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
assign.pass.cpp 25 assert(ec.category() == std::system_category());
31 assert(ec.category() == std::generic_category());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
assign.pass.cpp 25 assert(ec.category() == std::system_category());
31 assert(ec.category() == std::generic_category());
  /tools/loganalysis/src/com/android/loganalysis/item/
AnrItem.java 29 * An enum used to select the CPU usage category.
39 * An enum used to select the load category.
73 * Get the CPU usage for a given category.
75 public Double getCpuUsage(CpuUsageCategory category) {
76 return (Double) getAttribute(category.toString());
80 * Set the CPU usage for a given category.
82 public void setCpuUsage(CpuUsageCategory category, Double usage) {
83 setAttribute(category.toString(), usage);
87 * Get the load for a given category.
89 public Double getLoad(LoadCategory category) {
    [all...]
  /external/libmicrohttpd/src/testcurl/
gauger.h 20 #define GAUGER(category, counter, value, unit)\
36 __gauger_v[8] = category; \
48 #define GAUGER_ID(category, counter, value, unit, id)\
66 __gauger_v[10] = category;\
81 #define GAUGER_ID(category, counter, value, unit, id) {}
82 #define GAUGER(category, counter, value, unit) {}
  /toolchain/binutils/binutils-2.25/intl/
intl-compat.c 80 dcgettext (domainname, msgid, category)
83 int category;
85 return libintl_dcgettext (domainname, msgid, category);
114 dcngettext (domainname, msgid1, msgid2, n, category)
119 int category;
121 return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
  /tools/loganalysis/src/com/android/loganalysis/util/
LogPatternUtil.java 27 * the message is matched, a category will be returned. This means that a single object can be used
33 * A class used to store pattern, extras, and category.
46 * @param category the category to return if there is a match.
48 public PatternInfo(Pattern pattern, Object extras, String category) {
51 mCategory = category;
61 * @param category the category to return if there is a match.
63 public void addPattern(Pattern pattern, String category) {
64 addPattern(pattern, null, category);
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
chrome_trace_category_filter.py 31 This matches Chrome tracing's default category filter setting, i.e., enable
35 '*' and '' mean default category filter setting. However, if someone adds
36 additional category filters, the behavior becomes different.
42 Now add an additional category filter 'abc' to '*' and '':
65 Providing filter_string=None gives the default category filter, which leaves
84 for category in filter_set:
85 if category == '':
88 if _delay_re.match(category):
89 self._synthetic_delays.add(category)
92 if category[0] == '-'
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
extension_helper.py 107 [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...]
  /packages/apps/Settings/src/com/android/settings/core/instrumentation/
MetricsFeatureProvider.java 45 public void visible(Context context, int source, int category) {
47 writer.visible(context, source, category);
51 public void hidden(Context context, int category) {
53 writer.hidden(context, category);
57 public void actionWithSource(Context context, int source, int category) {
59 writer.actionWithSource(context, source, category);
63 public void action(Context context, int category, Pair<Integer, Object>... taggedData) {
65 writer.action(context, category, taggedData);
69 public void action(Context context, int category, int value) {
71 writer.action(context, category, value)
    [all...]
  /external/icu/icu4c/source/common/
pluralmap.h 27 * category, but rather represents the absense of a plural category.
29 enum Category {
41 * Converts a category name such as "zero", "one", "two", "few", "many"
42 * or "other" to a category enum. Returns NONE for an unrecognized
43 * category name.
45 static Category toCategory(const char *categoryName);
48 * Converts a category name such as "zero", "one", "two", "few", "many"
49 * or "other" to a category enum. Returns NONE for urecongized
50 * category name
    [all...]
  /frameworks/support/v7/preference/tests/src/android/support/v7/preference/tests/
PreferenceParentGroupTest.java 59 PreferenceCategory category = new PreferenceCategory(mContext); local
60 assertNull(category.getParent());
65 screen.addPreference(category);
66 assertEquals(screen, category.getParent());
68 category.addPreference(pref);
69 assertEquals(category, pref.getParent());
71 screen.removePreference(category);
72 assertNull(category.getParent());
74 category.removePreference(pref);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
PreferenceCategoryTest.java 19 private PreferenceCategory category; field in class:PreferenceCategoryTest
24 category = new PreferenceCategory(new Activity());
25 shadow = Robolectric.shadowOf(category);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
DozeTrigger.java 30 @ViewDebug.ExportedProperty(category="recents")
32 @ViewDebug.ExportedProperty(category="recents")
34 @ViewDebug.ExportedProperty(category="recents")
  /packages/apps/DeskClock/src/com/android/deskclock/events/
LogEventTracker.java 34 public void sendEvent(@StringRes int category, @StringRes int action, @StringRes int label) {
36 LOGGER.d("[%s] [%s]", safeGetString(category), safeGetString(action));
38 LOGGER.d("[%s] [%s] [%s]", safeGetString(category), safeGetString(action),
  /system/bt/bta/av/
bta_av_ci.cc 66 void bta_av_ci_setconfig(tBTA_AV_HNDL hndl, uint8_t err_code, uint8_t category,
76 p_buf->category = category;
  /dalvik/dx/src/com/android/dx/ssa/
InterferenceRegisterMapper.java 63 public void addMapping(int oldReg, int newReg, int category) {
64 super.addMapping(oldReg, newReg, category);
68 if (category == 2) {
79 * @param category category of old namespace register
82 public boolean interferes(int oldReg, int newReg, int category) {
90 } else if (category == 1) {
94 || (interferes(oldReg, newReg+1, category-1));
131 * pinned to the specified new-namespace reg + category. Takes into
132 * account the category of the old-namespace registers
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 102 get_filter(PyObject *category, PyObject *text, Py_ssize_t lineno,
147 is_subclass = PyObject_IsSubclass(category, cat);
221 update_registry(PyObject *registry, PyObject *text, PyObject *category,
231 altkey = PyTuple_Pack(3, text, category, zero);
234 altkey = PyTuple_Pack(2, text, category);
244 *category, PyObject *sourceline)
252 name = PyObject_GetAttrString(category, "__name__");
263 /* Print "filename:lineno: category: text\n" */
289 warn_explicit(PyObject *category, PyObject *message,
322 category = (PyObject*)message->ob_type;
608 PyObject *message, *category = NULL; local
627 PyObject *category; local
    [all...]
  /external/chromium-trace/catapult/systrace/systrace/tracing_agents/
ftrace_agent.py 146 Applies the default category (sched) if there are no categories
172 for category in categories:
173 self._category_enable(category)
191 for category in self._categories:
192 self._category_disable(category)
210 def _is_category_available(self, category):
211 if category not in all_categories:
214 req_events = all_categories[category]["req"]
232 for category in self._avail_categories():
233 desc = all_categories[category]["desc"
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UCharacterCategory.java 16 * Enumerated Unicode category types from the UnicodeData.txt file.
35 * Gets the name of the argument category
36 * @param category to retrieve name
37 * @return category name
39 public static String toString(int category)
41 switch (category) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UCharacterCategory.java 15 * Enumerated Unicode category types from the UnicodeData.txt file.
35 * Gets the name of the argument category
36 * @param category to retrieve name
37 * @return category name
40 public static String toString(int category)
42 switch (category) {
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.objects/
system_category.pass.cpp 36 assert(e_cond.category() == std::generic_category());
39 assert(e_cond.category() == std::system_category());

Completed in 1388 milliseconds

1 2 34 5 6 7 8 91011>>