Searched refs:category (Results 1 - 25 of 490) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcommand_store.js18 * describes the command. Please also add a category msg id so that the command
47 if (struct.category) {
48 categorySet[struct.category] = true;
52 for (var category in categorySet) {
53 ret.push(category);
70 * Gets a category given a command.
75 return (cvox.CommandStore.CMD_WHITELIST[command] || {}).category;
80 * Gets all commands for a category.
81 * @param {string} category The category t
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/
H A Dsunspider-analyze-results.js52 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...]
H A Dsunspider-compare-results.js74 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...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dtrace_model_event.js18 function TraceModelEvent(category, title, colorId, start, args) {
19 this.category = category || '';
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Derror_handlers.py31 __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...]
/external/libcxx/test/localization/locales/locale/locale.types/locale.category/
H A DAndroid.mk17 test_makefile := external/libcxx/test/localization/locales/locale/locale.types/locale.category/Android.mk
19 test_name := localization/locales/locale/locale.types/locale.category/category
20 test_src := category.pass.cpp
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
H A DProcessCategory.cs26 public static string ToGroupTitle(this ProcessCategory category) { argument
27 switch (category) {
33 return category.ToString();
/external/chromium_org/third_party/angle/src/third_party/trace_event/
H A Dtrace_event.h58 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
61 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
94 // in for category, name, and arg_names. Thus, the following code will
102 // Notes: The category must always be in a long-lived char* (i.e. static const).
108 // TRACE_EVENT1("category", "name",
111 // TRACE_EVENT1("category", "name",
114 // TRACE_EVENT1("category", "name",
123 // TRACE_EVENT macros first cache a pointer to a category. The categories are
125 // category is protected by the TraceLog::lock_. Multiple threads initializing
127 // multiple calls will return the same pointer to the category
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dtrace_event.h80 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
83 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
116 // in for category, name, and arg_names. Thus, the following code will
124 // Notes: The category must always be in a long-lived char* (i.e. static const).
130 // TRACE_EVENT1("category", "name",
133 // TRACE_EVENT1("category", "name",
136 // TRACE_EVENT1("category", "name",
156 // scope, with 0, 1 or 2 associated arguments. If the category is not
158 // - category and name strings must have application lifetime (statics or
160 #define TRACE_EVENT0(category, nam
[all...]
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
H A Ddefault.pass.cpp23 assert(ec.category() == std::system_category());
H A Dint_error_category.pass.cpp24 assert(ec.category() == std::system_category());
29 assert(ec.category() == std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
H A Dcategory.pass.cpp14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
H A Ddefault.pass.cpp23 assert(ec.category() == std::generic_category());
H A Dint_error_category.pass.cpp24 assert(ec.category() == std::system_category());
29 assert(ec.category() == std::generic_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
H A Dcategory.pass.cpp14 // const error_category& category() const;
22 assert(ec.category() == std::generic_category());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineEventOverview.js45 for (var category in categories) {
46 this._fillStyles[category] = WebInspector.TimelineUIUtils.createFillStyleForCategory(this._context, 0, WebInspector.TimelineEventOverview._stripGradientHeight, categories[category]);
47 categories[category].addEventListener(WebInspector.TimelineCategory.Events.VisibilityChanged, this._onCategoryVisibilityChanged, this);
66 for (var category in categories)
67 categories[category].removeEventListener(WebInspector.TimelineCategory.Events.VisibilityChanged, this._onCategoryVisibilityChanged, this);
95 var category = this._uiUtils.categoryForRecord(record);
96 if (category.overviewStripGroupIndex < 0)
98 var bar = lastBarByGroup[category.overviewStripGroupIndex];
101 // If record fits entirely into previous bar just absorb it ignoring the category matc
[all...]
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dflow_event.py12 def __init__(self, category, event_id, name, start, args=None):
14 category, name, start, duration=0, args=args)
H A Dsample.py17 def __init__(self, parent_thread, category, name, timestamp, args=None):
19 category, name, timestamp, 0, args=args)
/external/e2fsprogs/intl/
H A Ddcgettext.c47 DCGETTEXT (const char *domainname, const char *msgid, int category) argument
49 return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category);
H A Ddcngettext.c49 int category)
51 return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category);
47 DCNGETTEXT(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) argument
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
H A Dclear.pass.cpp25 assert(ec.category() == std::generic_category());
28 assert(ec.category() == std::system_category());
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.modifiers/
H A Dclear.pass.cpp25 assert(ec.category() == std::system_category());
28 assert(ec.category() == std::generic_category());
/external/libcxx/test/localization/locale.categories/category.time/locale.time.put/
H A DAndroid.mk17 test_makefile := external/libcxx/test/localization/locale.categories/category.time/locale.time.put/Android.mk
19 test_name := localization/locale.categories/category.time/locale.time.put/types
23 test_name := localization/locale.categories/category.time/locale.time.put/ctor
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTraceEvent.h79 // 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",
144 // TRACE_EVENT macros first cache a pointer to a category. The categories are
146 // category is protected by the TraceLog::lock_. Multiple threads initializing
148 // multiple calls will return the same pointer to the category
[all...]
/external/lldb/source/DataFormatters/
H A DDataVisualization.cpp160 DataVisualization::Categories::GetCategory (const ConstString &category, lldb::TypeCategoryImplSP &entry, argument
163 entry = GetFormatManager().GetCategory(category, allow_create);
168 DataVisualization::Categories::Add (const ConstString &category) argument
170 GetFormatManager().GetCategory(category);
174 DataVisualization::Categories::Delete (const ConstString &category) argument
176 GetFormatManager().DisableCategory(category);
177 return GetFormatManager().DeleteCategory(category);
187 DataVisualization::Categories::Clear (const ConstString &category) argument
189 GetFormatManager().GetCategory(category)->Clear(eFormatCategoryItemSummary | eFormatCategoryItemRegexSummary);
193 DataVisualization::Categories::Enable (const ConstString& category, argument
202 Disable(const ConstString& category) argument
209 Enable(const lldb::TypeCategoryImplSP& category, TypeCategoryMap::Position pos) argument
221 Disable(const lldb::TypeCategoryImplSP& category) argument
[all...]

Completed in 3332 milliseconds

1234567891011>>