/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/ |
locale.h | 52 extern char *setlocale(int category, const char *locale);
|
/prebuilts/ndk/9/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 | 90 ("Unknown category for status code " + status + "."); 93 final int category = status / 100; local 94 final int subcode = status - 100*category; 97 if (REASON_PHRASES[category].length > subcode) 98 reason = REASON_PHRASES[category][subcode]; 124 final int category = status / 100; local 125 final int subcode = status - 100*category; 126 REASON_PHRASES[category][subcode] = reason;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
jsonchecker_unittest.py | 38 def __call__(self, line_number, category, confidence, message): 39 self._handle_style_error(self, line_number, category, confidence, message) 57 def handle_style_error(mock_error_handler, line_number, category, confidence, message): 58 self.fail('Unexpected error: %d %s %d %s' % (line_number, category, confidence, message)) 66 def handle_style_error(mock_error_handler, line_number, category, confidence, message): 69 self.assertEqual(expected_category, category) 70 self.assertIn(category, jsonchecker.JSONChecker.categories)
|
python.py | 61 category = "pep8/" + pep8_code 63 self._handle_style_error(line_number, category, 5, pep8_message) 71 for line_number, category, message in errors: 72 self._handle_style_error(line_number, category, 5, message) 116 category = 'pylint/' + (category_and_method[0]) 121 errors.append((line_number, category, message))
|
python_unittest.py | 49 def _mock_handle_style_error(line_number, category, confidence, 51 error = (line_number, category, confidence, message)
|
/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/ |
Movie.java | 37 private String category; field in class:Movie 107 return category; 110 public void setCategory(String category) { 111 this.category = category;
|
/external/fio/profiles/ |
tiobench.c | 42 .category = FIO_OPT_C_PROFILE, 52 .category = FIO_OPT_C_PROFILE, 61 .category = FIO_OPT_C_PROFILE, 70 .category = FIO_OPT_C_PROFILE, 79 .category = FIO_OPT_C_PROFILE,
|
/frameworks/support/v4/java/android/support/v4/hardware/display/ |
DisplayManagerCompat.java | 34 * Display category: Presentation displays. 36 * This category can be used to identify secondary displays that are suitable for 45 "android.hardware.display.category.PRESENTATION"; 88 * Gets all currently valid logical displays of the specified category. 90 * When there are multiple displays in a category the returned displays are sorted 91 * of preference. For example, if the requested category is 98 * @param category The requested display category or null to return all displays. 103 public abstract Display[] getDisplays(String category); 127 public Display[] getDisplays(String category) { [all...] |
/external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/ |
Android.mk | 17 test_makefile := external/libcxx/test/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/Android.mk 19 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/widen_many 23 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/scan_is 27 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/narrow_many 31 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/scan_not 35 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/toupper_many 39 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/toupper_1 43 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/widen_1 47 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/tolower_1 51 test_name := localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.members/is_man [all...] |
/external/chromium_org/third_party/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...] |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaRouteSelector.java | 82 * Returns true if the selector contains the specified category. 84 * @param category The category to check. 85 * @return True if the category is present. 87 public boolean hasControlCategory(String category) { 88 if (category != null) { 92 if (mControlCategories.get(i).equals(category)) { 237 * Adds a {@link MediaControlIntent media control category} to the builder. 239 * @param category The category to add to the set of desired capabilities, such a [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCalculationValue.h | 85 CalculationCategory category() const { return m_category; } function in class:blink::CSSCalcExpressionNode 92 CSSCalcExpressionNode(CalculationCategory category, bool isInteger) 93 : m_category(category) 96 ASSERT(category != CalcOther); 118 CalculationCategory category() const { return m_expression->category(); } function in class:blink::CSSCalcValue
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
RegisterType.java | 43 public final byte category; field in class:RegisterType 46 private RegisterType(byte category, @Nullable TypeProto type) { 47 assert ((category == REFERENCE || category == UNINIT_REF || category == UNINIT_THIS) && type != null) || 48 ((category != REFERENCE && category != UNINIT_REF && category != UNINIT_THIS) && type == null); 50 this.category = category; [all...] |
/external/smack/src/org/jivesoftware/smackx/packet/ |
DiscoverInfo.java | 256 * in order to get the official registry of values for the <i>category</i> and <i>type</i> 262 private String category; field in class:DiscoverInfo.Identity 270 * @param category the entity's category. 274 public Identity(String category, String name) { 275 this.category = category; 281 * 'category' and 'type' are required by 284 * @param category the entity's category (required as per XEP-30) [all...] |
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
ContentActivity.java | 36 int category = extras.getInt("category"); local 39 frag.updateContentAndRecycleBitmap(category, position);
|
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
async_slice.py | 13 def __init__(self, category, name, timestamp, args=None, 17 category, name, timestamp, duration, thread_start, thread_duration,
|
/ndk/sources/android/support/src/musl-locale/ |
intl.c | 16 char *dcgettext(const char *domainname, const char *msgid, int category) 31 char *dcngettext(const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category)
|
/packages/apps/Gallery2/src_pd/com/android/gallery3d/util/ |
UsageStatistics.java | 51 public static void onEvent(String category, String action, String label) {}; 52 public static void onEvent(String category, String action, String label, long optional_value) {};
|