HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 251 - 275 of 941) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
locale_classes.h 66 /// Definition of locale::category.
67 typedef int category; typedef in class:locale
90 * @brief Category values.
92 * The standard category values are none, ctype, numeric, collate, time,
94 * intersection. The category all is the union of these values.
98 static const category none = 0;
99 static const category ctype = 1L << 0;
100 static const category numeric = 1L << 1;
101 static const category collate = 1L << 2;
102 static const category time = 1L << 3
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
locale_classes.h 66 /// Definition of locale::category.
67 typedef int category; typedef in class:locale
90 * @brief Category values.
92 * The standard category values are none, ctype, numeric, collate, time,
94 * intersection. The category all is the union of these values.
98 static const category none = 0;
99 static const category ctype = 1L << 0;
100 static const category numeric = 1L << 1;
101 static const category collate = 1L << 2;
102 static const category time = 1L << 3
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineUIUtils.js 227 label.className = "timeline-aggregated-category timeline-" + index;
260 // In case of self time, first add self, then children of the same category.
265 rowElement.createChild("div", "timeline-aggregated-category timeline-" + selfCategory.name);
268 // Children of the same category.
274 rowElement.createChild("div", "timeline-aggregated-category timeline-" + selfCategory.name);
281 var category = WebInspector.TimelineUIUtils.categories()[categoryName];
282 if (category === selfCategory)
284 var value = aggregatedStats[category.name];
287 pieChart.addSlice(value, category.fillColorStop0);
289 rowElement.createChild("div", "timeline-aggregated-category timeline-" + category.name)
    [all...]
