/external/v8/test/mjsunit/harmony/ |
D | private.js | 30 var symbols = [] variable 46 symbols.push(%CreatePrivateSymbol("66")) 47 symbols.push(Object(%CreatePrivateSymbol("66")).valueOf()) 56 for (var i in symbols) { 57 assertEquals("symbol", typeof symbols[i]) 58 assertTrue(typeof symbols[i] === "symbol") 59 assertTrue(%SymbolIsPrivate(symbols[i])) 60 assertEquals(null, %_ClassOf(symbols[i])) 61 assertEquals("Symbol", %_ClassOf(Object(symbols[i]))) 68 for (var i in symbols) { [all …]
|
/external/v8/test/mjsunit/es6/ |
D | symbols.js | 30 var symbols = [] variable 48 symbols.push(Symbol()) 49 symbols.push(Symbol(undefined)) 50 symbols.push(Symbol("66")) 51 symbols.push(Symbol(66)) 52 symbols.push(Symbol().valueOf()) 53 symbols.push(indirect()) 66 for (var i in symbols) { 67 assertEquals("symbol", typeof symbols[i]) 68 assertTrue(typeof symbols[i] === "symbol") [all …]
|
/external/v8/test/cctest/ |
D | test-symbols.cc | 48 Handle<Symbol> symbols[kNumSymbols]; in TEST() local 52 symbols[i] = isolate->factory()->NewSymbol(); in TEST() 53 CHECK(symbols[i]->IsName()); in TEST() 54 CHECK(symbols[i]->IsSymbol()); in TEST() 55 CHECK(symbols[i]->HasHashCode()); in TEST() 56 CHECK_GT(symbols[i]->Hash(), 0u); in TEST() 57 os << Brief(*symbols[i]) << "\n"; in TEST() 59 symbols[i]->Print(os); in TEST() 62 symbols[i]->ObjectVerify(); in TEST() 71 CHECK(symbols[i]->SameValue(*symbols[i])); in TEST() [all …]
|
/external/clang/test/Index/ |
D | local-symbols.m | 35 // CHECK: local-symbols.m:6:12: ObjCInterfaceDecl=Foo:6:12 Extent=[6:1 - 10:5] 36 // CHECK: local-symbols.m:7:6: ObjCIvarDecl=x:7:6 (Definition) Extent=[7:3 - 7:7] 37 // CHECK: local-symbols.m:7:3: TypeRef=id:0:0 Extent=[7:3 - 7:5] 38 // CHECK: local-symbols.m:9:8: ObjCInstanceMethodDecl=bar:9:8 Extent=[9:1 - 9:12] 39 // CHECK: local-symbols.m:9:4: TypeRef=id:0:0 Extent=[9:4 - 9:6] 40 // CHECK: local-symbols.m:12:17: ObjCImplementationDecl=Foo:12:17 (Definition) Extent=[12:1 - 16:2] 41 // CHECK: local-symbols.m:13:8: ObjCInstanceMethodDecl=bar:13:8 (Definition) Extent=[13:1 - 15:2] 42 // CHECK: local-symbols.m:13:4: TypeRef=id:0:0 Extent=[13:4 - 13:6] 43 // CHECK: local-symbols.m:14:10: UnexposedExpr= Extent=[14:10 - 14:11] 44 // CHECK: local-symbols.m:14:10: IntegerLiteral= Extent=[14:10 - 14:11] [all …]
|
/external/llvm/utils/emacs/ |
D | llvm-mode.el | 29 …"i8" "i16" "i32" "i64" "i128" "float" "double" "type" "label" "opaque") 'symbols) . font-lock-type… 41 … "pointersize" "volatile" "fastcc" "coldcc" "cc" "personality") 'symbols) . font-lock-keyword-face) 44 … "setne" "seteq" "setlt" "setgt" "setle" "setge") 'symbols) . font-lock-keyword-face) 46 `(,(regexp-opt '("fadd" "fsub" "fmul" "fdiv" "frem") 'symbols) . font-lock-keyword-face) 48 … "select" "to" "shl" "lshr" "ashr" "fcmp" "icmp" "va_arg" "landingpad") 'symbols) . font-lock-keyw… 50 …t" "br" "switch" "invoke" "resume" "unwind" "unreachable" "indirectbr") 'symbols) . font-lock-keyw… 52 …a" "free" "load" "store" "getelementptr" "fence" "cmpxchg" "atomicrmw") 'symbols) . font-lock-keyw… 54 … "fptrunc" "fpext" "fptoui" "fptosi" "uitofp" "sitofp" "addrspacecast") 'symbols) . font-lock-keyw… 56 …`(,(regexp-opt '("extractelement" "insertelement" "shufflevector") 'symbols) . font-lock-keyword-f… 58 `(,(regexp-opt '("extractvalue" "insertvalue") 'symbols) . font-lock-keyword-face) [all …]
|
/external/mesa3d/src/mesa/program/ |
D | symbol_table.c | 81 struct symbol *symbols; member 93 struct symbol *symbols; member 142 for (sym = scope->symbols in check_symbol_table() 148 for (sym2 = hdr->symbols in check_symbol_table() 162 struct symbol *sym = scope->symbols; in _mesa_symbol_table_pop_scope() 173 assert(hdr->symbols == sym); in _mesa_symbol_table_pop_scope() 175 hdr->symbols = sym->next_with_same_name; in _mesa_symbol_table_pop_scope() 216 for (sym = hdr->symbols; sym != NULL; sym = sym->next_with_same_name) { in _mesa_symbol_table_iterator_ctor() 288 for (sym = hdr->symbols; sym != NULL; sym = sym->next_with_same_name) { in _mesa_symbol_table_symbol_scope() 312 for (sym = hdr->symbols; sym != NULL; sym = sym->next_with_same_name) { in _mesa_symbol_table_find_symbol() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | digitformatter.cpp | 37 DigitFormatter::DigitFormatter(const DecimalFormatSymbols &symbols) { in DigitFormatter() argument 38 setDecimalFormatSymbols(symbols); in DigitFormatter() 43 const DecimalFormatSymbols &symbols) { in setOtherDecimalFormatSymbols() argument 44 … fLocalizedDigits[0] = symbols.getConstSymbol(DecimalFormatSymbols::kZeroDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() 45 fLocalizedDigits[1] = symbols.getConstSymbol(DecimalFormatSymbols::kOneDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() 46 fLocalizedDigits[2] = symbols.getConstSymbol(DecimalFormatSymbols::kTwoDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() 47 … fLocalizedDigits[3] = symbols.getConstSymbol(DecimalFormatSymbols::kThreeDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() 48 … fLocalizedDigits[4] = symbols.getConstSymbol(DecimalFormatSymbols::kFourDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() 49 … fLocalizedDigits[5] = symbols.getConstSymbol(DecimalFormatSymbols::kFiveDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() 50 fLocalizedDigits[6] = symbols.getConstSymbol(DecimalFormatSymbols::kSixDigitSymbol).char32At(0); in setOtherDecimalFormatSymbols() [all …]
|
/external/icu/icu4c/source/tools/memcheck/ |
D | ICUMemCheck.pl | 48 $symbols = `nm -u -C $f`; 49 if ($symbols =~ /U +operator delete\(void\*\)/) { 52 if ($symbols =~ /U +operator delete\[\]\(void\*\)/) { 55 if ($symbols =~ /U +operator new\(unsigned int\)/) { 58 if ($symbols =~ /U +operator new\[\]\(unsigned int\)/) { 61 if ($symbols =~ /U +malloc.*/) { 64 if ($symbols =~ /U +free.*/) {
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/testing/ |
D | sample_perf_report_output.txt | 1 …open /data/app-lib/com.google.android.apps.chrome-2/libchrome.2016.0.so, continuing without symbols 2 …vik-cache/arm/data@app@com.google.android.apps.chrome-2.apk@classes.dex, continuing without symbols 4 …lsyms] with build id 3b63ca692cbb756f837744e061d02a790bf637d5 not found, continuing without symbols 5 Failed to open /system/lib/libc.so, continuing without symbols 6 Failed to open /system/lib/libm.so, continuing without symbols 7 Failed to open /tmp/perf-18246.map, continuing without symbols 8 Failed to open /system/lib/libart.so, continuing without symbols 9 Failed to open /init, continuing without symbols 10 Failed to open [vectors], continuing without symbols
|
/external/icu/icu4c/source/test/intltest/ |
D | miscdtfm.cpp | 161 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local 166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status); in test4099975() 173 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field in test4099975() 187 delete symbols; in test4099975() 196 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local 200 df->setDateFormatSymbols(*symbols); in test4099975() 206 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field in test4099975() 220 delete symbols; in test4099975() 227 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local 229 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, status); in test4099975() [all …]
|
/external/selinux/policycoreutils/sepolicy/sepolicy/ |
D | generate.py | 212 self.symbols = {} 213 self.symbols["openlog"] = "set_use_kerberos(True)" 214 self.symbols["openlog"] = "set_use_kerb_rcache(True)" 215 self.symbols["openlog"] = "set_use_syslog(True)" 216 self.symbols["gethostby"] = "set_use_resolve(True)" 217 self.symbols["getaddrinfo"] = "set_use_resolve(True)" 218 self.symbols["getnameinfo"] = "set_use_resolve(True)" 219 self.symbols["krb"] = "set_use_kerberos(True)" 220 self.symbols["gss_accept_sec_context"] = "set_manage_krb5_rcache(True)" 221 self.symbols["krb5_verify_init_creds"] = "set_manage_krb5_rcache(True)" [all …]
|
/external/icu/android_icu4j/cts-coverage/src/main/tests/android/icu/cts/coverage/text/ |
D | DateFormatSymbolsTest.java | 30 DateFormatSymbols symbols = DateFormatSymbols.getInstance(); in testSetEraNames_defensivelyCopies() local 32 symbols.setEraNames(eraNamesInput); in testSetEraNames_defensivelyCopies() 33 assertArrayEquals(eraNamesInput, symbols.getEraNames()); in testSetEraNames_defensivelyCopies() 35 assertEquals("longAgo", symbols.getEraNames()[0]); in testSetEraNames_defensivelyCopies() 41 DateFormatSymbols symbols = DateFormatSymbols.getInstance(); in testYearNames_defensivelyCopies() local 43 symbols.setYearNames( in testYearNames_defensivelyCopies() 46 symbols.getYearNames(DateFormatSymbols.FORMAT, DateFormatSymbols.ABBREVIATED)); in testYearNames_defensivelyCopies() 49 symbols.getYearNames(DateFormatSymbols.FORMAT, DateFormatSymbols.ABBREVIATED)[0]); in testYearNames_defensivelyCopies()
|
/external/mesa3d/src/glsl/ |
D | ir_import_prototypes.cpp | 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols, in import_prototype_visitor() argument 50 this->symbols = symbols; in import_prototype_visitor() 58 this->function = this->symbols->get_function(ir->name); in visit_enter() 66 this->symbols->add_function(this->function); in visit_enter() 98 glsl_symbol_table *symbols; member in import_prototype_visitor 115 glsl_symbol_table *symbols, void *mem_ctx) in import_prototypes() argument 117 import_prototype_visitor v(dest, symbols, mem_ctx); in import_prototypes()
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
D | scopes.rb | 205 symbols = parser.c 206 symbols.should have( 2 ).things 207 symbols.should include 'i' 208 symbols.should include 'j' 240 symbols = parser.d 241 symbols.should have( 2 ).things 242 symbols.should include 'i' 243 symbols.should include 'j'
|
/external/bison/src/ |
D | conflicts.c | 80 symbols[token]->tag); in log_resolution() 89 symbols[token]->tag); in log_resolution() 97 symbols[token]->tag); in log_resolution() 108 symbols[token]->tag); in log_resolution() 114 symbols[token]->tag, in log_resolution() 121 symbols[token]->tag); in log_resolution() 127 symbols[token]->tag); in log_resolution() 133 symbols[token]->tag); in log_resolution() 152 xml_escape (symbols[token]->tag)); in log_resolution() 161 xml_escape (symbols[token]->tag)); in log_resolution() [all …]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_debug_refcnt.c | 114 static void dump_stack(const char* symbols[STACK_LEN]) in dump_stack() 119 if(symbols[i]) in dump_stack() 120 fprintf(stream, "%s\n", symbols[i]); in dump_stack() 145 const char* symbols[STACK_LEN]; in debug_reference_slowpath() local 157 symbols[i] = debug_symbol_name_cached(frames[i].function); in debug_reference_slowpath() 159 symbols[i] = 0; in debug_reference_slowpath() 167 dump_stack(symbols); in debug_reference_slowpath() 174 dump_stack(symbols); in debug_reference_slowpath() 182 dump_stack(symbols); in debug_reference_slowpath() 189 dump_stack(symbols); in debug_reference_slowpath()
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
D | t022scopes.g | 40 symbols 43 $c::symbols = {}; 46 { $res = $c::symbols; } 50 : 'int' ID {$c::symbols[$ID.text] = true;} ';' 56 if (! $c::symbols[$ID.text]) { 66 symbols 69 $d::symbols = {}; 72 { $res = $d::symbols; } 76 : 'int' ID {$d::symbols[$ID.text] = true;} ';' 84 if ($d[i]::symbols[$ID.text]) {
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
D | t022scopes.g | 40 symbols 43 $c::symbols = set(); 46 { $res = $c::symbols; } 50 : 'int' ID {$c::symbols.add($ID.text)} ';' 56 if $ID.text not in $c::symbols: 65 symbols 68 $d::symbols = set(); 71 { $res = $d::symbols; } 75 : 'int' ID {$d::symbols.add($ID.text)} ';' 82 if $ID.text in $d[s]::symbols:
|
/external/harfbuzz_ng/test/api/ |
D | Makefile.am | 115 symbols-tested.txt: $(TEST_PROGS) 119 symbols-exported.txt: $(top_builddir)/src/.libs/libharfbuzz.so 123 symbols-untested.txt: symbols-tested.txt symbols-exported.txt 125 CLEANFILES += symbols-tested.txt symbols-exported.txt symbols-untested.txt 126 check-symbols: symbols-untested.txt 138 .PHONY: check-symbols check-tool check-valgrind
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-indirect-symbols.test | 1 RUN: llvm-objdump -macho -indirect-symbols %p/Inputs/hello.exe.macho-x86_64 | FileCheck %s 2 RUN: llvm-objdump -macho -indirect-symbols -non-verbose %p/Inputs/hello.exe.macho-x86_64 | FileChec… 4 CHECK: Indirect symbols for (__TEXT,__stubs) 1 entries 7 CHECK: Indirect symbols for (__DATA,__nl_symbol_ptr) 2 entries 11 CHECK: Indirect symbols for (__DATA,__la_symbol_ptr) 1 entries 15 NON_VERBOSE: Indirect symbols for (__TEXT,__stubs) 1 entries 18 NON_VERBOSE: Indirect symbols for (__DATA,__nl_symbol_ptr) 2 entries 22 NON_VERBOSE: Indirect symbols for (__DATA,__la_symbol_ptr) 1 entries
|
/external/fec/ |
D | vtest615.c | 47 unsigned char symbols[8*6*(MAXBYTES+14)]; local 122 symbols[6*i+0] = addnoise(parity(sr & V615POLYA),gain,Gain,OFFSET,CLIP); 123 symbols[6*i+1] = addnoise(parity(sr & V615POLYB),gain,Gain,OFFSET,CLIP); 124 symbols[6*i+2] = addnoise(parity(sr & V615POLYC),gain,Gain,OFFSET,CLIP); 125 symbols[6*i+3] = addnoise(parity(sr & V615POLYD),gain,Gain,OFFSET,CLIP); 126 symbols[6*i+4] = addnoise(parity(sr & V615POLYE),gain,Gain,OFFSET,CLIP); 127 symbols[6*i+5] = addnoise(parity(sr & V615POLYF),gain,Gain,OFFSET,CLIP); 134 update_viterbi615_blk(vp,symbols,framebits+14); 171 memset(symbols,127,sizeof(symbols)); 179 update_viterbi615_blk(vp,symbols,framebits+14);
|
/external/google-breakpad/src/common/solaris/ |
D | dump_symbols.cc | 345 bool ComputeSizeAndRVA(struct SymbolInfo *symbols) { in ComputeSizeAndRVA() argument 347 &(symbols->source_file_info); in ComputeSizeAndRVA() 348 SymbolMap *symbol_entries = &(symbols->symbol_entries); in ComputeSizeAndRVA() 398 struct SymbolInfo *symbols) { in LoadAllSymbols() argument 426 symbols->source_file_info.push_back(source_file_info); in LoadAllSymbols() 431 return ComputeSizeAndRVA(symbols); in LoadAllSymbols() 434 bool LoadSymbols(Elf *elf, GElf_Ehdr *elf_header, struct SymbolInfo *symbols, in LoadSymbols() argument 473 symbols->symbol_entries.insert(make_pair(name, symbol_entry)); in LoadSymbols() 479 return LoadAllSymbols(&stab_section, &stabstr_section, base, symbols); in LoadSymbols() 511 bool WriteSourceFileInfo(int fd, const struct SymbolInfo &symbols) { in WriteSourceFileInfo() argument [all …]
|
/external/jemalloc/bin/ |
D | jeprof.in | 577 my ($profile, $symbols, $libs, $thread) = @_; 583 $profile = RemoveUninterestingFrames($symbols, $profile); 587 $profile = FocusProfile($symbols, $profile, $main::opt_focus); 592 $profile = IgnoreProfile($symbols, $profile, $main::opt_ignore); 595 my $calls = ExtractCalls($symbols, $profile); 599 my $reduced = ReduceProfile($symbols, $profile); 620 PrintText($symbols, $flat, $cumulative, -1); 622 PrintSymbolizedProfile($symbols, $profile, $main::prog); 626 if (PrintDot($main::prog, $symbols, $profile, $flat, $cumulative, $total)) { 652 InteractiveMode($profile, $symbols, $libs, $total); [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | DateFormatMiscTests.java | 79 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new() local 80 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); in Test4099975new() 87 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new() 100 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new() local 102 df.setDateFormatSymbols(symbols); in Test4099975new() 109 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new() 134 DateFormatSymbols symbols = new DateFormatSymbols(Locale.JAPAN); in Test4117335() local 135 final String[] eras = symbols.getEraNames(); in Test4117335() 141 final String zones[][] = symbols.getZoneStrings(); in Test4117335()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DateFormatMiscTests.java | 75 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new() local 76 SimpleDateFormat df = new SimpleDateFormat("E hh:mm", symbols); in Test4099975new() 83 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new() 96 DateFormatSymbols symbols = new DateFormatSymbols(Locale.US); in Test4099975new() local 98 df.setDateFormatSymbols(symbols); in Test4099975new() 105 symbols.setLocalPatternChars("abcdefghijklmonpqr"); // change value of field in Test4099975new() 130 DateFormatSymbols symbols = new DateFormatSymbols(Locale.JAPAN); in Test4117335() local 131 final String[] eras = symbols.getEraNames(); in Test4117335() 137 final String zones[][] = symbols.getZoneStrings(); in Test4117335()
|