Home
last modified time | relevance | path

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

12

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DCurrencySpacingEnabledModifier.java123 byte affix, in applyCurrencySpacingAffix() argument
128 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) in applyCurrencySpacingAffix()
133 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
134 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix); in applyCurrencySpacingAffix()
138 … int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
139 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix); in applyCurrencySpacingAffix()
143 String spacingString = getInsertString(symbols, affix); in applyCurrencySpacingAffix()
154 …private static UnicodeSet getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) { in getUnicodeSet() argument
159 affix == SUFFIX); in getUnicodeSet()
169 private static String getInsertString(DecimalFormatSymbols symbols, byte affix) { in getInsertString() argument
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DCurrencySpacingEnabledModifier.java125 byte affix, in applyCurrencySpacingAffix() argument
130 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) in applyCurrencySpacingAffix()
135 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
136 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix); in applyCurrencySpacingAffix()
140 … int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
141 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix); in applyCurrencySpacingAffix()
145 String spacingString = getInsertString(symbols, affix); in applyCurrencySpacingAffix()
156 …private static UnicodeSet getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) { in getUnicodeSet() argument
161 affix == SUFFIX); in getUnicodeSet()
171 private static String getInsertString(DecimalFormatSymbols symbols, byte affix) { in getInsertString() argument
[all …]
/external/icu/icu4c/source/i18n/
Dnumber_modifiers.cpp418 EAffix affix, in applyCurrencySpacingAffix() argument
424 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix()
428 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix()
429 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix, status); in applyCurrencySpacingAffix()
433 int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix()
434 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix, status); in applyCurrencySpacingAffix()
438 UnicodeString spacingString = getInsertString(symbols, affix, status); in applyCurrencySpacingAffix()
451 EAffix affix, UErrorCode &status) { in getUnicodeSet() argument
460 affix == SUFFIX, in getUnicodeSet()
472 CurrencySpacingEnabledModifier::getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, in getInsertString() argument
[all …]
Dnumparse_affixes.cpp32 static bool matched(const AffixPatternMatcher* affix, const UnicodeString& patternString) { in matched() argument
33 return (affix == nullptr && patternString.isBogus()) || in matched()
34 (affix != nullptr && affix->getPattern() == patternString); in matched()
Dnumber_modifiers.h221 …atic int32_t applyCurrencySpacingAffix(FormattedStringBuilder &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_impl.h90 RequireAffixValidator affix; member
Dnumparse_impl.cpp196 parser->addMatcher(parser->fLocalValidators.affix = {}); in createParserFromProperties()
Dsmpdtfmt.cpp4157 SimpleDateFormat::compareSimpleAffix(const UnicodeString& affix, in compareSimpleAffix() argument
4161 for (int32_t i=0; i<affix.length(); ) { in compareSimpleAffix()
4162 UChar32 c = affix.char32At(i); in compareSimpleAffix()
4177 if (i == affix.length()) { in compareSimpleAffix()
4180 c = affix.char32At(i); in compareSimpleAffix()
4188 i = skipPatternWhiteSpace(affix, i); in compareSimpleAffix()
4202 i = skipUWhiteSpace(affix, i); in compareSimpleAffix()
/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/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/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/fmtlib/doc/bootstrap/
Dutilities.less53 .affix {
/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/fmtlib/doc/_static/
Dbootstrap.min.js7 …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/icu/icu4c/source/i18n/unicode/
Dsmpdtfmt.h1489 int32_t compareSimpleAffix(const UnicodeString& affix,
/external/icu/icu4c/source/test/testdata/
Dnumberformattestspecification.txt656 test affix setters
671 test more affix setters
1673 test parse with scientific-separator-affix overlap
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/
Dnumberformattestspecification.txt656 test affix setters
671 test more affix setters
1673 test parse with scientific-separator-affix overlap
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/
Dnumberformattestspecification.txt656 test affix setters
671 test more affix setters
1673 test parse with scientific-separator-affix overlap
/external/one-true-awk/testdir/
Dfunstack.ok1062 David Crowe Generating parsers for affix grammars.
Dfunstack.in7719 …title = "Generating parsers for affix grammars. Collection of articles in honor of {George …
7733affix grammars, suggests a top-down scheme for parsing them, based on recursive procedures. This p…
7739 …keywords = "affix grammars; algorithmic language processing; algorithmic languages; automata t…
/external/jline/src/src/test/resources/jline/example/
Denglish.gz1Aarhus 2Aaron 3Ababa 4aback 5abaft 6abandon 7abandoned 8abandoning 9abandonment 10 ...
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt3541 蓋章 < to\-affix\-a\-seal\-\(to\-sth\);
26673 蓋章 > to\-affix\-a\-seal\-\(to\-sth\);

12