TimelineUIUtilsImpl.js 90 return WebInspector.TimelineUIUtilsImpl.recordStyle(record).category;
189 * @return {!Object.<string, !{title: string, category: !WebInspector.TimelineCategory}>}
200 recordStyles[recordTypes.Root] = { title: "#root", category: categories["loading"] };
201 recordStyles[recordTypes.Program] = { title: WebInspector.UIString("Other"), category: categories["other"] };
202 recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: categories["scripting"] };
203 recordStyles[recordTypes.BeginFrame] = { title: WebInspector.UIString("Frame Start"), category: categories["rendering"] };
204 recordStyles[recordTypes.ScheduleStyleRecalculation] = { title: WebInspector.UIString("Schedule Style Recalculation"), category: categories["rendering"] };
205 recordStyles[recordTypes.RecalculateStyles] = { title: WebInspector.UIString("Recalculate Style"), category: categories["rendering"] };
206 recordStyles[recordTypes.InvalidateLayout] = { title: WebInspector.UIString("Invalidate Layout"), category: categories["rendering"] };
207 recordStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: categories["rendering"] }
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/timeline/
process.py 59 def GetCounter(self, category, name):
60 counter_id = category + '.' + name
66 def GetOrCreateCounter(self, category, name):
68 return self.GetCounter(category, name)
70 ctr = tracing_counter.Counter(self, category, name)
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 296 // Compute max category for remaining unmapped registers.
300 int category = ssaSpec.getCategory(); local
302 && category > maxCategory) {
303 maxCategory = category;
325 * @param maxAllowedCategory {@code 1..2;} maximum category
345 // the widest category used, but <shrug>
357 * @param maxAllowedCategory {@code 1..2;} the maximum category
377 * @param category {@code > 0;} width to reserve
379 private void markReserved(int ropReg, int category) {
380 reservedRopRegs.set(ropReg, ropReg + category, true)
567 int category = checkRegSpec.getCategory(); local
634 int category = ssaSpec.getCategory(); local
673 int category = ssaSpec.getCategory(); local
784 int category = ssaSpec.getCategory(); local
785 mapper.addMapping(ssaSpec.getReg(), ropReg, category); local
808 int category = source.getCategory(); local
865 int category = sources.get(i).getCategory(); local
1042 int category = categoriesForIndex[i]; local
1132 int category = result.getCategory(); local
    [all...]
  /external/chromium_org/tools/sheriffing/
functions.js 68 * Organizes all of the bots by category, then alphabetically within their
72 // Bucket all of the bots according to their category.
77 var category = botInfo[botName].category;
79 if (!bucketedNames[category]) bucketedNames[category] = [];
80 bucketedNames[category].push(botName);
89 var category = allCategories[i];
90 var bucketBots = bucketedNames[category];
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditLauncherView.js 43 this._categoryIdPrefix = "audit-category-item-";
102 * @param {!WebInspector.AuditCategory} category
104 addCategory: function(category)
110 var categoryElement = this._createCategoryElement(category.displayName, category.id);
111 category._checkboxElement = categoryElement.firstChild;
112 if (this._selectAllCheckboxElement.checked || selectedCategories[category.displayName]) {
113 category._checkboxElement.checked = true;
128 var insertBefore = insertionIndexForObjectInListSortedByFunction(category, this._sortedCategories, compareCategories);
130 this._sortedCategories.splice(insertBefore, 0, category);
    [all...]
  /external/stlport/stlport/stl/
_locale.h 109 typedef int category; typedef in class:locale
110 _STLP_STATIC_CONSTANT(category, none = 0x000);
111 _STLP_STATIC_CONSTANT(category, collate = 0x010);
112 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
113 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
114 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
115 _STLP_STATIC_CONSTANT(category, time = 0x200);
116 _STLP_STATIC_CONSTANT(category, messages = 0x400);
117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
123 locale(const locale&, const char*, category);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_locale.h 109 typedef int category; typedef in class:locale
110 _STLP_STATIC_CONSTANT(category, none = 0x000);
111 _STLP_STATIC_CONSTANT(category, collate = 0x010);
112 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
113 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
114 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
115 _STLP_STATIC_CONSTANT(category, time = 0x200);
116 _STLP_STATIC_CONSTANT(category, messages = 0x400);
117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
123 locale(const locale&, const char*, category);
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_locale.h 107 typedef int category; typedef in class:locale
108 _STLP_STATIC_CONSTANT(category, none = 0x000);
109 _STLP_STATIC_CONSTANT(category, collate = 0x010);
110 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
111 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
112 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
113 _STLP_STATIC_CONSTANT(category, time = 0x200);
114 _STLP_STATIC_CONSTANT(category, messages = 0x400);
115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
121 locale(const locale&, const char*, category);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_locale.h 107 typedef int category; typedef in class:locale
108 _STLP_STATIC_CONSTANT(category, none = 0x000);
109 _STLP_STATIC_CONSTANT(category, collate = 0x010);
110 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
111 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
112 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
113 _STLP_STATIC_CONSTANT(category, time = 0x200);
114 _STLP_STATIC_CONSTANT(category, messages = 0x400);
115 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
121 locale(const locale&, const char*, category);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_locale.h 109 typedef int category; typedef in class:locale
110 _STLP_STATIC_CONSTANT(category, none = 0x000);
111 _STLP_STATIC_CONSTANT(category, collate = 0x010);
112 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
113 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
114 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
115 _STLP_STATIC_CONSTANT(category, time = 0x200);
116 _STLP_STATIC_CONSTANT(category, messages = 0x400);
117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
123 locale(const locale&, const char*, category);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_locale.h 109 typedef int category; typedef in class:locale
110 _STLP_STATIC_CONSTANT(category, none = 0x000);
111 _STLP_STATIC_CONSTANT(category, collate = 0x010);
112 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
113 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
114 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
115 _STLP_STATIC_CONSTANT(category, time = 0x200);
116 _STLP_STATIC_CONSTANT(category, messages = 0x400);
117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
123 locale(const locale&, const char*, category);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_locale.h 109 typedef int category; typedef in class:locale
110 _STLP_STATIC_CONSTANT(category, none = 0x000);
111 _STLP_STATIC_CONSTANT(category, collate = 0x010);
112 _STLP_STATIC_CONSTANT(category, ctype = 0x020);
113 _STLP_STATIC_CONSTANT(category, monetary = 0x040);
114 _STLP_STATIC_CONSTANT(category, numeric = 0x100);
115 _STLP_STATIC_CONSTANT(category, time = 0x200);
116 _STLP_STATIC_CONSTANT(category, messages = 0x400);
117 _STLP_STATIC_CONSTANT(category, all = collate | ctype | monetary | numeric | time | messages);
123 locale(const locale&, const char*, category);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 248 // Compute max category for remaining unmapped registers.
252 int category = ssaSpec.getCategory(); local
254 && category > maxCategory) {
255 maxCategory = category;
277 * @param maxAllowedCategory {@code 1..2;} maximum category
297 // the widest category used, but <shrug>
309 * @param maxAllowedCategory {@code 1..2;} the maximum category
329 * @param category {@code > 0;} width to reserve
331 private void markReserved(int ropReg, int category) {
332 reservedRopRegs.set(ropReg, ropReg + category, true)
488 int category = checkRegSpec.getCategory(); local
555 int category = ssaSpec.getCategory(); local
594 int category = ssaSpec.getCategory(); local
705 int category = ssaSpec.getCategory(); local
706 mapper.addMapping(ssaSpec.getReg(), ropReg, category); local
729 int category = source.getCategory(); local
786 int category = sources.get(i).getCategory(); local
929 int category = categoriesForIndex[i]; local
1019 int category = result.getCategory(); local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
nav_description.js 28 category: (undefined|string)}} kwargs The arguments for this
41 * category Optional category (for speech queueing behavior).
52 this.category = kwargs.category ? kwargs.category : null;
76 (this.category ? '" category="' + this.category + '")' : '') +
144 if (this.category) {
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
api_list_data_source.py 31 APIListDataSource, category=self._platform_bundle.GetIdentity())
70 category = self._platform_bundle.GetAPICategorizer(
72 if category == 'chrome':
79 platform_dict[category][channel].append(api)
81 elif category == 'experimental':
84 elif category == 'private':
object_store_creator.py 49 category=None,
62 for component in (category, app_version):
69 ('category', category),
  /packages/apps/Settings/src/com/android/settings/nfc/
PaymentDefaultDialog.java 49 String category = intent.getStringExtra(CardEmulation.EXTRA_CATEGORY); local
52 if (!buildDialog(component, category)) {
70 private boolean buildDialog(ComponentName component, String category) {
71 if (component == null || category == null) {
72 Log.e(TAG, "Component or category are null");
76 if (!CardEmulation.CATEGORY_PAYMENT.equals(category)) {
77 Log.e(TAG, "Don't support defaults for category " + category);
  /external/fio/engines/
cpu.c 24 .category = FIO_OPT_C_GENERAL,
36 .category = FIO_OPT_C_GENERAL,
46 .category = FIO_OPT_C_GENERAL,
  /external/smack/src/org/jivesoftware/smackx/provider/
DiscoverInfoProvider.java 41 String category = ""; local
52 category = parser.getAttributeValue("", "category");
69 identity = new DiscoverInfo.Identity(category, name, type);
  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20NativeActivityOne.java 88 public OpenGLES20View(Context context, int category, int testCase, CountDownLatch latch) {
91 mRenderer = new GL2Renderer(category, testCase, latch);
114 public GL2Renderer(int category, int testcase, CountDownLatch latch) {
115 this.mCategory = category;
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
QueueHelper.java 40 // extract the category and unique music ID from the media ID:
41 String[] category = MediaIDHelper.extractBrowseCategoryFromMediaID(mediaId); local
43 // This sample only supports genre category.
44 if (!category[0].equals(MEDIA_ID_MUSICS_BY_GENRE) || category.length != 2) {
49 String categoryValue = category[1];
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
QueueHelper.java 40 // extract the category and unique music ID from the media ID:
41 String[] category = MediaIDHelper.extractBrowseCategoryFromMediaID(mediaId); local
43 // This sample only supports genre category.
44 if (!category[0].equals(MEDIA_ID_MUSICS_BY_GENRE) || category.length != 2) {
49 String categoryValue = category[1];

Completed in 2067 milliseconds

<<11121314151617181920>>