/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | TestMessageFormat.java | 430 String formatStr = "At <time> on {1,date}, you made a {2} of {0,number,currency}."; in TestSetLocale() local 445 MessageFormat msg = new MessageFormat(formatStr, Locale.ENGLISH); in TestSetLocale() 460 msg.applyPattern(formatStr); in TestSetLocale() 476 msg.applyPattern(formatStr); in TestSetLocale() 496 String formatStr = "On {0,date}, it began."; in TestFormat() local 499 MessageFormat msg = new MessageFormat(formatStr); in TestFormat() 593 String formatStr = "{0,date},{1},{2,number}"; in TestAdopt() local 595 MessageFormat msg = new MessageFormat(formatStr); in TestAdopt() 596 MessageFormat msgCmp = new MessageFormat(formatStr); in TestAdopt() 660 assertEquals("msgCmp.toPattern()", formatStr, msgCmp.toPattern()); in TestAdopt() [all …]
|
D | NumberFormatTest.java | 1574 final String formatStr = "*x#,###,###,##0.0#;*x(###,###,##0.0#)"; in TestPad() local 1575 expect2(new DecimalFormat(formatStr, US), -10, "xxxxxxxxxx(10.0)"); in TestPad() 1576 expect2(new DecimalFormat(formatStr, US), -1000, "xxxxxxx(1,000.0)"); in TestPad() 1577 expect2(new DecimalFormat(formatStr, US), -1000000, "xxx(1,000,000.0)"); in TestPad() 1578 expect2(new DecimalFormat(formatStr, US), -100.37, "xxxxxxxx(100.37)"); in TestPad() 1579 expect2(new DecimalFormat(formatStr, US), -10456.37, "xxxxx(10,456.37)"); in TestPad() 1580 expect2(new DecimalFormat(formatStr, US), -1120456.37, "xx(1,120,456.37)"); in TestPad() 1581 expect2(new DecimalFormat(formatStr, US), -112045600.37, "(112,045,600.37)"); in TestPad() 1582 expect2(new DecimalFormat(formatStr, US), -1252045600.37, "(1,252,045,600.37)"); in TestPad() 1584 expect2(new DecimalFormat(formatStr, US), 10, "xxxxxxxxxxxx10.0"); in TestPad() [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | TestMessageFormat.java | 426 String formatStr = "At <time> on {1,date}, you made a {2} of {0,number,currency}."; in TestSetLocale() local 441 MessageFormat msg = new MessageFormat(formatStr, Locale.ENGLISH); in TestSetLocale() 456 msg.applyPattern(formatStr); in TestSetLocale() 472 msg.applyPattern(formatStr); in TestSetLocale() 492 String formatStr = "On {0,date}, it began."; in TestFormat() local 495 MessageFormat msg = new MessageFormat(formatStr); in TestFormat() 589 String formatStr = "{0,date},{1},{2,number}"; in TestAdopt() local 591 MessageFormat msg = new MessageFormat(formatStr); in TestAdopt() 592 MessageFormat msgCmp = new MessageFormat(formatStr); in TestAdopt() 656 assertEquals("msgCmp.toPattern()", formatStr, msgCmp.toPattern()); in TestAdopt() [all …]
|
D | NumberFormatTest.java | 1570 final String formatStr = "*x#,###,###,##0.0#;*x(###,###,##0.0#)"; in TestPad() local 1571 expect2(new DecimalFormat(formatStr, US), -10, "xxxxxxxxxx(10.0)"); in TestPad() 1572 expect2(new DecimalFormat(formatStr, US), -1000, "xxxxxxx(1,000.0)"); in TestPad() 1573 expect2(new DecimalFormat(formatStr, US), -1000000, "xxx(1,000,000.0)"); in TestPad() 1574 expect2(new DecimalFormat(formatStr, US), -100.37, "xxxxxxxx(100.37)"); in TestPad() 1575 expect2(new DecimalFormat(formatStr, US), -10456.37, "xxxxx(10,456.37)"); in TestPad() 1576 expect2(new DecimalFormat(formatStr, US), -1120456.37, "xx(1,120,456.37)"); in TestPad() 1577 expect2(new DecimalFormat(formatStr, US), -112045600.37, "(112,045,600.37)"); in TestPad() 1578 expect2(new DecimalFormat(formatStr, US), -1252045600.37, "(1,252,045,600.37)"); in TestPad() 1580 expect2(new DecimalFormat(formatStr, US), 10, "xxxxxxxxxxxx10.0"); in TestPad() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | compactdecimalformat.cpp | 155 …fixSuffix(const char* variant, int32_t log10Value, const UnicodeString& formatStr, UHashtable* res… 769 UnicodeString formatStr(false, formatStrP, resLen); in populatePower10() local 774 variant, log10Value, formatStr, result->unitsByVariant, status); in populatePower10() 813 …const char* variant, int32_t log10Value, const UnicodeString& formatStr, UHashtable* result, UErro… in populatePrefixSuffix() argument 817 int32_t firstIdx = formatStr.indexOf(kZero, UPRV_LENGTHOF(kZero), 0); in populatePrefixSuffix() 823 int32_t lastIdx = formatStr.lastIndexOf(kZero, UPRV_LENGTHOF(kZero), firstIdx); in populatePrefixSuffix() 829 unit->prefix = formatStr.tempSubString(0, firstIdx); in populatePrefixSuffix() 832 unit->suffix = formatStr.tempSubString(lastIdx + 1); in populatePrefixSuffix() 843 while (idx <= lastIdx && formatStr.charAt(idx) == u_0) { in populatePrefixSuffix()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | QuantityFormatter.java | 64 String formatStr = numberFormat.format(number); in format() local 71 return formatter.format(formatStr); in format()
|
D | RelativeDateTimeFormatter.java | 366 StringBuffer formatStr = new StringBuffer(); in format() local 369 numberFormat, pluralRules, formatStr, fieldPosition); in format() 372 result = SimplePatternFormatter.formatCompiledPattern(formatter, formatStr); in format()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | QuantityFormatter.java | 63 String formatStr = numberFormat.format(number); in format() local 70 return formatter.format(formatStr); in format()
|
D | RelativeDateTimeFormatter.java | 406 StringBuffer formatStr = new StringBuffer(); in format() local 409 numberFormat, pluralRules, formatStr, fieldPosition); in format() 412 result = SimplePatternFormatter.formatCompiledPattern(formatter, formatStr); in format()
|
/external/icu/icu4c/source/test/intltest/ |
D | tmsgfmt.cpp | 984 UnicodeString formatStr = "At <time> on {1,date}, you made a {2} of {0,number,currency}."; in testSetLocale() local 1000 MessageFormat msg( formatStr, err); in testSetLocale() 1029 msg.applyPattern( formatStr, err); in testSetLocale() 1069 UnicodeString formatStr = "On {0,date}, it began."; in testFormat() local 1073 MessageFormat msg( formatStr, err); in testFormat() 1191 UnicodeString formatStr("{0,date},{1},{2,number}", ""); in testAdopt() local 1194 MessageFormat msg( formatStr, err); in testAdopt() 1195 MessageFormat msgCmp( formatStr, err); in testAdopt() 1268 assertEquals("msgCmp.toPattern()", formatStr, msgCmp.toPattern(patCmp.remove())); in testAdopt() 1316 assertEquals("msgCmp.toPattern()", formatStr, msgCmp.toPattern(patCmp.remove())); in testAdopt() [all …]
|
D | numfmtst.cpp | 1923 const char *formatStr = "*x#,###,###,##0.0#;*x(###,###,##0.0#)"; in TestPad() local 1924 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1926 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1928 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1930 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1932 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1934 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1936 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1938 expect2(new DecimalFormat(formatStr, US, status), in TestPad() 1941 expect2(new DecimalFormat(formatStr, US, status), in TestPad() [all …]
|
/external/jhead/ |
D | jhead.h | 268 extern char* formatStr(int format);
|
D | gpsinfo.c | 169 …printf("GPS tag %x format %s #components %d componentsize %d bytecount %d", Tag, formatStr(Format)… in ProcessGpsInfo()
|
D | exif.c | 1257 printf("processing component %s format %s", curElement, formatStr(format)); in writeExifTagAndData() 1306 char* formatStr(int format) { in formatStr() function
|
/external/pdfium/xfa/src/fxfa/src/fm2js/ |
D | xfa_fm2jscontext.cpp | 1015 CFX_ByteString formatStr; in DateFmt() local 1016 GetStandardDateFormat(hThis, iStyle, szLocal, formatStr); in DateFmt() 1017 if (formatStr.IsEmpty()) { in DateFmt() 1018 formatStr = ""; in DateFmt() 1020 FXJSE_Value_SetUTF8String(args.GetReturnValue(), formatStr); in DateFmt() 1145 CFX_ByteString formatStr; in LocalDateFmt() local 1146 GetLocalDateFormat(hThis, iStyle, szLocal, formatStr, FALSE); in LocalDateFmt() 1147 if (formatStr.IsEmpty()) { in LocalDateFmt() 1148 formatStr = ""; in LocalDateFmt() 1150 FXJSE_Value_SetUTF8String(args.GetReturnValue(), formatStr); in LocalDateFmt() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/ |
D | vktRenderPassTests.cpp | 4595 const std::string formatStr = de::toString(format); in formatToName() local 4598 DE_ASSERT(formatStr.substr(0, prefix.length()) == prefix); in formatToName() 4600 return de::toLower(formatStr.substr(prefix.length())); in formatToName()
|
/external/robolectric/v1/lib/main/ |
D | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | findbugs.jar | META-INF/
META-INF/MANIFEST.MF
default.xsl
edu/
edu/umd ... |
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.3_r2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-5.1.1_r9-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-5.0.0_r2-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
D | android-all-4.4_r1-robolectric-1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |