Searched refs:category (Results 51 - 75 of 343) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dtext_unittest.py43 def error_for_test(line_number, category, confidence, message):
54 def error_for_test(line_number, category, confidence, message):
57 self.assertEqual('whitespace/tab', category)
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DBasicRegisterMapper.java113 * @param category {@code 1..2;} width of reg
115 public void addMapping(int oldReg, int newReg, int category) { argument
125 if (runningCountNewRegisters < (newReg + category)) {
126 runningCountNewRegisters = newReg + category;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategory.java11 package org.eclipse.wb.internal.core.model.property.category;
17 * Describes category of {@link Property}.
24 * "Normal" category, used for properties that should be displayed without any effect.
28 * "Preferred" category, for properties that are most useful for component.
32 * "Advanced" category, for properties that are rarely used, visible if modified, even if not
37 * "Advanced" category, for properties that are rarely used, visible only if enabled.
41 * "Hidden" category, for properties that should not be displayed.
101 PropertyCategory category = (PropertyCategory) obj;
102 return m_priority == category.m_priority;
154 * @return the priority of this category
[all...]
/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/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-external.h96 static inline void HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass) argument
98 if (category)
99 *category = HB_GetUnicodeCharCategory (ch);
/external/chromium-trace/trace-viewer/src/tracing/
H A Drecord_selection_dialog.js122 // Skip any category with a , as it will cause issues when we negate.
181 var category = inputs[i];
185 inputEl.id = category;
186 inputEl.value = category;
189 category, checkedDefault, this.settings_key_);
193 labelEl.textContent = category.replace('disabled-by-default-', '');
194 labelEl.setAttribute('for', category);
211 // returned when we query the category list.
222 for (var category in set) {
223 if (category
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCalculationValue.h78 CalculationCategory category() const { return m_category; } function in class:WebCore::CSSCalcExpressionNode
83 CSSCalcExpressionNode(CalculationCategory category, bool isInteger) argument
84 : m_category(category)
105 CalculationCategory category() const { return m_expression->category(); } function in class:WebCore::CSSCalcValue
/external/chromium-trace/trace-viewer/src/tracing/importer/linux_perf/
H A Dandroid_parser.js50 openAsyncSlice: function(thread, category, name, cookie, ts) {
52 category, name, tracing.getStringColorId(name), ts);
80 slice.subSlices = [new tracing.trace_model.Slice(slice.category,
91 var category = eventData[4];
104 category, title, ts, parseArgs(eventData[3]));
139 var category = eventData[4];
142 .getOrCreateCounter(category, name);
H A Ddisk_parser.js36 openAsyncSlice: function(ts, category, threadName, pid, key, name) {
38 category + ':' + threadName, pid);
40 category, name, tracing.getStringColorId(name), ts);
49 closeAsyncSlice: function(ts, category, threadName, pid, key, args) {
51 category + ':' + threadName, pid);
59 new tracing.trace_model.Slice(category, slice.title,
H A Ddisk_parser_test.js58 assertEquals('block', slice.category);
68 assertEquals('ext4', slice.category);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_configuration.py74 for category, specifier in test_configuration.items():
75 self.add_specifier(category, specifier)
79 def add_specifier(self, category, specifier):
80 self._specifier_to_category[specifier] = category
90 def category_priority(cls, category):
91 return TestConfiguration.category_order().index(category)
122 for category, specifier in configuration.items():
124 self._specifier_sorter.add_specifier(category, specifier)
125 self._collapsing_sets_by_category.setdefault(category, set()).add(specifier)
128 if category
[all...]
/external/llvm/lib/Support/
H A DAPFloat.cpp599 category = rhs.category;
601 if (isFiniteNonZero() || category == fcNaN)
608 assert(isFiniteNonZero() || category == fcNaN);
620 category = fcNaN;
759 category != rhs.category ||
762 if (category==fcZero || category==fcInfinity)
781 category
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DTimelinePresentationModel.js59 * @return {!Object.<string, {title: string, category}>}
70 recordStyles[recordTypes.Root] = { title: "#root", category: categories["loading"] };
71 recordStyles[recordTypes.Program] = { title: WebInspector.UIString("Other"), category: categories["other"] };
72 recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: categories["scripting"] };
73 recordStyles[recordTypes.BeginFrame] = { title: WebInspector.UIString("Frame Start"), category: categories["rendering"] };
74 recordStyles[recordTypes.ScheduleStyleRecalculation] = { title: WebInspector.UIString("Schedule Style Recalculation"), category: categories["rendering"] };
75 recordStyles[recordTypes.RecalculateStyles] = { title: WebInspector.UIString("Recalculate Style"), category: categories["rendering"] };
76 recordStyles[recordTypes.InvalidateLayout] = { title: WebInspector.UIString("Invalidate Layout"), category: categories["rendering"] };
77 recordStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: categories["rendering"] };
78 recordStyles[recordTypes.PaintSetup] = { title: WebInspector.UIString("Paint Setup"), category
[all...]
H A DAuditController.js77 var category = categories[i];
78 var result = new WebInspector.AuditCategoryResult(category);
80 category.run(requests, ruleResultReadyCallback.bind(this, result), categoryDoneCallback.bind(this), subprogresses[i]);
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java248 // Compute max category for remaining unmapped registers.
252 int category = ssaSpec.getCategory();
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) { argument
332 reservedRopRegs.set(ropReg, ropReg + category, tru
610 spansParamRange(int ssaReg, int category) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/provider/
H A DDiscoverInfoProvider.java41 String category = "";
52 category = parser.getAttributeValue("", "category");
69 identity = new DiscoverInfo.Identity(category, name, type);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcompiled_file_system.py20 def Create(self, populate_function, cls, category=None):
25 |cls| along with an optional |category|.
30 if category is not None:
31 full_name.append(category)
34 CompiledFileSystem, category='/'.join(full_name + [my_category]))
H A Dchained_compiled_file_system.py29 def Create(self, populate_function, cls, category=None):
31 [(factory.Create(populate_function, cls, category), fs)
H A Dobject_store_creator_test.py29 store = self._creator.Create(_FooClass, category='hi')
31 'class=_FooClass&category=hi&app_version=%s' % GetAppVersion(),
51 self._creator.Create, _FooClass, category='a=&b')
/external/llvm/include/llvm/Support/
H A Dsystem_error.h73 const error_category& category() const;
102 const error_category& category() const;
704 const error_category& category() const {return *_cat_;} function in class:llvm::error_condition
720 return _x.category() < _y.category()
721 || (_x.category() == _y.category() && _x.value() < _y.value());
767 const error_category& category() const {return *_cat_;} function in class:llvm::error_code
787 return _x.category() < _y.category()
[all...]
/external/chromium_org/chrome/browser/ui/webui/performance_monitor/
H A Dperformance_monitor_handler.cc30 std::set<MetricType> GetMetricSetForCategory(MetricCategory category) { argument
32 switch (category) {
55 std::set<EventType> GetEventSetForCategory(EventCategory category) { argument
57 switch (category) {
80 Unit GetUnitForMetricCategory(MetricCategory category) { argument
81 switch (category) {
152 scoped_ptr<ListValue> GetMetricDetailsForCategory(MetricCategory category) { argument
154 std::set<MetricType> metric_set = GetMetricSetForCategory(category);
168 // Returns a dictionary for the metric category. Metric categories contain
169 // an id representing the category; localize
172 GetMetricCategory(MetricCategory category) argument
191 GetEventTypesForCategory(EventCategory category) argument
212 GetEventCategory(EventCategory category) argument
[all...]
H A Dperformance_monitor_l10n.cc55 string16 GetLocalizedStringFromEventCategory(const EventCategory category) { argument
57 switch (category) {
75 const EventCategory category) {
77 switch (category) {
260 const MetricCategory category) {
263 switch (category) {
284 const MetricCategory category) {
287 switch (category) {
74 GetLocalizedStringForEventCategoryDescription( const EventCategory category) argument
259 GetLocalizedStringFromMetricCategory( const MetricCategory category) argument
283 GetLocalizedStringForMetricCategoryDescription( const MetricCategory category) argument
/external/bison/lib/
H A Dgettext.h150 int category)
152 const char *translation = dcgettext (domain, msg_ctxt_id, category);
170 int category)
173 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
212 int category)
231 translation = dcgettext (domain, msg_ctxt_id, category);
258 int category)
277 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
148 pgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, int category) argument
167 npgettext_aux(const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
210 dcpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, int category) argument
255 dcnpgettext_expr(const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) argument
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dasync_slice.js20 function AsyncSlice(category, title, colorId, start, args) {
/external/chromium_org/cc/debug/
H A Dtraced_value.cc25 const char* category,
29 dict->SetString("cat", category);
24 MakeDictIntoImplicitSnapshotWithCategory( const char* category, base::DictionaryValue* dict, const char* object_name, const void* id) argument

Completed in 560 milliseconds

1234567891011>>