HomeSort by relevance Sort by last modified time
    Searched refs:category (Results 51 - 75 of 375) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-3/arch-x86/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-4/arch-mips/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-4/arch-x86/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-5/arch-mips/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-5/arch-x86/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-8/arch-mips/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-8/arch-x86/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
locale.h 52 extern char *setlocale(int category, const char *locale);
  /external/apache-http/src/org/apache/http/impl/
EnglishReasonPhraseCatalog.java 85 ("Unknown category for status code " + status + ".");
88 final int category = status / 100; local
89 final int subcode = status - 100*category;
92 if (REASON_PHRASES[category].length > subcode)
93 reason = REASON_PHRASES[category][subcode];
119 final int category = status / 100; local
120 final int subcode = status - 100*category;
121 REASON_PHRASES[category][subcode] = reason;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
RegisterType.java 43 public final Category category; field in class:RegisterType
46 private RegisterType(Category category, ClassDef type) {
47 assert ((category == Category.Reference || category == Category.UninitRef || category == Category.UninitThis) &
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/
filter.py 32 all_categories: A list of all available category names, for example--
38 the beginning of some category name in the list
47 for category in all_categories:
48 if category.startswith(rule[1:]):
53 "of any category name." % rule)
61 """Create a category filter.
79 self._should_check_category = {} # Cached dictionary of category to True/False
94 def should_check(self, category):
95 """Return whether the category should be checked.
97 The rules for determining whether a category should be checke
    [all...]
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/
Launcher.java 58 * @param category
59 * the intent filter category
63 public Launcher(String superClass, String category, String action)
66 intentFilterCategories.add(category);
81 * Adds an intent filter category to this launcher.
83 * @param category
85 public void addIntentFilterCategories(String category)
87 intentFilterCategories.add(category);
91 * Adds an intent filter category to this launcher.
93 * @param category
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 613 category = rhs.category;
617 if (category == fcNormal || category == fcNaN)
624 assert(category == fcNormal || category == fcNaN);
636 category = fcNaN;
707 category != rhs.category ||
713 if (category==fcZero || category==fcInfinity
    [all...]
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 36 int category = extras.getInt("category"); local
39 frag.updateContentAndRecycleBitmap(category, position);
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
python_unittest.py 49 def _mock_handle_style_error(line_number, category, confidence,
51 error = (line_number, category, confidence, message)
common_unittest.py 48 def _mock_style_error_handler(self, line_number, category, confidence,
51 error = (line_number, category, confidence, message)
105 def style_error_handler(line_number, category, confidence, message):
106 self.assertEqual(category, 'whitespace/tab')
  /external/harfbuzz/tests/linebreaking/
harfbuzz-qt.cpp 41 void HB_GetUnicodeCharProperties(HB_UChar32 ch, HB_CharCategory *category, int *combiningClass)
43 *category = (HB_CharCategory)QChar::category(ch);
49 return (HB_CharCategory)QChar::category(ch);
  /dalvik/dx/src/com/android/dx/ssa/
BasicRegisterMapper.java 113 * @param category {@code 1..2;} width of reg
115 public void addMapping(int oldReg, int newReg, int category) {
125 if (runningCountNewRegisters < (newReg + category)) {
126 runningCountNewRegisters = newReg + category;
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
BasicRegisterMapper.java 113 * @param category {@code 1..2;} width of reg
115 public void addMapping(int oldReg, int newReg, int category) {
125 if (runningCountNewRegisters < (newReg + category)) {
126 runningCountNewRegisters = newReg + category;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java 11 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; local
102 return m_priority == category.m_priority;
154 * @return the priority of this category
    [all...]

Completed in 874 milliseconds

1 23 4 5 6 7 8 91011>>