/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | CurrencySpacingEnabledModifier.java | 123 byte affix, in applyCurrencySpacingAffix() argument 128 Object 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/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | CurrencySpacingEnabledModifier.java | 121 byte affix, in applyCurrencySpacingAffix() argument 126 Object affixField = (affix == PREFIX) ? output.fieldAt(index - 1) in applyCurrencySpacingAffix() 131 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix() 132 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix); in applyCurrencySpacingAffix() 136 … int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix() 137 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix); in applyCurrencySpacingAffix() 141 String spacingString = getInsertString(symbols, affix); in applyCurrencySpacingAffix() 152 …private static UnicodeSet getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) { in getUnicodeSet() argument 157 affix == SUFFIX); in getUnicodeSet() 167 private static String getInsertString(DecimalFormatSymbols symbols, byte affix) { in getInsertString() argument [all …]
|
/external/icu/icu4c/source/i18n/ |
D | number_modifiers.cpp | 426 EAffix affix, in applyCurrencySpacingAffix() argument 432 Field affixField = (affix == PREFIX) ? output.fieldAt(index - 1) : output.fieldAt(index); in applyCurrencySpacingAffix() 436 int affixCp = (affix == PREFIX) ? output.codePointBefore(index) : output.codePointAt(index); in applyCurrencySpacingAffix() 437 UnicodeSet affixUniset = getUnicodeSet(symbols, IN_CURRENCY, affix, status); in applyCurrencySpacingAffix() 441 int numberCp = (affix == PREFIX) ? output.codePointAt(index) : output.codePointBefore(index); in applyCurrencySpacingAffix() 442 UnicodeSet numberUniset = getUnicodeSet(symbols, IN_NUMBER, affix, status); in applyCurrencySpacingAffix() 446 UnicodeString spacingString = getInsertString(symbols, affix, status); in applyCurrencySpacingAffix() 459 EAffix affix, UErrorCode &status) { in getUnicodeSet() argument 468 affix == SUFFIX, in getUnicodeSet() 480 CurrencySpacingEnabledModifier::getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, in getInsertString() argument [all …]
|
D | numparse_affixes.cpp | 32 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()
|
D | number_modifiers.h | 221 …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);
|
D | numparse_impl.h | 90 RequireAffixValidator affix; member
|
D | numparse_impl.cpp | 187 parser->addMatcher(parser->fLocalValidators.affix = {}); in createParserFromProperties()
|
D | smpdtfmt.cpp | 4225 SimpleDateFormat::compareSimpleAffix(const UnicodeString& affix, in compareSimpleAffix() argument 4229 for (int32_t i=0; i<affix.length(); ) { in compareSimpleAffix() 4230 UChar32 c = affix.char32At(i); in compareSimpleAffix() 4245 if (i == affix.length()) { in compareSimpleAffix() 4248 c = affix.char32At(i); in compareSimpleAffix() 4256 i = skipPatternWhiteSpace(affix, i); in compareSimpleAffix() 4270 i = skipUWhiteSpace(affix, i); in compareSimpleAffix()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/parse/ |
D | AffixMatcher.java | 248 static boolean matched(AffixPatternMatcher affix, String patternString) { in matched() argument 249 return (affix == null && patternString == null) in matched() 250 || (affix != null && affix.getPattern().equals(patternString)); in matched()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
D | AffixMatcher.java | 246 static boolean matched(AffixPatternMatcher affix, String patternString) { in matched() argument 247 return (affix == null && patternString == null) in matched() 248 || (affix != null && affix.getPattern().equals(patternString)); in matched()
|
/external/icu/libicu/cts_headers/ |
D | number_modifiers.h | 221 …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);
|
D | numparse_impl.h | 90 RequireAffixValidator affix; member
|
/external/fmtlib/doc/bootstrap/ |
D | utilities.less | 53 .affix {
|
/external/selinux/mcstrans/src/ |
D | mcstrans.c | 63 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/ |
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/icu/icu4c/source/i18n/unicode/ |
D | smpdtfmt.h | 1490 int32_t compareSimpleAffix(const UnicodeString& affix,
|
/external/icu/libicu/cts_headers/unicode/ |
D | smpdtfmt.h | 1490 int32_t compareSimpleAffix(const UnicodeString& affix,
|
/external/fmtlib/doc/_static/ |
D | bootstrap.min.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/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
D | numberformattestspecification.txt | 656 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/ |
D | numberformattestspecification.txt | 656 test affix setters 671 test more affix setters 1673 test parse with scientific-separator-affix overlap
|
/external/icu/icu4c/source/test/testdata/ |
D | numberformattestspecification.txt | 656 test affix setters 671 test more affix setters 1673 test parse with scientific-separator-affix overlap
|
/external/one-true-awk/testdir/ |
D | funstack.ok | 1062 David Crowe Generating parsers for affix grammars.
|
D | funstack.in | 7719 …title = "Generating parsers for affix grammars. Collection of articles in honor of {George … 7733 …affix 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…
|