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

<<11121314151617181920>>

  /external/icu/icu4c/source/i18n/
pluralaffix.cpp 40 PluralMapBase::Category index = PluralMapBase::NONE;
50 PluralMapBase::Category index = PluralMapBase::NONE;
60 PluralMapBase::Category index = PluralMapBase::NONE;
73 PluralMapBase::Category index = PluralMapBase::NONE;
86 PluralAffix::getByCategory(const char *category) const {
87 return affixes.get(category);
91 PluralAffix::getByCategory(const UnicodeString &category) const {
92 return affixes.get(category);
98 PluralMapBase::Category index = PluralMapBase::OTHER;
  /external/libchrome/base/trace_event/
trace_sampling_thread.h 41 // Splits a combined "category\0name" into the two component parts.
43 const char** category,
  /external/pdfium/core/fpdfdoc/
cpdf_nametree.h 20 CPDF_NameTree(CPDF_Document* pDoc, const CFX_ByteString& category);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
system_error.h 71 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...]
  /packages/services/Car/service/src/com/android/car/cluster/
InstrumentClusterService.java 304 // Category from given intent should match category from cluster vendor implementation.
319 // now we pickup the first one that matches registered category (resolveList is sorted
325 + "category intent didn't match with any categories from vendor "
413 for (String category : registeredCategories) {
414 if (resolveInfo.filter != null && resolveInfo.filter.hasCategory(category)) {
415 ClusterActivityInfo categoryInfo = mActivityInfoByCategory.get(category);
461 private ClusterActivityInfo getOrCreateActivityInfoLocked(String category) {
462 return mActivityInfoByCategory.computeIfAbsent(category, k -> new ClusterActivityInfo());
469 public void setClusterActivityLaunchOptions(String category, Bundle activityOptions
    [all...]
  /tools/loganalysis/src/com/android/loganalysis/parser/
KernelLogParser.java 156 String category = mPatternUtil.checkMessage(message); local
157 if (category == null) {
161 if (category.equals(KERNEL_RESET) || category.equals(NORMAL_REBOOT)) {
165 if (category.equals(NORMAL_REBOOT)) {
170 if (category.equals(SELINUX_DENIAL)) {
177 } else if (category.equals(PAGE_ALLOC_FAILURE)) {
184 } else if (category.equals(LOW_MEMORY_KILLER)) {
199 kernelLogItem.setCategory(category);
WakelockParser.java 88 void parseKernelWakeLock(String line, WakeLockCategory category) {
103 mItem.addWakeLock(name, wakelockTime, timesCalled, category);
112 void parsePartialWakeLock(String line, WakeLockCategory category) {
127 mItem.addWakeLock(name, processUID, wakelockTime, timesCalled, category);
  /external/python/cpython2/Lib/test/
test_warnings.py 92 self.module.filterwarnings("error", category=UserWarning)
100 self.module.filterwarnings("ignore", category=UserWarning)
108 self.module.filterwarnings("always", category=UserWarning)
119 self.module.filterwarnings("default", category=UserWarning)
135 self.module.filterwarnings("module", category=UserWarning)
147 self.module.filterwarnings("once", category=UserWarning)
163 self.module.filterwarnings("error", category=Warning)
171 self.module.filterwarnings("ignore", category=UserWarning)
172 self.module.filterwarnings("error", category=UserWarning,
193 self.assertTrue(w[-1].category is UserWarning
    [all...]
  /cts/tests/leanbackjank/app/src/android/leanbackjank/app/model/
Movie.java 92 public void setCategory(String category) {
93 mCategory = category;
  /external/bison/lib/
gettext.h 71 # define dcgettext(Domainname, Msgid, Category) \
72 ((void) (Category), dgettext (Domainname, Msgid))
82 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \
83 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
126 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \
127 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
137 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \
138 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
150 int category)
152 const char *translation = dcgettext (domain, msg_ctxt_id, category);
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 27 severity(0), category(0) {}
43 /// \brief Return the category of the diagnostic.
46 /// \brief Return the category string of the diagnostic.
90 unsigned category; member in class:clang::CXLoadedDiagnostic
  /external/skia/src/core/
SkATrace.h 43 static const char* category = "skiaATrace"; variable
44 return category;
  /external/v8/tools/clang/value_cleanup/
ValueCleanup.cpp 37 llvm::cl::OptionCategory category(
39 CommonOptionsParser options(argc, argv, category);
  /frameworks/base/telephony/java/android/telephony/cdma/
CdmaSmsCbProgramResults.java 23 * CDMA Service Category Program Results from SCPT teleservice SMS.
38 /** Program result: category already opted in. */
41 /** Program result: category already opted in. */
50 /** Program result: invalid service category name. */
56 /** Service category to modify. */
59 /** Language used for service category name (defined in BearerData.LANGUAGE_*). */
62 /** Result of service category programming for this category. */
66 public CdmaSmsCbProgramResults(int category, int language, int categoryResult) {
67 mCategory = category;
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/controller/
Controller.java 85 * Tracks an event. Events have a category, action and label. This method can be used to track
88 * @param category resource id of event category
92 public void sendEvent(@StringRes int category, @StringRes int action, @StringRes int label) {
93 mEventController.sendEvent(category, action, label);
  /packages/apps/DeskClock/src/com/android/deskclock/events/
Events.java 83 * Tracks an event. Events have a category, action, label and value. This
87 * @param category resource id of event category
91 public static void sendEvent(@StringRes int category, @StringRes int action,
93 Controller.getController().sendEvent(category, action, label);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
CrossProfileIntentFilter.java 82 Builder addCategory(String category) {
83 mFilter.addCategory(category);
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_vector.i 79 typedef pointer_category category;
120 typedef value_category category;
160 typedef value_category category;
201 typedef value_category category;
  /tools/loganalysis/src/com/android/loganalysis/item/
MiscKernelLogItem.java 33 public static final String CATEGORY = "CATEGORY";
38 EVENT_TIME, PREAMBLE, CATEGORY, STACK));
85 * Get the category of the event.
88 return (String) getAttribute(CATEGORY);
92 * Set the category of the event.
94 public void setCategory(String category) {
95 setAttribute(CATEGORY, category);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
CarNavigationBarController.java 112 String category = getPackageCategory(packageName); local
113 if (category != null) {
114 setCurrentFacet(mFacetCategoryMap.get(category));
132 String category = getPackageCategory(packageName); local
133 if (mFacetCategoryMap.containsKey(category)) {
134 int index = mFacetCategoryMap.get(category);
211 for (String category : categories) {
212 mFacetCategoryMap.put(category, id);
228 String category = categories[j]; local
232 intent.addCategory(category);
272 String category = categories[i]; local
    [all...]
  /external/syslinux/gpxe/src/util/
symcheck.pl 92 my $category;
94 $category = "requires";
96 $category = "shares";
98 $category = "provides";
100 $globals->{$symbol}->{$category}->{$object} = 1;
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
TileUtils.java 57 * <p>A category must be specified in the meta-data for the activity named
88 "com.android.settings.category.wireless";
94 "com.android.settings.category.device";
97 * The key used to get the category from metadata of activities of action
100 * <li>com.android.settings.category.wireless</li>
101 * <li>com.android.settings.category.device</li>
102 * <li>com.android.settings.category.personal</li>
103 * <li>com.android.settings.category.system</li>
105 private static final String EXTRA_CATEGORY_KEY = "com.android.settings.category";
188 * Build a list of DashboardCategory. Each category must be defined in manifest
250 DashboardCategory category = categoryMap.get(tile.category); local
281 DashboardCategory category = new DashboardCategory(); local
    [all...]
  /packages/apps/Settings/tests/unit/src/com/android/settings/applications/
ManageApplicationsUnitTest.java 48 info.category = ApplicationInfo.CATEGORY_AUDIO;
64 info.category = ApplicationInfo.CATEGORY_VIDEO;
80 info.category = ApplicationInfo.CATEGORY_GAME;
112 info.category = ApplicationInfo.CATEGORY_AUDIO;
129 info.category = ApplicationInfo.CATEGORY_GAME;
  /external/icu/icu4c/source/common/
rbbi.cpp 1033 uint16_t category = 0; local
1224 uint16_t category = 0; local
1587 uint16_t category; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedBreakIterator.java 452 int category; local
457 category = (short)fRData.fTrie.getCodePointValue(c);
464 if ((category & 0x4000) != 0) {
469 category = (short)fRData.fTrie.getCodePointValue(c);
470 } while (c != CharacterIteration.DONE32 && ((category & 0x4000)) != 0);
486 category = (short)fRData.fTrie.getCodePointValue(c);
488 while (c != CharacterIteration.DONE32 && ((category & 0x4000) != 0));
500 category = (short)fRData.fTrie.getCodePointValue(c);
512 category = (short)fRData.fTrie.getCodePointValue(c);
516 while((current = fText.getIndex()) < rangeEnd && (category & 0x4000) == 0)
1252 short category = 3; local
1395 int category = 0; local
    [all...]

Completed in 615 milliseconds

<<11121314151617181920>>