HomeSort by relevance Sort by last modified time
    Searched full:dollar (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
EnumHashBiMapTest.java 36 private enum Currency { DOLLAR, PESO, FRANC }
45 bimap.put(Currency.DOLLAR, "dollar");
46 assertEquals("dollar", bimap.get(Currency.DOLLAR));
47 assertEquals(Currency.DOLLAR, bimap.inverse().get("dollar"));
53 Currency.DOLLAR, "dollar",
58 assertEquals("dollar", bimap.get(Currency.DOLLAR))
    [all...]
EnumBiMapTest.java 39 private enum Currency { DOLLAR, FRANC, PESO }
48 bimap.put(Currency.DOLLAR, Country.CANADA);
49 assertEquals(Country.CANADA, bimap.get(Currency.DOLLAR));
50 assertEquals(Currency.DOLLAR, bimap.inverse().get(Country.CANADA));
56 Currency.DOLLAR, Country.CANADA,
60 assertEquals(Country.CANADA, bimap.get(Currency.DOLLAR));
61 assertEquals(Currency.DOLLAR, bimap.inverse().get(Country.CANADA));
85 bimap1.put(Currency.DOLLAR, Country.CANADA);
88 assertEquals(Country.CANADA, bimap2.get(Currency.DOLLAR));
118 Currency.DOLLAR, Country.CANADA
    [all...]
HashBiMapTest.java 42 bimap.put("canada", "dollar");
43 assertEquals("dollar", bimap.get("canada"));
44 assertEquals("canada", bimap.inverse().get("dollar"));
50 "canada", "dollar",
54 assertEquals("dollar", bimap.get("canada"));
55 assertEquals("canada", bimap.inverse().get("dollar"));
  /ndk/sources/host-tools/make-3.81/config/
printf-posix.m4 22 /* The string "%2$d %1$d", with dollar characters protected from the shell's
23 dollar expansion (possibly an autoconf bug). */
  /external/qemu/pc-bios/keymaps/
en-us 7 dollar 0x05 shift
et 22 dollar 0x5 altgr
fo 22 dollar 0x5 altgr
fr-ca 42 dollar 0x5 shift
lt 13 dollar 0x05 shift
nl 11 dollar 0x05 shift
sv 22 dollar 0x5 altgr
fr-be 19 dollar 0x05 shift altgr
77 dollar 0x1b
pt-br 13 dollar 0x05 shift
ar 7 dollar 0x05 shift
es 12 dollar 0x05 shift
hu 35 dollar 0x27 altgr
ja 11 dollar 0x05 shift
mk 9 dollar 0x05 shift
  /external/icu4c/test/cintltst/
ccurrtst.c 48 { 0x0024, 0x0000}, /*0024; L; [14 3A, 03, 03] # [082D.0020.0002] # DOLLAR SIGN*/
49 { 0xFF04, 0x0000}, /*FF04; L; [14 3A, 03, 05] # [082D.0020.0003] # FULLWIDTH DOLLAR SIGN*/
50 { 0xFE69, 0x0000}, /*FE69; L; [14 3A, 03, 1D] # [082D.0020.000F] # SMALL DOLLAR SIGN*/
86 { 0x0024, 0x0000}, /* dollar */
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
Makefile.am 21 appquit enable sep inclib 8bit newjis xabcx dollar noeol noeolw \
51 dollar.good dollar.inp dollar.sed \
  /external/llvm/lib/MC/
MCWin64EH.cpp 211 size_t dollar = name.find('$'); local
213 if (dollar == StringRef::npos && dot == StringRef::npos)
216 return name.substr(dollar);
217 if (dollar == StringRef::npos || dot < dollar)
219 return name.substr(dollar);
  /external/icu4c/test/intltest/
currcoll.cpp 51 { 0x0024, 0x0000}, /*0024; L; [14 3A, 03, 03] # [082D.0020.0002] # DOLLAR SIGN*/
52 { 0xFF04, 0x0000}, /*FF04; L; [14 3A, 03, 05] # [082D.0020.0003] # FULLWIDTH DOLLAR SIGN*/
53 { 0xFE69, 0x0000}, /*FE69; L; [14 3A, 03, 1D] # [082D.0020.000F] # SMALL DOLLAR SIGN*/
  /libcore/luni/src/test/java/tests/api/java/util/
CurrencyTest.java 212 String[] dollar = new String[] {"USD", "$", "US$", "$US"}; local
265 for (j = 0; j < dollar.length; j++) {
266 if (currUS.getSymbol(loc1[i]).equals(dollar[j])) {
273 + " the Dollar currency returned "
276 + Arrays.toString(dollar), flag);
289 + " the Canadian Dollar currency returned "
  /external/webkit/Source/WebCore/wml/
WMLVariables.cpp 194 // Transform adjacent dollar signs into a single dollar sign as string literal
  /libcore/luni/src/main/java/java/util/
Currency.java 169 * For instance, the default number of fraction digits for the US dollar is 2 because there are
170 * 100 US cents in a US dollar. For the Japanese Yen, the number is 0 because coins smaller

Completed in 266 milliseconds

1 2 3 4 5 6 7 8 91011>>