HomeSort by relevance Sort by last modified time
    Searched defs:US (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/tools/scan-build-py/libscanbuild/
intercept.py 43 US = chr(0x1f)
176 command = US.join(sys.argv) + US
208 'command': records[4].split(US)[:-1]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/timezone/model/
TimeZoneDataTest.java 53 when(mCountryZonesFinder.lookupCountryTimeZones("US")).thenReturn(countryTimeZones);
54 assertThat(timeZoneData.lookupCountryTimeZones("US").getCountryTimeZones())
64 when(mCountryZonesFinder.lookupAllCountryIsoCodes()).thenReturn(Arrays.asList("us", "GB"));
66 assertThat(timeZoneData.getRegionIds()).containsExactly("US", "GB");
73 CountryTimeZones US = mock(CountryTimeZones.class);
74 when(US.getCountryIso()).thenReturn("us");
75 when(US.getTimeZoneMappings()).thenReturn(Arrays.asList(
85 .thenReturn(Arrays.asList(US, GB));
87 .containsExactly("US", "GB")
    [all...]
  /packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/timezone/
BaseTimeZoneAdapterTest.java 39 TestItem US = new TestItem("United States");
45 items.add(US);
52 assertSearch(adapter, "Unit", US, UK);
93 super(items, position -> {}, Locale.US, false /* showItemSummary */,
  /packages/apps/TV/common/src/com/android/tv/common/util/
PostalCodeUtils.java 37 // US zip code format: 99999
50 REGION_PATTERN.put(Locale.US.getCountry(), Pattern.compile(POSTCODE_REGEX_US));
54 REGION_MAX_LENGTH.put(Locale.US.getCountry(), 5);
  /external/icu/icu4c/source/test/intltest/
plurults.cpp 60 class US {
64 US(const UnicodeString &us) {
65 int32_t bufLen = us.extract((int32_t)0, us.length(), (char *)NULL, (uint32_t)0) + 1;
67 us.extract(0, us.length(), buf, bufLen); };
69 ~US() { uprv_free(buf);};
429 // std::cout << " uk " << US(resultKeyword).cstr() << " " << values[j] << std::endl;
433 __FILE__, __LINE__, locales[i].getName(), US(*keyword).cstr(), values[j], values[j], US(resultKeyword).cstr())
    [all...]
svccoll.cpp 39 const Locale& US = Locale::getUS();
40 const Locale US_FOO("en", "US", "FOO");
45 Collator* uscol = Collator::createInstance(US, status);
55 URegistryKey key = Collator::registerInstance(frcol, US, status);
68 if (U_SUCCESS(status) && loc != US_FOO && loc != US) {
73 if (loc != US) {
77 if (loc != US) {
86 ncol = Collator::createInstance(US, status);
513 // can't get pesky operator+(const US&, foo) to cooperate; use toString
  /external/guava/guava/src/com/google/common/base/
Ascii.java 353 * and US is least inclusive. (The content and length of a File, Group,
364 * and US is least inclusive. (The content and length of a File, Group,
375 * and US is least inclusive. (The content and length of a File, Group,
386 * and US is least inclusive. (The content and length of a File, Group,
391 public static final byte US = 31;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
BigNumberFormatTest.java 38 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US);
39 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US);
40 DecimalFormat fmt2 = new DecimalFormat("0.###E+0", US);
54 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US);
55 DecimalFormat f = new DecimalFormat("#,##,###", US);
103 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US);
104 DecimalFormat fmt = new DecimalFormat("#", US);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
BigNumberFormatTest.java 35 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US);
36 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US);
37 DecimalFormat fmt2 = new DecimalFormat("0.###E+0", US);
51 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US);
52 DecimalFormat f = new DecimalFormat("#,##,###", US);
100 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US);
101 DecimalFormat fmt = new DecimalFormat("#", US);
    [all...]
  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
RegionCode.java 56 static final String US = "US";
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCChecker.cpp 367 NewSense &US = I.second;
369 if (!hasValidNewValueDef(US, NewDefs[R])) {
  /external/python/cpython2/Lib/curses/
ascii.py 36 US = 0x1f # ^_
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /external/python/cpython3/Lib/curses/
ascii.py 36 US = 0x1f # ^_
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /external/walt/pywalt/pywalt/
walt.py 58 US = 1e-6 # US = 10^-6 seconds
206 t = float(tstamp) * US # WALT sends timestamps in microseconds
244 t_sleep = US * random.randint(70, 700)
262 * 12902345 is timestamp in us since zeroed
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
StringUtilsTests.java 26 private static final Locale US = Locale.US;
38 assert_toTitleCaseOfKeyLabel(US, null, null);
39 assert_toTitleCaseOfKeyLabel(US, "", "");
40 assert_toTitleCaseOfKeyLabel(US, "aeiou", "AEIOU");
55 assert_toTitleCaseOfKeyLabel(US,
120 assert_toTitleCaseOfKeyCode(US, Constants.CODE_ENTER, Constants.CODE_ENTER);
121 assert_toTitleCaseOfKeyCode(US, Constants.CODE_SPACE, Constants.CODE_SPACE);
122 assert_toTitleCaseOfKeyCode(US, Constants.CODE_COMMA, Constants.CODE_COMMA);
127 assert_toTitleCaseOfKeyCode(US, 0x0069, 0x0049); // i ->
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 36 US = 0x1f # ^_
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
ascii.py 36 US = 0x1f # ^_
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 36 US = 0x1f # ^_
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 36 US = 0x1f # ^_
44 "CAN", "EM", "SUB", "ESC", "FS", "GS", "RS", "US",
  /external/clang/tools/scan-build-py/libear/
ear.c 411 static int const US = 0x1f;
440 fprintf(fd, "%s%c", argv[it], US);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleData.java 333 public static final MeasurementSystem US = new MeasurementSystem();
354 case 1: return MeasurementSystem.US;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleData.java 342 public static final MeasurementSystem US = new MeasurementSystem();
365 case 1: return MeasurementSystem.US;
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 40 get(Locale.US);
  /cts/tests/tests/os/src/android/os/cts/
LocaleListTest.java 45 final LocaleList ll = new LocaleList(Locale.US);
49 assertEquals(Locale.US, ll.get(0));
55 final Locale[] la = {enPH, Locale.US};
61 assertEquals(Locale.US, ll.get(1));
81 final Locale[] la = {Locale.US, null};
92 final Locale[] la = {Locale.US, Locale.US};
104 assertEquals(-1, empty.indexOf(Locale.US));
106 final LocaleList oneMember = new LocaleList(Locale.US);
107 assertEquals(0, oneMember.indexOf(Locale.US));
    [all...]
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/loaders/
LoaderDicom.java 83 static final short US = vr("US");
248 } else if (e.mVR == US) {

Completed in 734 milliseconds

1 2 3 4 5 6 7 8