| /external/chromium_org/v8/test/mjsunit/harmony/ |
| D | private.js | 28 // Flags: --harmony-symbols --harmony-collections 31 var symbols = [] variable 35 // serialization of Symbols added to the 'symbols' 36 // array. Adjust if you extend 'symbols' with other 47 symbols.push(%CreatePrivateSymbol("66")) 48 symbols.push(Object(%CreatePrivateSymbol("66")).valueOf()) 50 gc() // Promote existing symbols and then allocate some more. 57 for (var i in symbols) { 58 assertEquals("symbol", typeof symbols[i]) 59 assertTrue(typeof symbols[i] === "symbol") [all …]
|
| /external/chromium_org/v8/test/mjsunit/es6/ |
| D | symbols.js | 28 // Flags: --harmony-symbols --harmony-collections 31 var symbols = [] variable 35 // serialization of Symbols added to the 'symbols' 36 // array. Adjust if you extend 'symbols' with other 49 symbols.push(Symbol()) 50 symbols.push(Symbol(undefined)) 51 symbols.push(Symbol("66")) 52 symbols.push(Symbol(66)) 53 symbols.push(Symbol().valueOf()) 54 symbols.push(indirect()) [all …]
|
| /external/llvm/test/MC/ELF/ |
| D | many-sections-2.s | 3 // RUN: llvm-readobj -t %t | FileCheck --check-prefix=SYMBOLS %s 11 // SYMBOLS-NOT: symtab_shndx 15 // SYMBOLS: Name: a 16 // SYMBOLS-NEXT: Value: 0x0 17 // SYMBOLS-NEXT: Size: 0 18 // SYMBOLS-NEXT: Binding: Local (0x0) 19 // SYMBOLS-NEXT: Type: None (0x0) 20 // SYMBOLS-NEXT: Other: 0 21 // SYMBOLS-NEXT: Section: last (0xFF00) 22 // SYMBOLS-NEXT: } [all …]
|
| D | many-sections.s | 3 // RUN: llvm-readobj -t %t | FileCheck --check-prefix=SYMBOLS %s 12 // SYMBOLS: Name: dm (0) 13 // SYMBOLS-NEXT: Value: 0x0 14 // SYMBOLS-NEXT: Size: 0 15 // SYMBOLS-NEXT: Binding: Local (0x0) 16 // SYMBOLS-NEXT: Type: Section (0x3) 17 // SYMBOLS-NEXT: Other: 0 18 // SYMBOLS-NEXT: Section: dm (0xFEFF) 19 // SYMBOLS-NEXT: } 20 // SYMBOLS-NEXT:]
|
| /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/chromium_org/tools/binary_size/ |
| D | explain_binary_size_delta_unittest.py | 26 # File with two symbols, one unchanged, one changed, same bucket 29 # File with two symbols, one unchanged, one deleted, same bucket 32 # File with two symbols, one unchanged, one added, same bucket 34 # File with two symbols, one unchanged, one changed, different bucket 37 # File with two symbols, one unchanged, one deleted, different bucket 40 # File with two symbols, one unchanged, one added, different bucket 42 # File with four symbols, one added, one removed, 54 # File with two symbols, one unchanged, one changed, same bucket 57 # File with two symbols, one unchanged, one deleted, same bucket 59 # File with two symbols, one unchanged, one added, same bucket [all …]
|
| /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
| D | cparse.py | 13 from parse_core import Symbols, Parser 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: [all …]
|
| /external/chromium_org/v8/test/cctest/ |
| D | test-symbols.cc | 22 Handle<Symbol> symbols[kNumSymbols]; in TEST() local 25 symbols[i] = isolate->factory()->NewSymbol(); in TEST() 26 CHECK(symbols[i]->IsName()); in TEST() 27 CHECK(symbols[i]->IsSymbol()); in TEST() 28 CHECK(symbols[i]->HasHashCode()); in TEST() 29 CHECK_GT(symbols[i]->Hash(), 0); in TEST() 30 symbols[i]->ShortPrint(); in TEST() 33 symbols[i]->Print(); in TEST() 36 symbols[i]->ObjectVerify(); in TEST() 43 // All symbols should be distinct. 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/compiler-rt/test/profile/ |
| D | instrprof-without-libc.c | 1 // RUN: %clang_profgen -DCHECK_SYMBOLS -O3 -o %t.symbols %s 2 // RUN: llvm-nm %t.symbols | FileCheck %s --check-prefix=CHECK-SYMBOLS 36 // Don't write it out. Since we're checking the symbols, we don't have libc in main() 51 // CHECK-SYMBOLS-NOT: ___cxx_global_var_init 52 // CHECK-SYMBOLS-NOT: ___llvm_profile_register_write_file_atexit 53 // CHECK-SYMBOLS-NOT: ___llvm_profile_set_filename 54 // CHECK-SYMBOLS-NOT: ___llvm_profile_write_file 55 // CHECK-SYMBOLS-NOT: _fdopen 56 // CHECK-SYMBOLS-NOT: _fopen 57 // CHECK-SYMBOLS-NOT: _fwrite [all …]
|
| /external/chromium_org/third_party/android_platform/development/scripts/ |
| D | stack | 29 DEFAULT_SYMROOT='/tmp/symbols' 37 print " --symbols-dir=path" 38 print " the path to a symbols dir, such as =/tmp/out/target/product/dream/symbols" 40 print " --chrome-symbols-dir=path" 41 print " the path to a Chrome symbols dir (can be absolute or relative" 46 print " --symbols-zip=path" 47 print " the path to a symbols zip file, such as =dream-symbols-12345.zip" 78 the path to the "symbols" directory in the unzipped file). To clean 101 android_symbols = glob.glob("%s/out/target/product/*/symbols" % symdir) 105 # This is a zip of Chrome symbols, so symbol.CHROME_SYMBOLS_DIR needs to be [all …]
|
| /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
| D | SymbolTable.g | 6 * 'scope Symbols;' in those rule definitions. 13 scope Symbols { 26 // scope Symbols; 31 scope Symbols; 34 $Symbols::names = [ANTLRPtrBuffer newANTLRPtrBufferWithLen:10]; 38 NSLog( @"globals: \%@", [$Symbols::names toString] ); 48 scope Symbols; 51 $Symbols::names = [ANTLRPtrBuffer newANTLRPtrBufferWithLen:10]; 55 NSLog( @"level \%d symbols: \%@", level, [$Symbols::names toString] ); 65 {[$Symbols::names addObject:$ID];} // add to current symbol table
|
| /external/mesa3d/src/mesa/program/ |
| D | symbol_table.c | 32 * The linked list of symbols with the same name is ordered by scope 41 * The linked list of symbols with the same scope is unordered. Symbols 48 * Header information for the list of symbols with the same name. 56 * Name space are arbitrary user assigned integers. No two symbols can 80 /** Linked list of symbols with the same name. */ 81 struct symbol *symbols; member 92 /** Linked list of symbols with the same scope. */ 93 struct symbol *symbols; member 101 /** Hash table containing all symbols in the symbol table. */ 117 * Name space of symbols returned by this iterator. [all …]
|
| /external/chromium_org/third_party/mesa/src/src/mesa/program/ |
| D | symbol_table.c | 32 * The linked list of symbols with the same name is ordered by scope 41 * The linked list of symbols with the same scope is unordered. Symbols 48 * Header information for the list of symbols with the same name. 56 * Name space are arbitrary user assigned integers. No two symbols can 80 /** Linked list of symbols with the same name. */ 81 struct symbol *symbols; member 92 /** Linked list of symbols with the same scope. */ 93 struct symbol *symbols; member 101 /** Hash table containing all symbols in the symbol table. */ 117 * Name space of symbols returned by this iterator. [all …]
|
| /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
| D | scopes.rb | 87 symbols 90 $c::symbols = Set.new; 93 { $res = $c::symbols; } 97 : 'int' ID {$c::symbols.add($ID.text)} ';' 103 $c::symbols.include?($ID.text) or raise RuntimeError, $ID.text 111 symbols 114 $d::symbols = Set.new 117 { $res = $d::symbols; } 121 : 'int' ID {$d::symbols.add($ID.text)} ';' 129 $d[s].symbols.include?($ID.text) and throw(:found) [all …]
|
| /external/chromium_org/tools/memory_inspector/memory_inspector/core/ |
| D | symbol.py | 6 class Symbols(object): class 7 """A dictionary of symbols indexed by the key 'exec_path+0xoffset'.""" 10 self.symbols = {} # 'foo.so+0x1234' -> |Symbol| 14 self.symbols[Symbols._GetKey(exec_file_rel_path, offset)] = symbol 17 return self.symbols.get(Symbols._GetKey(exec_file_rel_path, offset)) 20 assert(isinstance(other, Symbols)) 21 self.symbols.update(other.symbols) # pylint: disable=W0212 24 return len(self.symbols)
|
| /external/oprofile/libutil++/ |
| D | op_bfd.cpp | 42 /// function object for filtering symbols to remove 65 // Some sections have unnamed symbols in them. If in op_bfd_symbol() 112 // symbols through a vector. We use an intermediate list to avoid a in op_bfd() 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 212 // On separate debug file systems, the main bfd has no symbols, in get_symbols() 228 symbols.push_back(op_bfd_symbol(ibfd.syms[i])); in get_symbols() 236 // debug file symbols. We probably need to be more in get_symbols() [all …]
|
| /external/oprofile/pp/ |
| D | opreport_options.cpp | 36 bool symbols; variable 69 popt::option(options::symbols, "symbols", 'l', 70 "list all symbols"), 83 popt::option(exclude_symbols, "exclude-symbols", 'e', 84 "exclude these comma separated symbols", "symbols"), 85 popt::option(include_symbols, "include-symbols", 'i', 86 "include these comma separated symbols", "symbols"), 129 // symbol traversal all library module symbols are in handle_sort_option() 169 symbols = true; in check_options() 199 if (!symbols) { in check_options() [all …]
|
| /external/chromium_org/net/spdy/ |
| D | hpack_huffman_table.cc | 60 std::vector<Symbol> symbols(symbol_count); in Initialize() local 61 // Validate symbol id sequence, and copy into |symbols|. in Initialize() 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() [all …]
|
| /external/oprofile/libpp/ |
| D | symbol_container.h | 3 * Internal container for symbols 22 * An arbitrary container of symbols. Supports lookup 35 /// return the number of symbols stored 49 /// find the symbols at the given filename and line number, if any 52 /// find the symbols defined in the given filename, if any 62 /// return start of symbols 65 /// return end of symbols 73 * The main container of symbols. Multiple symbols with the same 76 symbols_t symbols; variable 88 * Symbols sorted by location order. Lazily built on request,
|
| D | symbol_container.cpp | 3 * Internal container for symbols 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/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/chromium_org/chrome/app/ |
| D | framework.order | 5 # This .order file defines the order that symbols should be laid out in the 6 # Mac framework. The framework does not contain many global text symbols, and 7 # in release mode, does not contain any non-global text symbols after being 9 # confusing offsets from the few public symbols that are available, an 11 # symbols. 13 # Not all symbols will appear in all build types. Varying optimizations may 14 # result in differences between the set of symbols present in debug and 17 # an error to list symbols in this file that will not be present in each 37 # List the gcov symbols so the code coverage bot doesn't trip up in
|
| /external/libpng/scripts/ |
| D | checksym.awk | 2 # Check a list of symbols against the master definition 7 # Output is a file in the current directory called 'symbols.new', 18 official[1] = "" # defined symbols from master file 19 symbol[1] = "" # defined symbols from png.h 20 removed[1] = "" # removed symbols from png.h 24 missing = "error"# log an error on missing symbols 25 of="symbols.new" # default to a fixed name 51 # This allows the master file to control how missing symbols 52 # are handled; symbols that aren't in either the master or 63 # 'removed' symbols, introduced in png.h using PNG_REMOVED rather [all …]
|
| /external/harfbuzz_ng/test/api/ |
| D | Makefile.am | 110 # check-symbols: Finds untested API symbols 111 symbols-tested.txt: $(TEST_PROGS) 115 symbols-exported.txt: $(top_builddir)/src/.libs/libharfbuzz.so 119 symbols-untested.txt: symbols-tested.txt symbols-exported.txt 121 CLEANFILES += symbols-tested.txt symbols-exported.txt symbols-untested.txt 122 check-symbols: symbols-untested.txt 134 .PHONY: check-symbols check-tool check-valgrind
|