/external/icu/icu4c/source/i18n/ |
D | decimalformatpattern.cpp | 188 UnicodeString* affix = &prefix; in applyPatternWithoutExpandAffix() local 314 affix = &suffix; in applyPatternWithoutExpandAffix() 343 affix->append(kQuote); // Encode currency in applyPatternWithoutExpandAffix() 348 affix->append(kCurrencySign); in applyPatternWithoutExpandAffix() 352 affix->append(kCurrencySign); in applyPatternWithoutExpandAffix() 369 affix->append(kQuote); // Encode quote in applyPatternWithoutExpandAffix() 398 affix->append(kQuote); // Encode percent/perMill in applyPatternWithoutExpandAffix() 399 affix->append(kPatternPercent); // Use unlocalized pattern char in applyPatternWithoutExpandAffix() 412 affix->append(kQuote); // Encode percent/perMill in applyPatternWithoutExpandAffix() 413 affix->append(kPatternPerMill); // Use unlocalized pattern char in applyPatternWithoutExpandAffix() [all …]
|
D | digitaffixesandpadding.cpp | 68 const DigitAffix *affix, in formatAffix() argument 71 if (affix) { in formatAffix() 72 affix->format(handler, appendTo); in formatAffix() 78 countAffixChar32(const DigitAffix *affix) { in countAffixChar32() argument 79 if (affix) { in countAffixChar32() 80 return affix->countChar32(); in countAffixChar32()
|
D | decimfmt.cpp | 1869 UnicodeString& DecimalFormat::trimMarksFromAffix(const UnicodeString& affix, UnicodeString& trimmed… in trimMarksFromAffix() argument 1871 int32_t affixLen = affix.length(); in trimMarksFromAffix() 1875 UChar c = affix.charAt(affixPos); in trimMarksFromAffix() 1885 return (trimLen > 0)? trimmedAffix.setTo(trimBuf, trimLen): trimmedAffix.setTo(affix); in trimMarksFromAffix() 1898 int32_t DecimalFormat::compareSimpleAffix(const UnicodeString& affix, in compareSimpleAffix() argument 1906 trimMarksFromAffix(affix, trimmedAffix); in compareSimpleAffix() 2131 const UnicodeString* affix = NULL; in compareComplexAffix() local 2184 affix = &fImpl->getConstSymbol(DecimalFormatSymbols::kPercentSymbol); in compareComplexAffix() 2187 affix = &fImpl->getConstSymbol(DecimalFormatSymbols::kPerMillSymbol); in compareComplexAffix() 2190 affix = &fImpl->getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol); in compareComplexAffix() [all …]
|
D | smpdtfmt.cpp | 3717 SimpleDateFormat::compareSimpleAffix(const UnicodeString& affix, in compareSimpleAffix() argument 3721 for (int32_t i=0; i<affix.length(); ) { in compareSimpleAffix() 3722 UChar32 c = affix.char32At(i); in compareSimpleAffix() 3737 if (i == affix.length()) { in compareSimpleAffix() 3740 c = affix.char32At(i); in compareSimpleAffix() 3748 i = skipPatternWhiteSpace(affix, i); in compareSimpleAffix() 3762 i = skipUWhiteSpace(affix, i); in compareSimpleAffix()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DecimalFormat.java | 2125 for (AffixForCurrency affix : affixPatternsForCurrency) { 2130 affix.getNegPrefix(), affix.getNegSuffix(), 2131 affix.getPosPrefix(), affix.getPosSuffix(), 2132 true, affix.getPatternType()); 2882 private static String trimMarksFromAffix(String affix) { in trimMarksFromAffix() argument 2885 for (; idx < affix.length(); idx++) { in trimMarksFromAffix() 2886 if (isBidiMark(affix.charAt(idx))) { in trimMarksFromAffix() 2892 return affix; in trimMarksFromAffix() 2896 buf.append(affix, 0, idx); in trimMarksFromAffix() 2898 for (; idx < affix.length(); idx++) { in trimMarksFromAffix() [all …]
|
D | MeasureFormat.java | 441 …private void appendReplacingCurrency(String affix, Currency unit, StandardPlural resolvedPlural, S… in appendReplacingCurrency() argument 443 int pos = affix.indexOf(replacement); in appendReplacingCurrency() 446 pos = affix.indexOf(replacement); in appendReplacingCurrency() 449 result.append(affix); in appendReplacingCurrency() 452 result.append(affix.substring(0,pos)); in appendReplacingCurrency() 462 result.append(affix.substring(pos+replacement.length())); in appendReplacingCurrency()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DecimalFormat.java | 2139 for (AffixForCurrency affix : affixPatternsForCurrency) { 2144 affix.getNegPrefix(), affix.getNegSuffix(), 2145 affix.getPosPrefix(), affix.getPosSuffix(), 2146 true, affix.getPatternType()); 2896 private static String trimMarksFromAffix(String affix) { in trimMarksFromAffix() argument 2899 for (; idx < affix.length(); idx++) { in trimMarksFromAffix() 2900 if (isBidiMark(affix.charAt(idx))) { in trimMarksFromAffix() 2906 return affix; in trimMarksFromAffix() 2910 buf.append(affix, 0, idx); in trimMarksFromAffix() 2912 for (; idx < affix.length(); idx++) { in trimMarksFromAffix() [all …]
|
D | MeasureFormat.java | 458 …private void appendReplacingCurrency(String affix, Currency unit, StandardPlural resolvedPlural, S… in appendReplacingCurrency() argument 460 int pos = affix.indexOf(replacement); in appendReplacingCurrency() 463 pos = affix.indexOf(replacement); in appendReplacingCurrency() 466 result.append(affix); in appendReplacingCurrency() 469 result.append(affix.substring(0,pos)); in appendReplacingCurrency() 479 result.append(affix.substring(pos+replacement.length())); in appendReplacingCurrency()
|
/external/icu/icu4c/source/test/intltest/ |
D | numberformat2test.cpp | 128 const DigitAffix &affix, 1263 DigitAffix affix; in TestDigitAffix() local 1265 affix.append("foo"); in TestDigitAffix() 1266 affix.append("--", UNUM_SIGN_FIELD); in TestDigitAffix() 1267 affix.append("%", UNUM_PERCENT_FIELD); in TestDigitAffix() 1272 verifyAffix("foo--%", affix, expectedAttributes); in TestDigitAffix() 1275 affix.remove(); in TestDigitAffix() 1276 affix.append("USD", UNUM_CURRENCY_FIELD); in TestDigitAffix() 1277 affix.append(" "); in TestDigitAffix() 1281 verifyAffix("USD ", affix, expectedAttributes); in TestDigitAffix() [all …]
|
/external/okhttp/website/static/ |
D | bootstrap.min.js | 6 …affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,thi… function
|
D | app.css | 100 .content-nav.affix {
|
D | bootstrap-combined.min.css | 9 …oat:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}
|
/external/selinux/policycoreutils/mcstrans/src/ |
D | mcstrans.c | 63 typedef struct affix { struct 65 struct affix *next; argument 699 affix_t *affix = calloc(1, sizeof(affix_t)); in append() local 700 if (!affix) { in append() 703 affix->text = strdup(val); in append() 704 if (!affix->text) in append() 708 *affixes = affix; in append()
|
/external/icu/icu4c/source/i18n/unicode/ |
D | decimfmt.h | 2146 … static UnicodeString& trimMarksFromAffix(const UnicodeString& affix, UnicodeString& trimmedAffix); 2150 int32_t compareSimpleAffix(const UnicodeString& affix,
|
D | smpdtfmt.h | 1456 int32_t compareSimpleAffix(const UnicodeString& affix,
|
/external/ImageMagick/www/js/ |
D | magick.js | 7 …et({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=fun…
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/ |
D | en-GB_klex.pkb | 224 aerospaceAafar#&=!(Iaffix0&=!*BJaffix)!H=*BJaffixes
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
D | numberformattestspecification.txt | 479 test affix setters 494 test more affix setters
|
/external/icu/icu4c/source/test/testdata/ |
D | numberformattestspecification.txt | 479 test affix setters 494 test more affix setters
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/ |
D | numberformattestspecification.txt | 479 test affix setters 494 test more affix setters
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/ |
D | en-US_klex.pkb | 85 …affecte'>!;CLaffects e'>!;CLKaffix0'>!+CKaffix)!I>…
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/ |
D | en-US_lexpos.utf | 2029 N "affix" "'qfIks" 4275 V "affix" "@f'Iks"
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-GB/ |
D | en-GB_lexpos.utf | 2291 N "affix" "'qfIks" 4641 V "affix" "@f'Iks"
|
/external/ImageMagick/www/css/ |
D | magick.css | 5 …one;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-m…
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 3539 蓋章 < to\-affix\-a\-seal\-\(to\-sth\); 26671 蓋章 > to\-affix\-a\-seal\-\(to\-sth\);
|