HomeSort by relevance Sort by last modified time
    Searched refs:categories (Results 1 - 25 of 37) sorted by null

1 2

  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
common.py 27 # categories is tested, for example by checking that all of its
31 categories = set([ variable
  /external/webkit/SunSpider/
make-hosted 41 my @categories = ();
58 push @categories, $category;
97 $prefix .= "var categories = [ " . join(", ", map { '"' . $_ . '"' } @categories) . " ];\n";
sunspider 127 my @categories = ();
141 push @categories, $category;
156 $prefix .= "var categories = [ " . join(", ", map { '"' . $_ . '"' } @categories) . " ];\n";
  /external/webkit/WebCore/inspector/front-end/
AuditsPanel.js 113 _executeAudit: function(categories, resultCallback)
120 for (var i = 0; i < categories.length; ++i)
121 rulesRemaining += categories[i].ruleCount;
142 for (var i = 0; i < categories.length; ++i) {
143 var category = categories[i];
172 var categories = []; variable
174 categories.push(this.categoriesById[categoryIds[i]]);
176 function initiateAuditCallback(categories, launcherCallback)
178 this._executeAudit(categories, this._auditFinishedCallback.bind(this, launcherCallback));
182 initiateAuditCallback.call(this, categories, launcherCallback)
    [all...]
SummaryBar.js 30 WebInspector.SummaryBar = function(categories)
32 this.categories = categories;
72 for (var category in this.categories) {
77 var colorString = this.categories[category].color;
82 var legendLabel = this._makeLegendElement(this.categories[category].title, this.calculator.formatValue(size), colorString);
TimelinePanel.js 36 this._overviewPane = new WebInspector.TimelineOverviewPane(this.categories);
99 get categories()
174 this._recordStyles[recordTypes.EventDispatch] = { title: WebInspector.UIString("Event"), category: this.categories.scripting };
175 this._recordStyles[recordTypes.Layout] = { title: WebInspector.UIString("Layout"), category: this.categories.rendering };
176 this._recordStyles[recordTypes.RecalculateStyles] = { title: WebInspector.UIString("Recalculate Style"), category: this.categories.rendering };
177 this._recordStyles[recordTypes.Paint] = { title: WebInspector.UIString("Paint"), category: this.categories.rendering };
178 this._recordStyles[recordTypes.ParseHTML] = { title: WebInspector.UIString("Parse"), category: this.categories.loading };
179 this._recordStyles[recordTypes.TimerInstall] = { title: WebInspector.UIString("Install Timer"), category: this.categories.scripting };
180 this._recordStyles[recordTypes.TimerRemove] = { title: WebInspector.UIString("Remove Timer"), category: this.categories.scripting };
181 this._recordStyles[recordTypes.TimerFire] = { title: WebInspector.UIString("Timer Fired"), category: this.categories.scripting }
    [all...]
AbstractTimelinePanel.js 39 get categories()
80 this.summaryBar = new WebInspector.SummaryBar(this.categories);
100 else if (this.categories[category])
101 var label = this.categories[category].title;
120 for (var category in this.categories)
TimelineOverviewPane.js 31 WebInspector.TimelineOverviewPane = function(categories)
36 this._categories = categories;
audits.css 201 .audit-launcher-view div.audit-categories-container {
  /frameworks/base/cmds/service/
service.cpp 158 char* categories[16]; local
192 else if (strcmp(key, "categories") == 0)
196 categories[categoryCount] = strtok_r(value, ",", &context2);
198 while (categories[categoryCount] != NULL)
201 categories[categoryCount] = strtok_r(NULL, ",", &context2);
219 writeString16(data, categories[i]);
269 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
  /development/scripts/
combine_sdks.sh 75 for i in widgets categories broadcast_actions service_actions; do
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
checker.py 43 from processors.common import categories as CommonCategories
53 # FIXME: For style categories we will never want to have, remove them.
54 # For categories for which we want to have similar functionality,
161 """Return the set of all categories used by check-webkit-style."""
163 return CommonCategories.union(CppProcessor.categories)
219 which categories of style guidelines to check. The script checks
234 [whitespace/indent]. To see a list of all categories available to
457 """Exit and print the style categories and default filter rules."""
458 self.doc_print('\nAll categories:\n')
459 categories = style_categories(
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 147 ArrayList<String> categories = new ArrayList<String>(); local
149 service_actions, categories);
271 categories.toArray(new String[categories.size()]),
424 * The values are added to the <code>actions</code> and <code>categories</code> lists.
429 * @param categories the list which will receive the category values.
433 ArrayList<String> serviceActions, ArrayList<String> categories) {
440 collectValues(mAndroidTarget.getPath(IAndroidTarget.CATEGORIES),
441 categories); local
  /bionic/libc/regex/
regex2.h 120 /* stuff for character categories */
144 int ncategories; /* how many character categories */
145 cat_t *categories; /* ->catspace[-CHAR_MIN] */ member in struct:re_guts
  /external/webkit/SunSpider/resources/
sunspider-compare-results.js 73 for (var i = 0; i < categories.length; i++) {
74 var category = categories[i];
108 for (var i = 0; i < categories.length; i++) {
109 var category = categories[i];
sunspider-analyze-results.js 51 for (var i = 0; i < categories.length; i++) {
52 var category = categories[i];
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 1077 public final String[] categories; field in class:IntentFilterTest.MatchCondition
1092 HashSet<String> categories = null; local
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 42 * match against actions, categories, and data (either via its type, scheme,
52 * <em>action</em>, <em>data</em>, and <em>categories</em>. For each of these
117 * <p><strong>Categories</strong> match if <em>all</em> of the categories in
118 * the Intent match categories given in the filter. Extra categories in the
120 * that unlike the action, an IntentFilter with no categories
121 * will only match an Intent that does not have any categories.
223 * The filter didn't match because it required one or more categories
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
ResolverActivity.java 116 Set<String> categories = intent.getCategories(); local
117 if (categories != null) {
118 for (String cat : categories) {
  /external/chromium/third_party/icu/source/data/locales/
reslocal.mk 34 # uses a few categories of data in those locales for IDN handling and language name listing (in the UI).
  /development/build/
sdk.atree 102 docs/categories.txt platforms/${PLATFORM_NAME}/data/categories.txt
  /frameworks/base/services/java/com/android/server/
IntentResolver.java 483 Set<String> categories = intent.getCategories(); local
502 intent.getAction(), resolvedType, scheme, intent.getData(), categories, TAG);
  /build/tools/droiddoc/src/
DroidDoc.java 1230 ArrayList<String> categories = new ArrayList<String>(); local
    [all...]
  /external/webkit/WebKit/chromium/src/js/
HeapProfilerPanel.js 67 this.categories = {
75 this.countsSummaryBar = new WebInspector.SummaryBar(this.categories);
84 this.sizesSummaryBar = new WebInspector.SummaryBar(this.categories);
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 117 private static final String EXTENDED_PROPERTY_CATEGORIES = "categories";
543 String categories = categoriesParser(ops); local
544 if (categories.length() > 0) {
545 ops.newExtendedProperty(EXTENDED_PROPERTY_CATEGORIES, categories);
938 StringBuilder categories = new StringBuilder(); local
    [all...]

Completed in 499 milliseconds

1 2