Home
last modified time | relevance | path

Searched refs:symbols (Results 1 - 25 of 531) sorted by relevance

12345678910>>...22

/third_party/mesa3d/src/compiler/glsl/
H A Dbuiltin_types.cpp269 add_type(glsl_symbol_table *symbols, const glsl_type *const type) in add_type() argument
271 symbols->add_type(type->name, type); in add_type()
280 struct glsl_symbol_table *symbols = state->symbols; in _mesa_glsl_initialize_types() local
285 add_type(symbols, t->type); in _mesa_glsl_initialize_types()
294 add_type(symbols, deprecated_types[i]); in _mesa_glsl_initialize_types()
305 add_type(symbols, glsl_type::samplerCubeArray_type); in _mesa_glsl_initialize_types()
306 add_type(symbols, glsl_type::samplerCubeArrayShadow_type); in _mesa_glsl_initialize_types()
307 add_type(symbols, glsl_type::isamplerCubeArray_type); in _mesa_glsl_initialize_types()
308 add_type(symbols, glsl_typ in _mesa_glsl_initialize_types()
[all...]
/third_party/skia/src/sksl/
H A DSkSLThreadContext.cpp72 SkSL::SymbolTable& symbols = *fCompiler->fSymbolTable; in setupSymbolTable() local
77 symbols.addWithoutOwnership(ef.get()); in setupSymbolTable()
85 symbols.addAlias("mat2x2", context.fTypes.fFloat2x2.get()); in setupSymbolTable()
86 symbols.addAlias("mat2x3", context.fTypes.fFloat2x3.get()); in setupSymbolTable()
87 symbols.addAlias("mat2x4", context.fTypes.fFloat2x4.get()); in setupSymbolTable()
88 symbols.addAlias("mat3x2", context.fTypes.fFloat3x2.get()); in setupSymbolTable()
89 symbols.addAlias("mat3x3", context.fTypes.fFloat3x3.get()); in setupSymbolTable()
90 symbols.addAlias("mat3x4", context.fTypes.fFloat3x4.get()); in setupSymbolTable()
91 symbols.addAlias("mat4x2", context.fTypes.fFloat4x2.get()); in setupSymbolTable()
92 symbols in setupSymbolTable()
[all...]
/third_party/openssl/test/
H A Dshlibloadtest.c69 } symbols[5]; in test_lib() local
110 if (!sd_sym(cryptolib, "OPENSSL_init_crypto", &symbols[0].sym)) { in test_lib()
114 myOPENSSL_init_crypto = (OPENSSL_init_crypto_t)symbols[0].func; in test_lib()
124 if (!sd_sym(ssllib, "TLS_method", &symbols[0].sym) in test_lib()
125 || !sd_sym(ssllib, "SSL_CTX_new", &symbols[1].sym) in test_lib()
126 || !sd_sym(ssllib, "SSL_CTX_free", &symbols[2].sym)) { in test_lib()
127 fprintf(stderr, "Failed to load libssl symbols\n"); in test_lib()
130 myTLS_method = (TLS_method_t)symbols[0].func; in test_lib()
131 mySSL_CTX_new = (SSL_CTX_new_t)symbols[1].func; in test_lib()
132 mySSL_CTX_free = (SSL_CTX_free_t)symbols[ in test_lib()
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DCurrencySpacingEnabledModifier.java36 DecimalFormatSymbols symbols) { in CurrencySpacingEnabledModifier()
43 UnicodeSet prefixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, PREFIX); in CurrencySpacingEnabledModifier()
45 afterPrefixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, PREFIX); in CurrencySpacingEnabledModifier()
47 afterPrefixInsert = getInsertString(symbols, PREFIX); in CurrencySpacingEnabledModifier()
58 UnicodeSet suffixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, SUFFIX); in CurrencySpacingEnabledModifier()
60 beforeSuffixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, SUFFIX); in CurrencySpacingEnabledModifier()
62 beforeSuffixInsert = getInsertString(symbols, SUFFIX); in CurrencySpacingEnabledModifier()
103 DecimalFormatSymbols symbols) { in applyCurrencySpacing()
109 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols); in applyCurrencySpacing()
112 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols); in applyCurrencySpacing()
31 CurrencySpacingEnabledModifier( FormattedStringBuilder prefix, FormattedStringBuilder suffix, boolean overwrite, boolean strong, DecimalFormatSymbols symbols) CurrencySpacingEnabledModifier() argument
97 applyCurrencySpacing( FormattedStringBuilder output, int prefixStart, int prefixLen, int suffixStart, int suffixLen, DecimalFormatSymbols symbols) applyCurrencySpacing() argument
118 applyCurrencySpacingAffix( FormattedStringBuilder output, int index, byte affix, DecimalFormatSymbols symbols) applyCurrencySpacingAffix() argument
152 getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) getUnicodeSet() argument
167 getInsertString(DecimalFormatSymbols symbols, byte affix) getInsertString() argument
[all...]
H A DMutablePatternModifier.java21 * locale symbols into the affixes of the decimal format pattern.
48 DecimalFormatSymbols symbols; field in MutablePatternModifier
103 * Sets locale-specific details that affect the symbols substituted into the pattern string affixes.
105 * @param symbols
116 DecimalFormatSymbols symbols, in setSymbols()
121 this.symbols = symbols; in setSymbols()
211 return new CurrencySpacingEnabledModifier(a, b, !patternInfo.hasBody(), isStrong, symbols); in createConstantModifier()
308 symbols); in apply()
395 return symbols in getSymbol()
115 setSymbols( DecimalFormatSymbols symbols, Currency currency, UnitWidth unitWidth, PluralRules rules) setSymbols() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DCurrencySpacingEnabledModifier.java38 DecimalFormatSymbols symbols) { in CurrencySpacingEnabledModifier()
45 UnicodeSet prefixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, PREFIX); in CurrencySpacingEnabledModifier()
47 afterPrefixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, PREFIX); in CurrencySpacingEnabledModifier()
49 afterPrefixInsert = getInsertString(symbols, PREFIX); in CurrencySpacingEnabledModifier()
60 UnicodeSet suffixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, SUFFIX); in CurrencySpacingEnabledModifier()
62 beforeSuffixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, SUFFIX); in CurrencySpacingEnabledModifier()
64 beforeSuffixInsert = getInsertString(symbols, SUFFIX); in CurrencySpacingEnabledModifier()
105 DecimalFormatSymbols symbols) { in applyCurrencySpacing()
111 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols); in applyCurrencySpacing()
114 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols); in applyCurrencySpacing()
33 CurrencySpacingEnabledModifier( FormattedStringBuilder prefix, FormattedStringBuilder suffix, boolean overwrite, boolean strong, DecimalFormatSymbols symbols) CurrencySpacingEnabledModifier() argument
99 applyCurrencySpacing( FormattedStringBuilder output, int prefixStart, int prefixLen, int suffixStart, int suffixLen, DecimalFormatSymbols symbols) applyCurrencySpacing() argument
120 applyCurrencySpacingAffix( FormattedStringBuilder output, int index, byte affix, DecimalFormatSymbols symbols) applyCurrencySpacingAffix() argument
154 getUnicodeSet(DecimalFormatSymbols symbols, short position, byte affix) getUnicodeSet() argument
169 getInsertString(DecimalFormatSymbols symbols, byte affix) getInsertString() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/
H A DNumberParserImpl.java43 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); in createSimpleParser()
48 factory.symbols = symbols; in createSimpleParser()
59 parser.addMatcher(DecimalMatcher.getInstance(symbols, grouper, parseFlags)); in createSimpleParser()
60 parser.addMatcher(MinusSignMatcher.getInstance(symbols, false)); in createSimpleParser()
61 parser.addMatcher(PlusSignMatcher.getInstance(symbols, false)); in createSimpleParser()
62 parser.addMatcher(PercentMatcher.getInstance(symbols)); in createSimpleParser()
63 parser.addMatcher(PermilleMatcher.getInstance(symbols)); in createSimpleParser()
64 parser.addMatcher(NanMatcher.getInstance(symbols, parseFlags)); in createSimpleParser()
65 parser.addMatcher(InfinityMatcher.getInstance(symbols)); in createSimpleParser()
78 parseStatic( String input, ParsePosition ppos, DecimalFormatProperties properties, DecimalFormatSymbols symbols) parseStatic() argument
98 parseStaticCurrency( String input, ParsePosition ppos, DecimalFormatProperties properties, DecimalFormatSymbols symbols) parseStaticCurrency() argument
134 createParserFromProperties( DecimalFormatProperties properties, DecimalFormatSymbols symbols, boolean parseCurrency) createParserFromProperties() argument
[all...]
H A DAffixTokenMatcherFactory.java16 public DecimalFormatSymbols symbols; field in AffixTokenMatcherFactory
22 return MinusSignMatcher.getInstance(symbols, true); in minusSign()
26 return PlusSignMatcher.getInstance(symbols, true); in plusSign()
30 return PercentMatcher.getInstance(symbols); in percent()
34 return PermilleMatcher.getInstance(symbols); in permille()
38 return CombinedCurrencyMatcher.getInstance(currency, symbols, parseFlags); in currency()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/
H A DNumberParserImpl.java45 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); in createSimpleParser()
50 factory.symbols = symbols; in createSimpleParser()
61 parser.addMatcher(DecimalMatcher.getInstance(symbols, grouper, parseFlags)); in createSimpleParser()
62 parser.addMatcher(MinusSignMatcher.getInstance(symbols, false)); in createSimpleParser()
63 parser.addMatcher(PlusSignMatcher.getInstance(symbols, false)); in createSimpleParser()
64 parser.addMatcher(PercentMatcher.getInstance(symbols)); in createSimpleParser()
65 parser.addMatcher(PermilleMatcher.getInstance(symbols)); in createSimpleParser()
66 parser.addMatcher(NanMatcher.getInstance(symbols, parseFlags)); in createSimpleParser()
67 parser.addMatcher(InfinityMatcher.getInstance(symbols)); in createSimpleParser()
80 parseStatic( String input, ParsePosition ppos, DecimalFormatProperties properties, DecimalFormatSymbols symbols) parseStatic() argument
100 parseStaticCurrency( String input, ParsePosition ppos, DecimalFormatProperties properties, DecimalFormatSymbols symbols) parseStaticCurrency() argument
136 createParserFromProperties( DecimalFormatProperties properties, DecimalFormatSymbols symbols, boolean parseCurrency) createParserFromProperties() argument
[all...]
H A DAffixTokenMatcherFactory.java18 public DecimalFormatSymbols symbols; field in AffixTokenMatcherFactory
24 return MinusSignMatcher.getInstance(symbols, true); in minusSign()
28 return PlusSignMatcher.getInstance(symbols, true); in plusSign()
32 return PercentMatcher.getInstance(symbols); in percent()
36 return PermilleMatcher.getInstance(symbols); in permille()
40 return CombinedCurrencyMatcher.getInstance(currency, symbols, parseFlags); in currency()
/third_party/python/Tools/scripts/
H A Dnm2def.py4 Helpers to extract symbols from Unix libs and auto-generate
43 def symbols(lib=PYTHONLIB,types=('T','C','D')): function
48 symbols = {}
58 symbols[name] = address,type
59 return symbols
61 def export_list(symbols):
65 for name,(addr,type) in symbols.items():
81 # Special symbols that have to be included even though they don't
86 def filter_Python(symbols,specials=SPECIALS):
88 for name in list(symbols
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dmiscdtfm.cpp160 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local
165 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status); in test4099975()
172 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field in test4099975()
186 delete symbols; in test4099975()
195 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local
199 df->setDateFormatSymbols(*symbols); in test4099975()
205 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field in test4099975()
219 delete symbols; in test4099975()
226 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local
228 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, statu in test4099975()
255 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); test4099975() local
327 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); test4117335() local
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-def.py18 symbols = sorted (re.findall (r"^hb_\w+(?= \()", "\n".join (headers_content), re.M)) variable
40 symbols = [x for x in symbols if x not in experimental_symbols] variable
41 symbols = "\n".join (symbols) variable
43 result = symbols if os.getenv ('PLAIN_LIST', '') else """EXPORTS
45 LIBRARY lib%s-0.dll""" % (symbols, output_file.replace ('src/', '').replace ('.def', ''))
/third_party/icu/icu4c/source/i18n/
H A Dnumparse_impl.cpp40 DecimalFormatSymbols symbols(locale, status); in createSimpleParser()
55 currencySymbols, symbols, ignorables, locale, parseFlags}; in createSimpleParser()
65 parser->addMatcher(parser->fLocalMatchers.decimal = {symbols, grouper, parseFlags}); in createSimpleParser()
66 parser->addMatcher(parser->fLocalMatchers.minusSign = {symbols, false}); in createSimpleParser()
67 parser->addMatcher(parser->fLocalMatchers.plusSign = {symbols, false}); in createSimpleParser()
68 parser->addMatcher(parser->fLocalMatchers.percent = {symbols}); in createSimpleParser()
69 parser->addMatcher(parser->fLocalMatchers.permille = {symbols}); in createSimpleParser()
70 parser->addMatcher(parser->fLocalMatchers.nan = {symbols}); in createSimpleParser()
71 parser->addMatcher(parser->fLocalMatchers.infinity = {symbols}); in createSimpleParser()
73 parser->addMatcher(parser->fLocalMatchers.scientific = {symbols, groupe in createSimpleParser()
82 createParserFromProperties(const number::impl::DecimalFormatProperties& properties, const DecimalFormatSymbols& symbols, bool parseCurrency, UErrorCode& status) createParserFromProperties() argument
[all...]
H A Dnumber_modifiers.cpp340 const DecimalFormatSymbols &symbols, in CurrencySpacingEnabledModifier()
347 UnicodeSet prefixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, PREFIX, status); in CurrencySpacingEnabledModifier()
349 fAfterPrefixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, PREFIX, status); in CurrencySpacingEnabledModifier()
351 fAfterPrefixInsert = getInsertString(symbols, PREFIX, status); in CurrencySpacingEnabledModifier()
362 UnicodeSet suffixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, SUFFIX, status); in CurrencySpacingEnabledModifier()
364 fBeforeSuffixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, SUFFIX, status); in CurrencySpacingEnabledModifier()
366 fBeforeSuffixInsert = getInsertString(symbols, SUFFIX, status); in CurrencySpacingEnabledModifier()
409 const DecimalFormatSymbols &symbols, in applyCurrencySpacing()
416 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols, status); in applyCurrencySpacing()
419 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols, statu in applyCurrencySpacing()
336 CurrencySpacingEnabledModifier(const FormattedStringBuilder &prefix, const FormattedStringBuilder &suffix, bool overwrite, bool strong, const DecimalFormatSymbols &symbols, UErrorCode &status) CurrencySpacingEnabledModifier() argument
406 applyCurrencySpacing(FormattedStringBuilder &output, int32_t prefixStart, int32_t prefixLen, int32_t suffixStart, int32_t suffixLen, const DecimalFormatSymbols &symbols, UErrorCode &status) applyCurrencySpacing() argument
425 applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, EAffix affix, const DecimalFormatSymbols &symbols, UErrorCode &status) applyCurrencySpacingAffix() argument
458 getUnicodeSet(const DecimalFormatSymbols &symbols, EPosition position, EAffix affix, UErrorCode &status) getUnicodeSet() argument
480 getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, UErrorCode &status) getInsertString() argument
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dnumparse_impl.cpp40 DecimalFormatSymbols symbols(locale, status); in createSimpleParser()
55 currencySymbols, symbols, ignorables, locale, parseFlags}; in createSimpleParser()
65 parser->addMatcher(parser->fLocalMatchers.decimal = {symbols, grouper, parseFlags}); in createSimpleParser()
66 parser->addMatcher(parser->fLocalMatchers.minusSign = {symbols, false}); in createSimpleParser()
67 parser->addMatcher(parser->fLocalMatchers.plusSign = {symbols, false}); in createSimpleParser()
68 parser->addMatcher(parser->fLocalMatchers.percent = {symbols}); in createSimpleParser()
69 parser->addMatcher(parser->fLocalMatchers.permille = {symbols}); in createSimpleParser()
70 parser->addMatcher(parser->fLocalMatchers.nan = {symbols}); in createSimpleParser()
71 parser->addMatcher(parser->fLocalMatchers.infinity = {symbols}); in createSimpleParser()
73 parser->addMatcher(parser->fLocalMatchers.scientific = {symbols, groupe in createSimpleParser()
82 createParserFromProperties(const number::impl::DecimalFormatProperties& properties, const DecimalFormatSymbols& symbols, bool parseCurrency, UErrorCode& status) createParserFromProperties() argument
[all...]
H A Dnumber_modifiers.cpp349 const DecimalFormatSymbols &symbols, in CurrencySpacingEnabledModifier()
356 UnicodeSet prefixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, PREFIX, status); in CurrencySpacingEnabledModifier()
358 fAfterPrefixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, PREFIX, status); in CurrencySpacingEnabledModifier()
360 fAfterPrefixInsert = getInsertString(symbols, PREFIX, status); in CurrencySpacingEnabledModifier()
371 UnicodeSet suffixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, SUFFIX, status); in CurrencySpacingEnabledModifier()
373 fBeforeSuffixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, SUFFIX, status); in CurrencySpacingEnabledModifier()
375 fBeforeSuffixInsert = getInsertString(symbols, SUFFIX, status); in CurrencySpacingEnabledModifier()
418 const DecimalFormatSymbols &symbols, in applyCurrencySpacing()
425 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols, status); in applyCurrencySpacing()
428 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols, statu in applyCurrencySpacing()
345 CurrencySpacingEnabledModifier(const FormattedStringBuilder &prefix, const FormattedStringBuilder &suffix, bool overwrite, bool strong, const DecimalFormatSymbols &symbols, UErrorCode &status) CurrencySpacingEnabledModifier() argument
415 applyCurrencySpacing(FormattedStringBuilder &output, int32_t prefixStart, int32_t prefixLen, int32_t suffixStart, int32_t suffixLen, const DecimalFormatSymbols &symbols, UErrorCode &status) applyCurrencySpacing() argument
434 applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, EAffix affix, const DecimalFormatSymbols &symbols, UErrorCode &status) applyCurrencySpacingAffix() argument
467 getUnicodeSet(const DecimalFormatSymbols &symbols, EPosition position, EAffix affix, UErrorCode &status) getUnicodeSet() argument
489 getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, UErrorCode &status) getInsertString() argument
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumparse_impl.cpp40 DecimalFormatSymbols symbols(locale, status); in createSimpleParser()
55 currencySymbols, symbols, ignorables, locale, parseFlags}; in createSimpleParser()
65 parser->addMatcher(parser->fLocalMatchers.decimal = {symbols, grouper, parseFlags}); in createSimpleParser()
66 parser->addMatcher(parser->fLocalMatchers.minusSign = {symbols, false}); in createSimpleParser()
67 parser->addMatcher(parser->fLocalMatchers.plusSign = {symbols, false}); in createSimpleParser()
68 parser->addMatcher(parser->fLocalMatchers.percent = {symbols}); in createSimpleParser()
69 parser->addMatcher(parser->fLocalMatchers.permille = {symbols}); in createSimpleParser()
70 parser->addMatcher(parser->fLocalMatchers.nan = {symbols}); in createSimpleParser()
71 parser->addMatcher(parser->fLocalMatchers.infinity = {symbols}); in createSimpleParser()
73 parser->addMatcher(parser->fLocalMatchers.scientific = {symbols, groupe in createSimpleParser()
82 createParserFromProperties(const number::impl::DecimalFormatProperties& properties, const DecimalFormatSymbols& symbols, bool parseCurrency, UErrorCode& status) createParserFromProperties() argument
[all...]
H A Dnumber_modifiers.cpp340 const DecimalFormatSymbols &symbols, in CurrencySpacingEnabledModifier()
347 UnicodeSet prefixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, PREFIX, status); in CurrencySpacingEnabledModifier()
349 fAfterPrefixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, PREFIX, status); in CurrencySpacingEnabledModifier()
351 fAfterPrefixInsert = getInsertString(symbols, PREFIX, status); in CurrencySpacingEnabledModifier()
362 UnicodeSet suffixUnicodeSet = getUnicodeSet(symbols, IN_CURRENCY, SUFFIX, status); in CurrencySpacingEnabledModifier()
364 fBeforeSuffixUnicodeSet = getUnicodeSet(symbols, IN_NUMBER, SUFFIX, status); in CurrencySpacingEnabledModifier()
366 fBeforeSuffixInsert = getInsertString(symbols, SUFFIX, status); in CurrencySpacingEnabledModifier()
409 const DecimalFormatSymbols &symbols, in applyCurrencySpacing()
416 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols, status); in applyCurrencySpacing()
419 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols, statu in applyCurrencySpacing()
336 CurrencySpacingEnabledModifier(const FormattedStringBuilder &prefix, const FormattedStringBuilder &suffix, bool overwrite, bool strong, const DecimalFormatSymbols &symbols, UErrorCode &status) CurrencySpacingEnabledModifier() argument
406 applyCurrencySpacing(FormattedStringBuilder &output, int32_t prefixStart, int32_t prefixLen, int32_t suffixStart, int32_t suffixLen, const DecimalFormatSymbols &symbols, UErrorCode &status) applyCurrencySpacing() argument
425 applyCurrencySpacingAffix(FormattedStringBuilder &output, int32_t index, EAffix affix, const DecimalFormatSymbols &symbols, UErrorCode &status) applyCurrencySpacingAffix() argument
458 getUnicodeSet(const DecimalFormatSymbols &symbols, EPosition position, EAffix affix, UErrorCode &status) getUnicodeSet() argument
480 getInsertString(const DecimalFormatSymbols &symbols, EAffix affix, UErrorCode &status) getInsertString() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DNumberFormatterImpl.java186 // TODO: Normalize the currency (accept symbols from DecimalFormatSymbols)? in macrosToMicroGenerator()
187 // currency = CustomSymbolCurrency.resolve(currency, input.loc, micros.symbols); in macrosToMicroGenerator()
223 if (macros.symbols instanceof NumberingSystem) { in macrosToMicroGenerator()
224 ns = (NumberingSystem) macros.symbols; in macrosToMicroGenerator()
234 // Resolve the symbols. Do this here because currency may need to customize them. in macrosToMicroGenerator()
235 if (macros.symbols instanceof DecimalFormatSymbols) { in macrosToMicroGenerator()
236 micros.symbols = (DecimalFormatSymbols) macros.symbols; in macrosToMicroGenerator()
238 micros.symbols = DecimalFormatSymbols.forNumberingSystem(macros.loc, ns); in macrosToMicroGenerator()
240 micros.symbols in macrosToMicroGenerator()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/
H A DNumberFormatterImpl.java180 // TODO: Normalize the currency (accept symbols from DecimalFormatSymbols)? in macrosToMicroGenerator()
181 // currency = CustomSymbolCurrency.resolve(currency, input.loc, micros.symbols); in macrosToMicroGenerator()
202 if (macros.symbols instanceof NumberingSystem) { in macrosToMicroGenerator()
203 ns = (NumberingSystem) macros.symbols; in macrosToMicroGenerator()
210 // Resolve the symbols. Do this here because currency may need to customize them. in macrosToMicroGenerator()
211 if (macros.symbols instanceof DecimalFormatSymbols) { in macrosToMicroGenerator()
212 micros.symbols = (DecimalFormatSymbols) macros.symbols; in macrosToMicroGenerator()
214 micros.symbols = DecimalFormatSymbols.forNumberingSystem(macros.loc, ns); in macrosToMicroGenerator()
216 micros.symbols in macrosToMicroGenerator()
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dscope.c52 add_symbol(&scope->symbols, sym); in bind_scope()
64 delete_ptr_list_entry((struct ptr_list**) &old->symbols, sym, 1); in rebind_scope()
102 struct symbol **ptr = &sym->ident->symbols; in remove_symbol_scope()
112 struct symbol_list *symbols = scope->symbols; in end_scope() local
116 scope->symbols = NULL; in end_scope()
117 FOR_EACH_PTR(symbols, sym) { in end_scope()
155 FOR_EACH_PTR(label_scope->symbols, sym) { in end_label_scope()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateFormatMiscTests.java80 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new()
81 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); in Test4099975new()
88 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new()
101 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new()
103 df.setDateFormatSymbols(symbols); in Test4099975new()
110 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new()
136 DateFormatSymbols symbols = new DateFormatSymbols(Locale.JAPAN); in Test4117335()
137 final String[] eras = symbols.getEraNames(); in Test4117335()
143 final String zones[][] = symbols.getZoneStrings(); in Test4117335()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
H A DDateFormatMiscTests.java83 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new()
84 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); in Test4099975new()
91 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new()
104 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new()
106 df.setDateFormatSymbols(symbols); in Test4099975new()
113 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new()
139 DateFormatSymbols symbols = new DateFormatSymbols(Locale.JAPAN); in Test4117335()
140 final String[] eras = symbols.getEraNames(); in Test4117335()
146 final String zones[][] = symbols.getZoneStrings(); in Test4117335()
/third_party/elfio/tests/
H A DELFIOTest1.cpp472 const symbol_section_accessor symbols( elf, psymsec ); in TEST()
474 EXPECT_EQ( true, symbols.get_symbol( 0x08048478, name, size, bind, type, in TEST()
495 const symbol_section_accessor symbols( elf, psymsec ); in TEST()
497 EXPECT_EQ( true, symbols.get_symbol( 0x00400498, name, size, bind, type, in TEST()
594 const symbol_section_accessor symbols( elf, psymsec ); in TEST()
596 EXPECT_EQ( true, symbols.get_symbol( "main", value, size, bind, type, in TEST()
600 EXPECT_EQ( true, symbols.get_symbol( "frame_dummy", value, size, bind, type, in TEST()
604 EXPECT_EQ( false, symbols.get_symbol( 0x00400498, name, size, bind, type, in TEST()
637 symbol_section_accessor symbols( writer, sym_sec ); in TEST()
642 symbols in TEST()
[all...]

Completed in 14 milliseconds

12345678910>>...22