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

123456

/external/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/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...]
H A Dfilter.py32 all_categories: A list of all available category names, for example--
38 the beginning of some category name in the list
47 for category in all_categories:
48 if category.startswith(rule[1:]):
53 "of any category name." % rule)
61 """Create a category filter.
79 self._should_check_category = {} # Cached dictionary of category to True/False
94 def should_check(self, category):
95 """Return whether the category should be checked.
97 The rules for determining whether a category shoul
[all...]
/external/bison/lib/
H A Dhard-locale.c41 hard_locale (int category) argument
44 char const *p = setlocale (category, NULL);
61 if (((p = setlocale (category, "C"))
63 || ((p = setlocale (category, "POSIX"))
68 setlocale (category, locale);
/external/astl/tests/
H A Dtest_iterator.cpp74 Category category(_Category) { function in namespace:android
80 category<std::input_iterator_tag>(std::input_iterator_tag) { function in namespace:android
86 category<std::forward_iterator_tag>(std::forward_iterator_tag) { function in namespace:android
92 category<std::bidirectional_iterator_tag>(std::bidirectional_iterator_tag) { function in namespace:android
98 category<std::random_access_iterator_tag>(std::random_access_iterator_tag) { function in namespace:android
102 // Check if the custom method to get the category works as expected.
105 EXPECT_TRUE(category(android::iterator_category(Input())) == INPUT);
106 EXPECT_TRUE(category(android::iterator_category(Forward())) == FORWARD);
107 EXPECT_TRUE(category(android::iterator_category(Bidirectional())) == BIDIRECTIONAL);
108 EXPECT_TRUE(category(androi
[all...]
/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
H A Dintl-compat.c77 dcgettext (const char *domainname, const char *msgid, int category) argument
79 return libintl_dcgettext (domainname, msgid, category);
104 int category)
106 return libintl_dcngettext (domainname, msgid1, msgid2, n, category);
102 dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) argument
/external/webkit/Source/WebCore/inspector/front-end/
H A DExtensionAuditCategory.js61 WebInspector.ExtensionAuditCategoryResults = function(category, callback)
63 this._category = category;
64 this._pendingRules = category.ruleCount;
67 this.id = category.id + "-" + ++WebInspector.ExtensionAuditCategoryResults._lastId;
68 WebInspector.extensionServer.startAuditRun(category, this);
H A DAuditLauncherView.js35 this._categoryIdPrefix = "audit-category-item-";
85 addCategory: function(category)
90 var categoryElement = this._createCategoryElement(category.displayName, category.id);
91 category._checkboxElement = categoryElement.firstChild;
93 category._checkboxElement.checked = true;
103 var insertBefore = insertionIndexForObjectInListSortedByFunction(category, this._sortedCategories, compareCategories);
105 this._sortedCategories.splice(insertBefore, 0, category);
122 for (var category = 0; category < thi
[all...]
H A DTimelineOverviewPane.js38 var category = this._categories[categoryName];
39 this.statusBarFilters.appendChild(this._createTimelineCategoryStatusBarCheckbox(category, this._onCheckboxClicked.bind(this, category)));
55 for (var category in this._categories) {
56 var categoryGraph = new WebInspector.TimelineCategoryGraph(this._categories[category], i++ % 2);
57 this._categoryGraphs[category] = categoryGraph;
104 _onCheckboxClicked: function (category, event) {
106 category.hidden = false;
108 category.hidden = true;
109 this._categoryGraphs[category
[all...]
/external/webkit/PerformanceTests/SunSpider/
H A Dmake-hosted55 my $category = $_;
56 $category =~ s/-.*//;
57 if (!$uniqueCategories{$category}) {
58 push @categories, $category;
59 $uniqueCategories{$category} = $category;
/external/webkit/Tools/Scripts/webkitpy/style/checkers/
H A Dpython.py50 category = "pep8/" + pep8_code
52 self._handle_style_error(line_number, category, 5, pep8_message)
H A Dxml_unittest.py36 def handle_style_error(line_number, category, confidence, message):
37 self.fail('Unexpected error: %d %s %d %s' % (line_number, category, confidence, message))
42 def handle_style_error(line_number, category, confidence, message):
45 self.assertEquals(expected_category, category)
H A Dpython_unittest.py49 def _mock_handle_style_error(line_number, category, confidence,
51 error = (line_number, category, confidence, message)
H A Dchangelog_unittest.py36 def handle_style_error(line_number, category, confidence, message):
37 self.fail('Unexpected error: %d %s %d %s for\n%s' % (line_number, category, confidence, message, changelog_data))
45 def handle_style_error(line_number, category, confidence, message):
48 self.assertEquals(expected_category, category)
H A Dcommon_unittest.py48 def _mock_style_error_handler(self, line_number, category, confidence,
51 error = (line_number, category, confidence, message)
105 def style_error_handler(line_number, category, confidence, message):
106 self.assertEqual(category, 'whitespace/tab')
H A Dtext_unittest.py44 def error_for_test(line_number, category, confidence, message):
55 def error_for_test(line_number, category, confidence, message):
58 self.assertEquals('whitespace/tab', category)
/external/apache-http/src/org/apache/http/impl/
H A DEnglishReasonPhraseCatalog.java85 ("Unknown category for status code " + status + ".");
88 final int category = status / 100;
89 final int subcode = status - 100*category;
92 if (REASON_PHRASES[category].length > subcode)
93 reason = REASON_PHRASES[category][subcode];
119 final int category = status / 100;
120 final int subcode = status - 100*category;
121 REASON_PHRASES[category][subcode] = reason;
/external/llvm/lib/Support/
H A DAPFloat.cpp610 category = rhs.category;
614 if (category == fcNormal || category == fcNaN)
621 assert(category == fcNormal || category == fcNaN);
633 category = fcNaN;
704 category != rhs.category ||
710 if (category
[all...]
/external/harfbuzz/tests/linebreaking/
H A Dharfbuzz-qt.cpp41 void HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
43 *category = (HB_CharCategory)QChar::category(ch);
49 return (HB_CharCategory)QChar::category(ch);
/external/harfbuzz/contrib/
H A Dharfbuzz-unicode-tables.c6 #include "tables/category-properties.h"
70 return ((const struct category_property *) vprop)->category;
75 HB_CharCategory *category,
77 *category = code_point_to_category(ch);
74 HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
/external/llvm/include/llvm/Support/
H A Dsystem_error.h71 const error_category& category() const;
100 const error_category& category() const;
713 const error_category& category() const {return *_cat_;} function in class:llvm::error_condition
729 return _x.category() < _y.category()
730 || (_x.category() == _y.category() && _x.value() < _y.value());
772 const error_category& category() const {return *_cat_;} function in class:llvm::error_code
792 return _x.category() < _y.category()
[all...]
/external/stlport/stlport/stl/
H A D_locale.h109 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...]

Completed in 314 milliseconds

123456