HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 251 - 275 of 1545) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
locale_classes.h 66 /// Definition of locale::category.
67 typedef int category; typedef in class:locale
90 * @brief Category values.
92 * The standard category values are none, ctype, numeric, collate, time,
94 * intersection. The category all is the union of these values.
98 static const category none = 0;
99 static const category ctype = 1L << 0;
100 static const category numeric = 1L << 1;
101 static const category collate = 1L << 2;
102 static const category time = 1L << 3
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
AnimateableViewBounds.java 34 @ViewDebug.ExportedProperty(category="recents")
36 @ViewDebug.ExportedProperty(category="recents")
38 @ViewDebug.ExportedProperty(category="recents")
40 @ViewDebug.ExportedProperty(category="recents")
42 @ViewDebug.ExportedProperty(category="recents")
  /frameworks/base/services/net/java/android/net/util/
SharedLog.java 39 private enum Category {
86 Log.e(mTag, record(Category.ERROR, e.toString()));
90 Log.e(mTag, record(Category.ERROR, msg));
94 Log.i(mTag, record(Category.NONE, msg));
98 Log.w(mTag, record(Category.WARN, msg));
106 record(Category.NONE, msg);
110 record(Category.MARK, msg);
113 private String record(Category category, String msg) {
114 final String entry = logLine(category, msg)
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/back/
FirstFitLocalCombiningAllocator.java 296 // Compute max category for remaining unmapped registers.
300 int category = ssaSpec.getCategory(); local
302 && category > maxCategory) {
303 maxCategory = category;
325 * @param maxAllowedCategory {@code 1..2;} maximum category
345 // the widest category used, but <shrug>
357 * @param maxAllowedCategory {@code 1..2;} the maximum category
377 * @param category {@code > 0;} width to reserve
379 private void markReserved(int ropReg, int category) {
380 reservedRopRegs.set(ropReg, ropReg + category, true)
567 int category = checkRegSpec.getCategory(); local
634 int category = ssaSpec.getCategory(); local
673 int category = ssaSpec.getCategory(); local
784 int category = ssaSpec.getCategory(); local
785 mapper.addMapping(ssaSpec.getReg(), ropReg, category); local
808 int category = source.getCategory(); local
865 int category = sources.get(i).getCategory(); local
1042 int category = categoriesForIndex[i]; local
1132 int category = result.getCategory(); local
    [all...]
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/applications/
ApplicationsStateTest.java 50 mEntry.info.category = ApplicationInfo.CATEGORY_GAME;
58 mEntry.info.category = ApplicationInfo.CATEGORY_GAME;
65 mEntry.info.category = ApplicationInfo.CATEGORY_UNDEFINED;
72 mEntry.info.category = ApplicationInfo.CATEGORY_AUDIO;
79 mEntry.info.category = ApplicationInfo.CATEGORY_GAME;
86 mEntry.info.category = ApplicationInfo.CATEGORY_UNDEFINED;
93 mEntry.info.category = ApplicationInfo.CATEGORY_AUDIO;
100 mEntry.info.category = ApplicationInfo.CATEGORY_GAME;
107 mEntry.info.category = ApplicationInfo.CATEGORY_UNDEFINED;
229 mEntry.info.category = ApplicationInfo.CATEGORY_VIDEO
    [all...]
  /external/fio/
options.c 1281 .category = FIO_OPT_C_GENERAL,
1290 .category = FIO_OPT_C_GENERAL,
1301 .category = FIO_OPT_C_FILE,
1311 .category = FIO_OPT_C_FILE,
1321 .category = FIO_OPT_C_FILE,
1334 .category = FIO_OPT_C_FILE,
1359 .category = FIO_OPT_C_FILE,
1372 .category = FIO_OPT_C_IO,
1420 .category = FIO_OPT_C_IO,
1441 .category = FIO_OPT_C_IO
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/
SuggestionParser.java 180 SuggestionCategory category, List<Tile> suggestions, boolean isSmartSuggestionEnabled) {
183 intent.addCategory(category.category);
184 if (category.pkg != null) {
185 intent.setPackage(category.pkg);
190 if (!category.multiple && suggestions.size() > (countBefore + 1)) {
200 // If category is marked as done, do not add any item.
201 if (!isCategoryDone(category.category)) {
304 public boolean isCategoryDone(String category) {
368 public String category; field in class:SuggestionParser.SuggestionCategory
449 SuggestionCategory category = new SuggestionCategory(); local
    [all...]
  /packages/apps/CellBroadcastReceiver/tests/testapp/src/com/android/cellbroadcastreceiver/tests/
SendTestMessages.java 393 int category) {
396 return createFromPdus(context, pdus, serialNumber, category);
400 int category) {
408 if (category != 0) {
409 Log.d(TAG, "setting GSM message identifier to " + category);
410 pdu[2] = (byte) ((category >>> 8) & 0xff);
411 pdu[3] = (byte) (category & 0xff);
418 if (category != 0) {
419 Log.d(TAG, "setting UMTS message identifier to " + category);
420 pdu[1] = (byte) ((category >>> 8) & 0xff)
    [all...]
  /libcore/tools/docs/crypto/
update_crypto_support.py 123 followed by any number of lines of an algorithm category and algorithm name
153 category, algorithm = line.split()
154 if category not in SUPPORTED_CATEGORIES:
157 current_data[category].append(normalized_name)
181 from algorithm category to list of algorithm names.
187 for category in SUPPORTED_CATEGORIES:
188 prev_category = find_by_name(prev_data['categories'], category)
190 prev_category = {'name': category, 'algorithms': []}
192 current_data[category] if category in current_data else []
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_locale.h 109 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...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_locale.h 109 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...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_locale.h 109 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...]
  /build/make/tools/
warn.py 20 # warn_patterns[w]['category'] tool that issued the warning, not used now
145 {'category': 'C/C++', 'severity': Severity.ANALYZER,
148 {'category': 'make', 'severity': Severity.MEDIUM,
152 {'category': 'make', 'severity': Severity.HIGH,
155 {'category': 'make', 'severity': Severity.HIGH,
158 {'category': 'make', 'severity': Severity.HIGH,
161 {'category': 'make', 'severity': Severity.MEDIUM,
164 {'category': 'C/C++', 'severity': Severity.HIGH, 'option': '-Wimplicit-function-declaration',
168 {'category': 'C/C++', 'severity': Severity.SKIP,
171 {'category': 'C/C++', 'severity': Severity.HIGH, 'option': '-Wtype-limits'
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RBBIDataWrapper.java 456 int category; local
459 for (category = 0; category <= fHeader.fCatCount; category ++) {
460 catStrings[category] = "";
465 category = fTrie.getCodePointValue(char32);
466 category &= ~0x4000; // Mask off dictionary bit.
467 if (category < 0 || category > fHeader.fCatCount) {
468 out.println("Error, bad category " + Integer.toHexString(category)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RBBIDataWrapper.java 455 int category; local
458 for (category = 0; category <= fHeader.fCatCount; category ++) {
459 catStrings[category] = "";
464 category = fTrie.getCodePointValue(char32);
465 category &= ~0x4000; // Mask off dictionary bit.
466 if (category < 0 || category > fHeader.fCatCount) {
467 out.println("Error, bad category " + Integer.toHexString(category)
    [all...]
  /packages/apps/Settings/src/com/android/settings/nfc/
PaymentDefaultDialog.java 49 String category = intent.getStringExtra(CardEmulation.EXTRA_CATEGORY); local
52 if (!buildDialog(component, category)) {
70 private boolean buildDialog(ComponentName component, String category) {
71 if (component == null || category == null) {
72 Log.e(TAG, "Component or category are null");
76 if (!CardEmulation.CATEGORY_PAYMENT.equals(category)) {
77 Log.e(TAG, "Don't support defaults for category " + category);
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/
SetupFragment.java 108 protected void setOnClickAction(View view, final String category, final int actionId) {
112 onActionClick(category, actionId);
117 protected boolean onActionClick(String category, int actionId) {
118 return SetupActionHelper.onActionClick(this, category, actionId);
121 protected boolean onActionClick(String category, int actionId, Bundle params) {
122 return SetupActionHelper.onActionClick(this, category, actionId, params);
  /external/fio/engines/
cpu.c 24 .category = FIO_OPT_C_GENERAL,
36 .category = FIO_OPT_C_GENERAL,
46 .category = FIO_OPT_C_GENERAL,
  /cts/tests/tests/opengl/src/android/opengl/cts/
OpenGLES20NativeActivityOne.java 91 public OpenGLES20View(Context context, int category, int testCase, CountDownLatch latch) {
94 mRenderer = new GL2Renderer(category, testCase, latch);
117 public GL2Renderer(int category, int testcase, CountDownLatch latch) {
118 this.mCategory = category;
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VideoProvider.java 44 private static String TAG_CATEGORY = "category";
108 Log.d(TAG, "category #: " + categories.length());
115 JSONObject category = categories.getJSONObject(i); local
116 String category_name = category.getString(TAG_CATEGORY);
117 JSONArray videos = category.getJSONArray(TAG_MEDIA);
119 "category: " + i + " Name:" + category_name + " video length: "
148 private static Movie buildMovieInfo(String category, String title,
157 movie.setCategory(category);
165 private static String getVideoPrefix(String category, String videoUrl) {
167 ret = mPrefixUrl + category.replace(" ", "%20") + '/'
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/data/
VideoProvider.java 47 private static String TAG_CATEGORY = "category";
78 Log.d(TAG, "category #: " + categories.length());
85 JSONObject category = categories.getJSONObject(i); local
86 String category_name = category.getString(TAG_CATEGORY);
87 JSONArray videos = category.getJSONArray(TAG_MEDIA);
89 "category: " + i + " Name:" + category_name + " video length: "
118 private static Movie buildMovieInfo(String category,
131 movie.setCategory(category);
139 private static String getVideoPrefix(String category, String videoUrl) {
141 ret = sPrefixUrl + category.replace(" ", "%20") + '/'
    [all...]
  /docs/source.android.com/scripts/
build.py 57 category = 'home' variable
66 # Step A: split path, and update cached category name if needed
71 category = outdir[-1]
116 sidebar3=sidebar3, category=category, title=get_title(absfilename))
  /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);

Completed in 838 milliseconds

<<11121314151617181920>>