HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 526 - 550 of 1669) sorted by null

<<21222324252627282930>>

  /tools/loganalysis/src/com/android/loganalysis/item/
LogcatItem.java 140 public List<MiscLogcatItem> getMiscEvents(String category) {
143 if (item.getCategory().equals(category)) {
  /external/clang/tools/scan-build-py/libscanbuild/
report.py 175 for category, types in bug_counter.categories.items():
179 | </tr>""", indent).format(category))
326 'bug_category': bug['category'],
388 """ Create a new bug attribute from bug by category and type.
405 counters. The first level is 'bug category' the second is 'bug type'.
  /external/fio/
parse.h 74 uint64_t category; /* what type of option */ member in struct:fio_option
  /external/v8/tools/
eval_gc_nvp.py 76 class Category:
137 return "<Category: {0}>".format(self.key)
197 categories = [ Category(key, deepcopy(histogram), args.csv, percentiles)
205 for category in categories:
206 category.process_entry(obj)
214 for category in categories:
215 print(category)
  /frameworks/base/core/java/com/android/internal/util/
NotificationMessagingUtil.java 86 if (Notification.CATEGORY_MESSAGE.equals(sbn.getNotification().category)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
RecentsViewTouchHandler.java 61 @ViewDebug.ExportedProperty(category="recents")
63 @ViewDebug.ExportedProperty(category="recents")
65 @ViewDebug.ExportedProperty(category="recents")
67 @ViewDebug.ExportedProperty(category="recents")
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 28 import com.android.gallery3d.filtershow.category.MainPanel;
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardSummary.java 314 final DashboardCategory category = mDashboardFeatureProvider.getTilesForCategory( local
316 mSummaryLoader.updateSummaryToCache(category);
318 mAdapter.setCategoriesAndSuggestions(category, suggestions);
320 mAdapter.setCategory(category);
SiteMapManager.java 152 for (DashboardCategory category : categories) {
153 // Find the category key first.
154 final String parentClass = CATEGORY_KEY_TO_PARENT_MAP.get(category.key);
164 for (Tile tile : category.tiles) {
  /tools/test/connectivity/acts/framework/tests/
acts_import_unit_test.py 26 warnings.filterwarnings('ignore', category=PendingDeprecationWarning)
  /frameworks/base/core/java/android/hardware/display/
DisplayManager.java 71 * Display category: Presentation displays.
73 * This category can be used to identify secondary displays that are suitable for
84 "android.hardware.display.category.PRESENTATION";
132 * display in the {@link #DISPLAY_CATEGORY_PRESENTATION presentation display category}.
325 * Gets all currently valid logical displays of the specified category.
327 * When there are multiple displays in a category the returned displays are sorted
328 * of preference. For example, if the requested category is
335 * @param category The requested display category or null to return all displays.
340 public Display[] getDisplays(String category) {
    [all...]
  /frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
VideoProvider.java 74 String category = "Category " + Integer.toString(i); local
75 ret.put(category, list);
78 "The gripping yet whimsical description of videoInfo %d in category %d", j,
88 videoInfo.setCategory(category);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 146 * Handle Service Category Program Data message.
147 * TODO: Send Service Category Program Results response message to sender
181 private void tryCdmaSetCategory(Context context, int category, boolean enable) {
184 switch (category) {
209 + " alerts in category " + category);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
MainPanel.java 17 package com.android.gallery3d.filtershow.category;
139 private void setCategoryFragment(CategoryPanel category, boolean fromRight) {
146 transaction.replace(R.id.category_panel_container, category, CategoryPanel.FRAGMENT_TAG);
  /packages/apps/Launcher3/src/com/android/launcher3/
Hotseat.java 51 @ViewDebug.ExportedProperty(category = "launcher")
54 @ViewDebug.ExportedProperty(category = "launcher")
56 @ViewDebug.ExportedProperty(category = "launcher")
  /packages/apps/Settings/src/com/android/settings/
TrustAgentSettings.java 111 PreferenceGroup category = local
113 category.removeAll();
138 category.addPreference(agent.preference);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 61 // Name of the category for the main dictionary
153 * Returns the list of cached files for a specific locale, one for each category.
155 * This will return exactly one file for each word list category that matches
156 * the passed locale. If several files match the locale for any given category,
158 * the passed word list is en_US, and for a category we have an en and an en_US
179 final String category = local
181 final FileAndMatchLevel currentBestMatch = cacheFiles.get(category);
183 cacheFiles.put(category, new FileAndMatchLevel(wordList, matchLevel));
  /prebuilts/gradle-plugin/com/android/tools/asset-studio/25.4.0-alpha5/
asset-studio-25.4.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/asset-studio/25.4.0-alpha6/
asset-studio-25.4.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/asset-studio/25.4.0-alpha7/
asset-studio-25.4.0-alpha7.jar 
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsUsageMonitorShortCodeTest.java 62 final int category; field in class:SmsUsageMonitorShortCodeTest.ShortCodeTest
64 ShortCodeTest(String countryIso, String destAddress, int category) {
67 this.category = category;
506 test.category, monitor.checkDestination(test.address, test.countryIso));
  /external/skia/src/core/
SkTraceEvent.h 35 // Sets the current sample state to the given category and name (both must be
37 // Implementation note: we store category and name together because we don't
42 bucket_number, category, name) \
44 TraceEventSamplingStateScope<bucket_number>::Set(category "\0" name)
53 // TRACE_EVENT_SAMPLING_STATE_SCOPE_FOR_BUCKET(0, "category", "name");
57 bucket_number, category, name) \
59 traceEventSamplingScope(category "\0" name);
67 // Get a pointer to the enabled state of the given trace category. Only
68 // long-lived literal strings should be given as the category group. The
135 // Implementation detail: internal macro to create static category
    [all...]
  /frameworks/base/core/java/android/widget/
FrameLayout.java 60 @ViewDebug.ExportedProperty(category = "measurement")
63 @ViewDebug.ExportedProperty(category = "padding")
66 @ViewDebug.ExportedProperty(category = "padding")
69 @ViewDebug.ExportedProperty(category = "padding")
72 @ViewDebug.ExportedProperty(category = "padding")
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsUsageMonitorShortCodeTest.java 41 final int category; field in class:SmsUsageMonitorShortCodeTest.ShortCodeTest
43 ShortCodeTest(String countryIso, String destAddress, int category) {
46 this.category = category;
473 test.category, monitor.checkDestination(test.address, test.countryIso));
  /external/libchrome/base/test/
trace_event_analyzer.h 165 std::string category; member in struct:trace_analyzer::TraceEvent
263 static Query EventCategoryIs(const std::string& category) {
264 return Query(EVENT_CATEGORY) == Query::String(category);
330 static Query OtherCategoryIs(const std::string& category) {
331 return Query(OTHER_CATEGORY) == Query::String(category);
394 static Query PrevCategoryIs(const std::string& category) {
395 return Query(PREV_CATEGORY) == Query::String(category);
673 // category, process ID and thread ID. This matches what is shown in
680 // event with the same name, category, and ID. This creates a singly linked

Completed in 1312 milliseconds

<<21222324252627282930>>