Home
last modified time | relevance | path

Searched refs:affix (Results 1 – 25 of 25) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DCurrencySpacingEnabledModifier.java120 byte affix, in applyCurrencySpacingAffix() argument
125 NumberFormat.Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) in applyCurrencySpacingAffix()
130 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
131 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix); in applyCurrencySpacingAffix()
135 … int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
136 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix); in applyCurrencySpacingAffix()
140 String spacingString = getInsertString(symbols, affix); in applyCurrencySpacingAffix()
151 …private static UnicodeSet getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) { in getUnicodeSet() argument
156 affix == SUFFIX); in getUnicodeSet()
166 private static String getInsertString(DecimalFormatSymbols symbols, byte affix) { in getInsertString() argument
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DCurrencySpacingEnabledModifier.java122 byte affix, in applyCurrencySpacingAffix() argument
127 NumberFormat.Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) in applyCurrencySpacingAffix()
132 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
133 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix); in applyCurrencySpacingAffix()
137 … int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
138 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix); in applyCurrencySpacingAffix()
142 String spacingString = getInsertString(symbols, affix); in applyCurrencySpacingAffix()
153 …private static UnicodeSet getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) { in getUnicodeSet() argument
158 affix == SUFFIX); in getUnicodeSet()
168 private static String getInsertString(DecimalFormatSymbols symbols, byte affix) { in getInsertString() argument
[all …]
/external/icu/icu4c/source/i18n/
Dnumber_modifiers.cpp420 EAffix affix, in applyCurrencySpacingAffix() argument
426 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
430 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
431 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix, status); in applyCurrencySpacingAffix()
435 int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
436 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix, status); in applyCurrencySpacingAffix()
440 UnicodeString spacingString = getInsertString(symbols, affix, status); in applyCurrencySpacingAffix()
453 EAffix affix, UErrorCode &status) { in getUnicodeSet() argument
462 affix == SUFFIX, in getUnicodeSet()
474 CurrencySpacingEnabledModifier::getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, in getInsertString() argument
[all …]
Dnumber_modifiers.h221 … static int32_t applyCurrencySpacingAffix(NumberStringBuilder &output, int32_t index, EAffix affix,
225 getUnicodeSet(const DecimalFormatSymbols &symbols, EPosition position, EAffix affix,
229 getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, UErrorCode &status);
Dnumparse_affixes.cpp31 static bool matched(const AffixPatternMatcher* affix, const UnicodeString& patternString) { in matched() argument
32 return (affix == nullptr && patternString.isBogus()) || in matched()
33 (affix != nullptr && affix->getPattern() == patternString); in matched()
Dnumparse_impl.h89 RequireAffixValidator affix; member
Dsmpdtfmt.cpp4104 SimpleDateFormat::compareSimpleAffix(const UnicodeString& affix, in compareSimpleAffix() argument
4108 for (int32_t i=0; i<affix.length(); ) { in compareSimpleAffix()
4109 UChar32 c = affix.char32At(i); in compareSimpleAffix()
4124 if (i == affix.length()) { in compareSimpleAffix()
4127 c = affix.char32At(i); in compareSimpleAffix()
4135 i = skipPatternWhiteSpace(affix, i); in compareSimpleAffix()
4149 i = skipUWhiteSpace(affix, i); in compareSimpleAffix()
Dnumparse_impl.cpp196 parser->addMatcher(parser->fLocalValidators.affix = {}); in createParserFromProperties()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDecimalFormat_ICU58_Android.java2142 for (AffixForCurrency affix : affixPatternsForCurrency) {
2147 affix.getNegPrefix(), affix.getNegSuffix(),
2148 affix.getPosPrefix(), affix.getPosSuffix(),
2149 true, affix.getPatternType());
2921 private static String trimMarksFromAffix(String affix) { in trimMarksFromAffix() argument
2924 for (; idx < affix.length(); idx++) { in trimMarksFromAffix()
2925 if (isBidiMark(affix.charAt(idx))) { in trimMarksFromAffix()
2931 return affix; in trimMarksFromAffix()
2935 buf.append(affix, 0, idx); in trimMarksFromAffix()
2937 for (; idx < affix.length(); idx++) { in trimMarksFromAffix()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDecimalFormat_ICU58_Android.java2130 for (AffixForCurrency affix : affixPatternsForCurrency) {
2135 affix.getNegPrefix(), affix.getNegSuffix(),
2136 affix.getPosPrefix(), affix.getPosSuffix(),
2137 true, affix.getPatternType());
2909 private static String trimMarksFromAffix(String affix) { in trimMarksFromAffix() argument
2912 for (; idx < affix.length(); idx++) { in trimMarksFromAffix()
2913 if (isBidiMark(affix.charAt(idx))) { in trimMarksFromAffix()
2919 return affix; in trimMarksFromAffix()
2923 buf.append(affix, 0, idx); in trimMarksFromAffix()
2925 for (; idx < affix.length(); idx++) { in trimMarksFromAffix()
[all …]
/external/icu/icu4c/source/test/intltest/
Dnumberformat2test.cpp130 const DigitAffix &affix,
1265 DigitAffix affix; in TestDigitAffix() local
1267 affix.append("foo"); in TestDigitAffix()
1268 affix.append("--", UNUM_SIGN_FIELD); in TestDigitAffix()
1269 affix.append("%", UNUM_PERCENT_FIELD); in TestDigitAffix()
1274 verifyAffix("foo--%", affix, expectedAttributes); in TestDigitAffix()
1277 affix.remove(); in TestDigitAffix()
1278 affix.append("USD", UNUM_CURRENCY_FIELD); in TestDigitAffix()
1279 affix.append(" "); in TestDigitAffix()
1283 verifyAffix("USD ", affix, expectedAttributes); in TestDigitAffix()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
DAffixMatcher.java240 static boolean matched(AffixPatternMatcher affix, String patternString) { in matched() argument
241 return (affix == null && patternString == null) in matched()
242 || (affix != null && affix.getPattern().equals(patternString)); in matched()
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/
DAffixMatcher.java242 static boolean matched(AffixPatternMatcher affix, String patternString) { in matched() argument
243 return (affix == null && patternString == null) in matched()
244 || (affix != null && affix.getPattern().equals(patternString)); in matched()
/external/selinux/mcstrans/src/
Dmcstrans.c63 typedef struct affix { struct
65 struct affix *next; argument
697 affix_t *affix = calloc(1, sizeof(affix_t)); in append() local
698 if (!affix) { in append()
701 affix->text = strdup(val); in append()
702 if (!affix->text) in append()
706 *affixes = affix; in append()
711 free(affix); in append()
/external/okhttp/website/static/
Dbootstrap.min.js6affix.defaults,n),this.$window=e(window).on("scroll.affix.data-api",e.proxy(this.checkPosition,thi… function
Dapp.css100 .content-nav.affix {
Dbootstrap-combined.min.css9 …oat:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}
/external/icu/icu4c/source/i18n/unicode/
Dsmpdtfmt.h1485 int32_t compareSimpleAffix(const UnicodeString& affix,
/external/icu/icu4c/source/test/testdata/
Dnumberformattestspecification.txt637 test affix setters
652 test more affix setters
1672 test parse with scientific-separator-affix overlap
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/
Dnumberformattestspecification.txt637 test affix setters
652 test more affix setters
1672 test parse with scientific-separator-affix overlap
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/
Dnumberformattestspecification.txt637 test affix setters
652 test more affix setters
1672 test parse with scientific-separator-affix overlap
/external/jline/src/src/test/resources/jline/example/
Denglish.gz
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt3541 蓋章 < to\-affix\-a\-seal\-\(to\-sth\);
26673 蓋章 > to\-affix\-a\-seal\-\(to\-sth\);
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Dinternal_raw_IPA.txt2488 affix %30376 əfˈɪks, ˈæfɪks
Dinternal_raw_IPA-old.txt2963 affix %19089 əfˈɪks, ˈæfɪks