Home
last modified time | relevance | path

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

123456

/external/webkit/SunSpider/resources/
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 …]
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 …]
/external/webkit/WebKitTools/Scripts/webkitpy/style/
Derror_handlers.py88 def _add_reportable_error(self, category): argument
93 if not category in self._category_totals:
94 self._category_totals[category] = 1
96 self._category_totals[category] += 1
98 return self._category_totals[category]
100 def _max_reports(self, category): argument
102 if not category in self._options.max_reports_per_category:
104 return self._options.max_reports_per_category[category]
106 def __call__(self, line_number, category, confidence, message): argument
112 if not self._options.is_reportable(category,
[all …]
Dfilter.py47 for category in all_categories:
48 if category.startswith(rule[1:]):
94 def should_check(self, category): argument
108 if category in self._should_check_category:
109 return self._should_check_category[category]
113 if not category.startswith(rule[1:]):
116 self._should_check_category[category] = should_check # Update cache.
242 def should_check(self, category, path): argument
273 return self._filter_from_path(path).should_check(category)
Derror_handlers_unittest.py177 category = "whitespace/tab"
182 self.assertTrue(options.is_reportable(category,
190 handle_error(1, category, confidence, message)
194 handle_error(2, category, confidence, message)
/external/webkit/WebCore/inspector/front-end/
DTimelineOverviewPane.js50 var category = this._categories[categoryName];
51 …hild(new WebInspector.TimelineCategoryTreeElement(category, this._onCheckboxClicked.bind(this, cat…
61 for (var category in this._categories) {
62 … var categoryGraph = new WebInspector.TimelineCategoryGraph(this._categories[category], i++ % 2);
63 this._categoryGraphs[category] = categoryGraph;
97 _onCheckboxClicked: function (category, event) { argument
99 category.hidden = false;
101 category.hidden = true;
102 this._categoryGraphs[category.name].dimmed = !event.target.checked;
110 for (var category in this._categories) {
[all …]
DAbstractTimelinePanel.js96 function createFilterElement(category) argument
98 if (category === "all")
100 else if (this.categories[category])
101 var label = this.categories[category].title;
104 categoryElement.category = category;
105 categoryElement.addStyleClass(category);
120 for (var category in this.categories)
121 createFilterElement.call(this, category);
124 showCategory: function(category) argument
126 var filterClass = "filter-" + category.toLowerCase();
[all …]
DTimelinePanel.js150 this._lastRecord.category == formattedRecord.category &&
174 …s[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: this.categories.… property
175 …dStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: this.categories.… property
176 …calculateStyles] = { title: WebInspector.UIString("Recalculate Style"), category: this.categories.… property
177 …ordStyles[recordTypes.Paint] = { title: WebInspector.UIString("Paint"), category: this.categories.… property
178 …tyles[recordTypes.ParseHTML] = { title: WebInspector.UIString("Parse"), category: this.categories.… property
179 …dTypes.TimerInstall] = { title: WebInspector.UIString("Install Timer"), category: this.categories.… property
180 …ordTypes.TimerRemove] = { title: WebInspector.UIString("Remove Timer"), category: this.categories.… property
181 …recordTypes.TimerFire] = { title: WebInspector.UIString("Timer Fired"), category: this.categories.… property
182 …tateChange] = { title: WebInspector.UIString("XHR Ready State Change"), category: this.categories.… property
[all …]
DResource.js331 get category() getter in WebInspector.Resource
336 set category(x) setter in WebInspector.Resource
383 this.category = WebInspector.resourceCategories.documents;
386 this.category = WebInspector.resourceCategories.stylesheets;
389 this.category = WebInspector.resourceCategories.scripts;
392 this.category = WebInspector.resourceCategories.images;
395 this.category = WebInspector.resourceCategories.fonts;
398 this.category = WebInspector.resourceCategories.xhr;
402 this.category = WebInspector.resourceCategories.other;
DResourcesPanel.js650 switch (resource.category) {
734 if (!(resource.category.name in resourcesByCategory))
735 resourcesByCategory[resource.category.name] = [];
736 resourcesByCategory[resource.category.name].push(resource);
742 for (var category in resourcesByCategory) {
743 resourcesByCategory[category].sort(WebInspector.Resource.CompareByTime);
744 categoryValues[category] = 0;
748 var categoryResources = resourcesByCategory[category];
770 categoryValues[category] += segment.end - segment.start;
777 categoryValues[category] += segment.end - segment.start;
[all …]
Dinspector.css2775 .resources-category-documents, .resources-category-stylesheets, .resources-category-images,
2776 .resources-category-scripts, .resources-category-xhr, .resources-category-fonts, .resources-categor…
2780 .filter-all .resources-category-documents, .filter-documents .resources-category-documents,
2781 .filter-all .resources-category-stylesheets, .filter-stylesheets .resources-category-stylesheets,
2782 .filter-all .resources-category-images, .filter-images .resources-category-images,
2783 .filter-all .resources-category-scripts, .filter-scripts .resources-category-scripts,
2784 .filter-all .resources-category-xhr, .filter-xhr .resources-category-xhr,
2785 .filter-all .resources-category-fonts, .filter-fonts .resources-category-fonts,
2786 .filter-all .resources-category-other, .filter-other .resources-category-other,
2813 .resources-category-documents .resources-graph-bar {
[all …]
/external/astl/tests/
Dtest_iterator.cpp74 Category category(_Category) { in category() function
80 category<std::input_iterator_tag>(std::input_iterator_tag) { in category() function
86 category<std::forward_iterator_tag>(std::forward_iterator_tag) { in category() function
92 category<std::bidirectional_iterator_tag>(std::bidirectional_iterator_tag) { in category() function
98 category<std::random_access_iterator_tag>(std::random_access_iterator_tag) { in category() function
105 EXPECT_TRUE(category(android::iterator_category(Input())) == INPUT); in testCategory()
106 EXPECT_TRUE(category(android::iterator_category(Forward())) == FORWARD); in testCategory()
107 EXPECT_TRUE(category(android::iterator_category(Bidirectional())) == BIDIRECTIONAL); in testCategory()
108 EXPECT_TRUE(category(android::iterator_category(Random())) == RANDOM); in testCategory()
/external/e2fsprogs/intl/
Ddcigettext.c227 int category; member
273 result = s1->category - s2->category; in transcmp()
312 static const char *guess_category_value (int category,
317 # define category_to_name(category) _nl_category_names[category] argument
319 static const char *category_to_name (int category) internal_function;
428 int plural, unsigned long int n, int category) in DCIGETTEXT() argument
454 if (category < 0 || category >= __LC_LAST || category == LC_ALL) in DCIGETTEXT()
472 if (category == LC_MESSAGES_COMPAT) in DCIGETTEXT()
473 category = LC_MESSAGES; in DCIGETTEXT()
485 search->category = category; in DCIGETTEXT()
[all …]
Dintl-compat.c77 dcgettext (const char *domainname, const char *msgid, int category) in dcgettext() argument
79 return libintl_dcgettext (domainname, msgid, category); in dcgettext()
104 int category) in dcngettext() argument
106 return libintl_dcngettext (domainname, msgid1, msgid2, n, category); in dcngettext()
/external/webkit/SunSpider/
Dmake-hosted55 my $category = $_;
56 $category =~ s/-.*//;
57 if (!$uniqueCategories{$category}) {
58 push @categories, $category;
59 $uniqueCategories{$category} = $category;
Dsunspider138 my $category = $_;
139 $category =~ s/-.*//;
140 if (!$uniqueCategories{$category}) {
141 push @categories, $category;
142 $uniqueCategories{$category} = $category;
/external/bison/lib/
Dhard-locale.c41 hard_locale (int category) in hard_locale() argument
44 char const *p = setlocale (category, NULL); in hard_locale()
61 if (((p = setlocale (category, "C")) in hard_locale()
63 || ((p = setlocale (category, "POSIX")) in hard_locale()
68 setlocale (category, locale); in hard_locale()
/external/apache-http/src/org/apache/http/impl/
DEnglishReasonPhraseCatalog.java88 final int category = status / 100; in getReason() local
89 final int subcode = status - 100*category; in getReason()
92 if (REASON_PHRASES[category].length > subcode) in getReason()
93 reason = REASON_PHRASES[category][subcode]; in getReason()
119 final int category = status / 100; in setReason() local
120 final int subcode = status - 100*category; in setReason()
121 REASON_PHRASES[category][subcode] = reason; in setReason()
/external/icu4c/common/
Drbbi.cpp928 int16_t category = 0; in handleNext() local
969 category = 2; in handleNext()
995 category = 1; in handleNext()
1009 UTRIE_GET16(&fData->fTrie, c, category); in handleNext()
1016 if ((category & 0x4000) != 0) { in handleNext()
1019 category &= ~0x4000; in handleNext()
1031 RBBIDebugPrintf("%3d %3d\n", state, category); in handleNext()
1037 state = row->fNextState[category]; in handleNext()
1140 int16_t category = 0; in handlePrevious() local
1177 category = 3; in handlePrevious()
[all …]
/external/chromium/third_party/icu/source/common/
Drbbi.cpp926 int16_t category = 0; in handleNext() local
967 category = 2; in handleNext()
993 category = 1; in handleNext()
1007 UTRIE_GET16(&fData->fTrie, c, category); in handleNext()
1014 if ((category & 0x4000) != 0) { in handleNext()
1017 category &= ~0x4000; in handleNext()
1029 RBBIDebugPrintf("%3d %3d\n", state, category); in handleNext()
1035 state = row->fNextState[category]; in handleNext()
1138 int16_t category = 0; in handlePrevious() local
1175 category = 3; in handlePrevious()
[all …]
/external/stlport/stlport/stl/
D_locale.h107 typedef int category; typedef
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 …]
/external/stlport/stlport/using/
Dlocale28 // _lib.category.ctype_ and _lib.facet.ctype.special_, ctype:
36 // _lib.category.numeric_ and _lib.facet.numpunct_, numeric:
42 // _lib.category.collate_, collation:
46 // _lib.category.time_, date and time:
53 // _lib.category.monetary_, money:
/external/stlport/src/
Dlocale.cpp193 locale::category c) { in _Stl_loc_combine_names_aux()
210 locale::category c) { in _Stl_loc_combine_names()
224 locale::category c) { in _Stl_loc_combine_names()
246 locale::locale(const locale& L, const char* name, locale::category c) in locale()
295 locale::locale(const locale& L1, const locale& L2, category c) in locale()
434 const locale::category locale::none;
435 const locale::category locale::collate;
436 const locale::category locale::ctype;
437 const locale::category locale::monetary;
438 const locale::category locale::numeric;
[all …]
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
Dtext_unittest.py44 def error_for_test(line_number, category, confidence, message): argument
55 def error_for_test(line_number, category, confidence, message): argument
58 self.assertEquals('whitespace/tab', category)
/external/chromium/third_party/icu/patches/
Dlocdet.patch15 +static const char *uprv_getPOSIXIDForCategory(int category)
20 + if (category == LC_MESSAGES || category == LC_CTYPE) {
29 + posixID = setlocale(category, NULL);
38 + posixID = getenv(category == LC_MESSAGES ? "LC_MESSAGES" : "LC_CTYPE");
171 ++static const char *uprv_getPOSIXIDForCategory(int category)
176 ++ if (category == LC_MESSAGES || category == LC_CTYPE) {
185 ++ posixID = setlocale(category, NULL);
194 ++ posixID = getenv(category == LC_MESSAGES ? "LC_MESSAGES" : "LC_CTYPE");

123456