/external/chromium_org/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/chromium_org/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/chromium_org/v8/test/cctest/ |
D | test-symbols.cc | 23 Handle<Symbol> symbols[kNumSymbols]; in TEST() local 27 symbols[i] = isolate->factory()->NewSymbol(); in TEST() 28 CHECK(symbols[i]->IsName()); in TEST() 29 CHECK(symbols[i]->IsSymbol()); in TEST() 30 CHECK(symbols[i]->HasHashCode()); in TEST() 31 CHECK_GT(symbols[i]->Hash(), 0); in TEST() 32 os << Brief(*symbols[i]) << "\n"; in TEST() 34 symbols[i]->Print(os); in TEST() 37 symbols[i]->ObjectVerify(); in TEST() 46 CHECK(symbols[i]->SameValue(*symbols[i])); in TEST() [all …]
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/ |
D | chromevox_assets.gypi | 74 'destination': '<(chromevox_dest_dir)/chromevox/background/mathmaps/symbols', 76 'chromevox/background/mathmaps/symbols/greek-capital.json', 77 'chromevox/background/mathmaps/symbols/greek-mathfonts.json', 78 'chromevox/background/mathmaps/symbols/greek-scripts.json', 79 'chromevox/background/mathmaps/symbols/greek-small.json', 80 'chromevox/background/mathmaps/symbols/greek-symbols.json', 81 'chromevox/background/mathmaps/symbols/hebrew_letters.json', 82 'chromevox/background/mathmaps/symbols/latin-lower-double-accent.json', 83 'chromevox/background/mathmaps/symbols/latin-lower-normal.json', 84 'chromevox/background/mathmaps/symbols/latin-lower-phonetic.json', [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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
D | cparse.py | 102 def parse(self,lexer,symbols): argument 103 symbols = Symbols(symbols) 112 node.parse(lexer,symbols) 133 def parse(self,lexer,symbols): argument 162 def parse(self,lexer,symbols): argument 163 symbols = Symbols(symbols) 182 node.parse(lexer,symbols) 205 def parse(self,lexer,symbols): argument 226 if symbols[ident[0]] is not None: 228 symbols[ident[0]]=ident [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_org/third_party/icu/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_org/net/spdy/ |
D | hpack_huffman_table.cc | 60 std::vector<Symbol> symbols(symbol_count); in Initialize() local 67 symbols[i] = input_symbols[i]; in Initialize() 70 std::sort(symbols.begin(), symbols.end(), SymbolLengthAndIdCompare); in Initialize() 71 if (symbols[0].code != 0) { in Initialize() 75 for (size_t i = 1; i != symbols.size(); i++) { in Initialize() 76 unsigned code_shift = 32 - symbols[i-1].length; in Initialize() 77 uint32 code = symbols[i-1].code + (1 << code_shift); in Initialize() 79 if (code != symbols[i].code) { in Initialize() 80 failed_symbol_id_ = symbols[i].id; in Initialize() 83 if (code < symbols[i-1].code) { in Initialize() [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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/brotli/src/brotli/enc/ |
D | cluster.h | 111 int* symbols, in HistogramCombine() argument 119 if (all_symbols.find(symbols[i]) == all_symbols.end()) { in HistogramCombine() 120 all_symbols.insert(symbols[i]); in HistogramCombine() 121 clusters.push_back(symbols[i]); in HistogramCombine() 147 if (symbols[i] == best_idx2) { in HistogramCombine() 148 symbols[i] = best_idx1; in HistogramCombine() 196 Histogram<kSize>* out, int* symbols) { in HistogramRemap() argument 199 all_symbols.insert(symbols[i]); in HistogramRemap() 202 int best_out = i == 0 ? symbols[0] : symbols[i - 1]; in HistogramRemap() 212 symbols[i] = best_out; in HistogramRemap() [all …]
|
/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/chromium_org/third_party/icu/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/chromium_org/tools/telemetry/unittest_data/ |
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
|
/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/oprofile/libpp/ |
D | symbol_container.cpp | 23 return symbols.size(); in size() 29 pair<symbols_t::iterator, bool> p = symbols.insert(symb); in insert() 87 symbols_t::const_iterator cit = symbols.begin(); in build_by_loc() 88 symbols_t::const_iterator end = symbols.end(); in build_by_loc() 99 for (it = symbols.begin(); it != symbols.end(); ++it) { in find_by_vma() 111 return symbols.begin(); in begin() 117 return symbols.end(); in end() 122 symbols_t::const_iterator it = symbols.find(symbol); in find() 123 return it == symbols.end() ? 0 : &*it; in find()
|
/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/chromium_org/third_party/mesa/src/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/oprofile/libutil++/ |
D | op_bfd.cpp | 114 symbols_found_t symbols; in op_bfd() local 176 get_symbols(symbols); in op_bfd() 179 add_symbols(symbols, symbol_filter); in op_bfd() 208 void op_bfd::get_symbols(op_bfd::symbols_found_t & symbols) in get_symbols() argument 228 symbols.push_back(op_bfd_symbol(ibfd.syms[i])); in get_symbols() 242 symbols.push_back(op_bfd_symbol(dbfd.syms[i])); in get_symbols() 245 symbols.sort(); in get_symbols() 247 symbols_found_t::iterator it = symbols.begin(); in get_symbols() 251 while (it != symbols.end()) { in get_symbols() 254 if (temp != symbols.end() && (it->vma() == temp->vma()) && in get_symbols() [all …]
|
/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/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 …]
|