/third_party/mesa3d/src/compiler/glsl/ |
D | builtin_types.cpp | 269 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_type::usamplerCubeArray_type); in _mesa_glsl_initialize_types() 312 add_type(symbols, glsl_type::sampler2DMS_type); in _mesa_glsl_initialize_types() [all …]
|
/third_party/skia/src/sksl/ |
D | SkSLThreadContext.cpp | 72 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.addAlias("mat4x3", context.fTypes.fFloat4x3.get()); in setupSymbolTable() [all …]
|
/third_party/openssl/test/ |
D | shlibloadtest.c | 69 } 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() 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[2].func; in test_lib() 141 if (!sd_sym(cryptolib, "ERR_get_error", &symbols[0].sym) in test_lib() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
D | NumberParserImpl.java | 45 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); in createSimpleParser() local 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() 69 parser.addMatcher(ScientificMatcher.getInstance(symbols, grouper)); in createSimpleParser() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
D | NumberParserImpl.java | 43 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); in createSimpleParser() local 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() 67 parser.addMatcher(ScientificMatcher.getInstance(symbols, grouper)); in createSimpleParser() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/ |
D | CurrencySpacingEnabledModifier.java | 38 DecimalFormatSymbols symbols) { in CurrencySpacingEnabledModifier() argument 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() argument 111 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols); in applyCurrencySpacing() 114 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols); in applyCurrencySpacing() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | CurrencySpacingEnabledModifier.java | 36 DecimalFormatSymbols symbols) { in CurrencySpacingEnabledModifier() argument 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() argument 109 length += applyCurrencySpacingAffix(output, prefixStart + prefixLen, PREFIX, symbols); in applyCurrencySpacing() 112 length += applyCurrencySpacingAffix(output, suffixStart + length, SUFFIX, symbols); in applyCurrencySpacing() [all …]
|
/third_party/icu/icu4c/source/i18n/ |
D | numparse_impl.cpp | 40 DecimalFormatSymbols symbols(locale, status); in createSimpleParser() local 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, grouper}); in createSimpleParser() [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | numparse_impl.cpp | 40 DecimalFormatSymbols symbols(locale, status); in createSimpleParser() local 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, grouper}); in createSimpleParser() [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | numparse_impl.cpp | 40 DecimalFormatSymbols symbols(locale, status); in createSimpleParser() local 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, grouper}); in createSimpleParser() [all …]
|
/third_party/python/Tools/scripts/ |
D | nm2def.py | 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): argument 65 for name,(addr,type) in symbols.items(): 86 def filter_Python(symbols,specials=SPECIALS): argument 88 for name in list(symbols.keys()): 92 del symbols[name] 96 s = symbols(PYTHONLIB)
|
/third_party/icu/icu4c/source/test/intltest/ |
D | miscdtfm.cpp | 160 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, status); in test4099975() [all …]
|
/third_party/skia/third_party/externals/icu/source/tools/memcheck/ |
D | ICUMemCheck.pl | 44 $symbols = `nm -u -C $f`; 45 if ($symbols =~ /U +operator delete\(void\*\)/) { 48 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) { 51 if ($symbols =~ /U +operator new\(unsigned int\)/) { 54 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) { 57 if ($symbols =~ /U +malloc.*/) { 60 if ($symbols =~ /(?m:U +free$)/) {
|
/third_party/icu/icu4c/source/tools/memcheck/ |
D | ICUMemCheck.pl | 44 $symbols = `nm -u -C $f`; 45 if ($symbols =~ /U +operator delete\(void\*\)/) { 48 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) { 51 if ($symbols =~ /U +operator new\(unsigned int\)/) { 54 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) { 57 if ($symbols =~ /U +malloc.*/) { 60 if ($symbols =~ /(?m:U +free$)/) {
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/number/ |
D | NumberFormatterImpl.java | 202 if (macros.symbols instanceof NumberingSystem) { in macrosToMicroGenerator() 203 ns = (NumberingSystem) macros.symbols; 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.setCurrency(currency); in macrosToMicroGenerator() 223 if (isCurrency && micros.symbols.getCurrencyPattern() != null) { in macrosToMicroGenerator() 224 pattern = micros.symbols.getCurrencyPattern(); in macrosToMicroGenerator() 317 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator() 333 patternMod.setSymbols(micros.symbols, currency, unitWidth, rules); in macrosToMicroGenerator() [all …]
|
/third_party/node/deps/v8/third_party/jinja2/ |
D | idtracking.py | 152 def __init__(self, symbols): argument 153 self.sym_visitor = FrameSymbolVisitor(symbols) 210 def __init__(self, symbols): argument 211 self.symbols = symbols 216 self.symbols.declare_parameter(node.name) 218 self.symbols.store(node.name) 220 self.symbols.load(node.name) 223 self.symbols.load(node.name) 228 original_symbols = self.symbols 231 self.symbols = rv = original_symbols.copy() [all …]
|
/third_party/skia/third_party/externals/jinja2/ |
D | idtracking.py | 152 def __init__(self, symbols): argument 153 self.sym_visitor = FrameSymbolVisitor(symbols) 210 def __init__(self, symbols): argument 211 self.symbols = symbols 216 self.symbols.declare_parameter(node.name) 218 self.symbols.store(node.name) 220 self.symbols.load(node.name) 223 self.symbols.load(node.name) 228 original_symbols = self.symbols 231 self.symbols = rv = original_symbols.copy() [all …]
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | idtracking.py | 153 def __init__(self, symbols): argument 154 self.sym_visitor = FrameSymbolVisitor(symbols) 206 def __init__(self, symbols): argument 207 self.symbols = symbols 212 self.symbols.declare_parameter(node.name) 214 self.symbols.store(node.name) 216 self.symbols.load(node.name) 219 self.symbols.load(node.name) 224 original_symbols = self.symbols 227 self.symbols = rv = original_symbols.copy() [all …]
|
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
D | Makefile.am | 195 symbols-tested.txt: $(TEST_PROGS) 199 symbols-tested-or-deprecated.txt: symbols-tested.txt $(top_builddir)/src/harfbuzz-deprecated-symbol… 201 symbols-exported.txt: $(top_builddir)/src/.libs/libharfbuzz.so 205 symbols-untested.txt: symbols-tested-or-deprecated.txt symbols-exported.txt 207 CLEANFILES += symbols-tested.txt \ 208 symbols-exported.txt \ 209 symbols-untested.txt \ 210 symbols-tested-or-deprecated.txt 211 check-symbols: symbols-untested.txt 223 .PHONY: check-symbols check-tool check-valgrind
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | gen-def.py | 18 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/icu4j/main/classes/core/src/com/ibm/icu/number/ |
D | NumberFormatterImpl.java | 223 if (macros.symbols instanceof NumberingSystem) { in macrosToMicroGenerator() 224 ns = (NumberingSystem) macros.symbols; 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.setCurrency(currency); in macrosToMicroGenerator() 247 if (isCurrency && micros.symbols.getCurrencyPattern() != null) { in macrosToMicroGenerator() 248 pattern = micros.symbols.getCurrencyPattern(); in macrosToMicroGenerator() 356 … chain = ((ScientificNotation) macros.notation).withLocaleData(micros.symbols, safe, chain); in macrosToMicroGenerator() 379 patternMod.setSymbols(micros.symbols, currency, unitWidth, rules); in macrosToMicroGenerator() [all …]
|
/third_party/elfio/tests/ |
D | ELFIOTest1.cpp | 472 const symbol_section_accessor symbols( elf, psymsec ); in TEST() local 474 EXPECT_EQ( true, symbols.get_symbol( 0x08048478, name, size, bind, type, in TEST() 495 const symbol_section_accessor symbols( elf, psymsec ); in TEST() local 497 EXPECT_EQ( true, symbols.get_symbol( 0x00400498, name, size, bind, type, in TEST() 594 const symbol_section_accessor symbols( elf, psymsec ); in TEST() local 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() local 642 symbols.add_symbol( str_writer, name.c_str(), value, size, bind, type, in TEST() [all …]
|
/third_party/libabigail/tests/data/test-fedabipkgdiff/ |
D | test5-same-dir-dbus-glib-0.100.2-2.fc20.x86_64--dbus-glib-0.106-1.fc23.x86_64-report-0.txt | 6 Function symbols changes summary: 0 Removed, 2 Added function symbols not referenced by debug info 7 Variable symbols changes summary: 0 Removed, 0 Added variable symbol not referenced by debug info 9 2 Added function symbols not referenced by debug info: 19 Function symbols changes summary: 2 Removed, 0 Added function symbols not referenced by debug info 20 Variable symbols changes summary: 0 Removed, 0 Added variable symbol not referenced by debug info 22 2 Removed function symbols not referenced by debug info:
|
/third_party/libabigail/tests/data/test-diff-pkg/ |
D | test-rpm-report-3.txt | 4 Function symbols changes summary: 0 Removed, 8 Added function symbols not referenced by debug info 5 Variable symbols changes summary: 0 Removed, 0 Added variable symbol not referenced by debug info 7 8 Added function symbols not referenced by debug info: 23 Function symbols changes summary: 2 Removed, 1 Added function symbols not referenced by debug info 24 Variable symbols changes summary: 0 Removed, 0 Added variable symbol not referenced by debug info 26 2 Removed function symbols not referenced by debug info:
|
D | test-rpm-report-2.txt | 4 Function symbols changes summary: 0 Removed, 8 Added function symbols not referenced by debug info 5 Variable symbols changes summary: 0 Removed, 0 Added variable symbol not referenced by debug info 7 8 Added function symbols not referenced by debug info: 23 Function symbols changes summary: 2 Removed, 1 Added function symbols not referenced by debug info 24 Variable symbols changes summary: 0 Removed, 0 Added variable symbol not referenced by debug info 26 2 Removed function symbols not referenced by debug info:
|