HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 1 - 25 of 609) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
SwipableView.java 17 package com.android.gallery3d.filtershow.category;
  /cts/tests/tests/opengl/src/android/opengl/cts/
GL2JniLibOne.java 24 public static native void init(int category, int subcategory, int width, int height);
26 public static native float[] draw(int category, int subcategory, float[] color);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/
sunspider-compare-results.js 74 var category = categories[i];
75 itemTotals1[category] = [];
76 categoryTotals1[category] = 0;
77 testTotalsByCategory1[category] = {};
78 categoryMeans1[category] = 0;
79 testMeansByCategory1[category] = {};
80 categoryStdDevs1[category] = 0;
81 testStdDevsByCategory1[category] = {};
82 categoryStdErrs1[category] = 0;
83 testStdErrsByCategory1[category] = {}
    [all...]
sunspider-analyze-results.js 52 var category = categories[i];
53 itemTotals[category] = [];
54 categoryTotals[category] = 0;
55 testTotalsByCategory[category] = {};
56 categoryMeans[category] = 0;
57 testMeansByCategory[category] = {};
58 categoryStdDevs[category] = 0;
59 testStdDevsByCategory[category] = {};
60 categoryStdErrs[category] = 0;
61 testStdErrsByCategory[category] = {}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
TraceEvent.h 79 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
82 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
115 // in for category, name, and arg_names. Thus, the following code will
123 // Notes: The category must always be in a long-lived char* (i.e. static const).
129 // TRACE_EVENT1("category", "name",
132 // TRACE_EVENT1("category", "name",
135 // TRACE_EVENT1("category", "name",
140 // A thread safe singleton and mutex are used for thread safety. Category
144 // TRACE_EVENT macros first cache a pointer to a category. The categories are
146 // category is protected by the TraceLog::lock_. Multiple threads initializin
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
error_handlers.py 31 __call__(self, line_number, category, confidence, message):
41 category: The name of the category of the error, for example
86 # errors per category passed to this instance.
108 def _add_reportable_error(self, category):
109 """Increment the error count and return the new category total."""
112 # Increment the category total.
113 if not category in self._category_totals:
114 self._category_totals[category] = 1
116 self._category_totals[category] +=
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
default.pass.cpp 23 assert(ec.category() == std::system_category());
int_error_category.pass.cpp 24 assert(ec.category() == std::system_category());
29 assert(ec.category() == std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
category.pass.cpp 14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
default.pass.cpp 23 assert(ec.category() == std::generic_category());
int_error_category.pass.cpp 24 assert(ec.category() == std::system_category());
29 assert(ec.category() == std::generic_category());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
category.pass.cpp 14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
sample.py 16 def __init__(self, parent_thread, category, name, timestamp, args=None):
18 category, name, timestamp, 0, args=args)
event.py 7 def __init__(self, category, name, start, duration, args=None):
8 self.category = category
  /external/e2fsprogs/intl/
dcgettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
47 DCGETTEXT (const char *domainname, const char *msgid, int category)
49 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
dcngettext.c 44 /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
49 int category)
51 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
clear.pass.cpp 25 assert(ec.category() == std::generic_category());
28 assert(ec.category() == std::system_category());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
clear.pass.cpp 25 assert(ec.category() == std::system_category());
28 assert(ec.category() == std::generic_category());
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
warnings.h 17 #define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
warnings.h 17 #define PyErr_Warn(category, msg) PyErr_WarnEx(category, msg, 1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
warnings.py 14 def warnpy3k(message, category=None, stacklevel=1):
20 if category is None:
21 category = DeprecationWarning
22 warn(message, category, stacklevel+1)
24 def _show_warning(message, category, filename, lineno, file=None, line=None):
29 file.write(formatwarning(message, category, filename, lineno, line))
36 def formatwarning(message, category, filename, lineno, line=None):
38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message)
45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
52 'category' -- a class that the warning must be a subclass o
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
warnings.py 14 def warnpy3k(message, category=None, stacklevel=1):
20 if category is None:
21 category = DeprecationWarning
22 warn(message, category, stacklevel+1)
24 def _show_warning(message, category, filename, lineno, file=None, line=None):
29 file.write(formatwarning(message, category, filename, lineno, line))
36 def formatwarning(message, category, filename, lineno, line=None):
38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message)
45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
52 'category' -- a class that the warning must be a subclass o
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_l10n.h 24 string16 GetLocalizedStringFromEventCategory(const EventCategory category);
26 const EventCategory category);
33 string16 GetLocalizedStringFromMetricCategory(const MetricCategory category);
35 const MetricCategory category);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProviders.java 11 package org.eclipse.wb.internal.core.model.property.category;
48 * Returns category forced by user, may be <code>null</code>.
60 * Returns first not <code>null</code> category returned by provider.
66 PropertyCategory category = provider.getCategory(property);
67 if (category != null) {
68 return category;
71 throw new IllegalStateException("Can not provide category for " + property.getTitle());
  /ndk/sources/android/support/src/locale/
setlocale.c 31 char *setlocale(int category, const char *locale) {

Completed in 1435 milliseconds

1 2 3 4 5 6 7 8 91011>>