Home
last modified time | relevance | path

Searched refs:symbols (Results 1 – 25 of 960) sorted by relevance

12345678910>>...39

/external/chromium_org/v8/test/mjsunit/harmony/
Dprivate.js31 var symbols = [] variable
37 symbols.push(%CreatePrivateSymbol("66"))
38 symbols.push(Object(%CreatePrivateSymbol("66")).valueOf())
47 for (var i in symbols) {
48 assertEquals("symbol", typeof symbols[i])
49 assertTrue(typeof symbols[i] === "symbol")
50 assertTrue(%SymbolIsPrivate(symbols[i]))
51 assertEquals(null, %_ClassOf(symbols[i]))
52 assertEquals("Symbol", %_ClassOf(new Symbol(symbols[i])))
53 assertEquals("Symbol", %_ClassOf(Object(symbols[i])))
[all …]
Dsymbols.js31 var symbols = [] variable
39 symbols.push(Symbol())
40 symbols.push(Symbol(undefined))
41 symbols.push(Symbol("66"))
42 symbols.push(Symbol(66))
43 symbols.push(Symbol(Symbol()))
44 symbols.push((new Symbol).valueOf())
45 symbols.push((new Symbol()).valueOf())
46 symbols.push((new Symbol(Symbol())).valueOf())
47 symbols.push(Object(Symbol()).valueOf())
[all …]
/external/chromium_org/v8/test/cctest/
Dtest-symbols.cc22 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]->Verify(); in TEST()
45 CHECK(symbols[i]->SameValue(*symbols[i])); in TEST()
[all …]
/external/clang/test/Index/
Dlocal-symbols.m29 // CHECK: local-symbols.m:6:12: ObjCInterfaceDecl=Foo:6:12 Extent=[6:1 - 10:5]
30 // CHECK: local-symbols.m:7:6: ObjCIvarDecl=x:7:6 (Definition) Extent=[7:3 - 7:7]
31 // CHECK: local-symbols.m:7:3: TypeRef=id:0:0 Extent=[7:3 - 7:5]
32 // CHECK: local-symbols.m:9:8: ObjCInstanceMethodDecl=bar:9:8 Extent=[9:1 - 9:12]
33 // CHECK: local-symbols.m:9:4: TypeRef=id:0:0 Extent=[9:4 - 9:6]
34 // CHECK: local-symbols.m:12:17: ObjCImplementationDecl=Foo:12:17 (Definition) Extent=[12:1 - 16:2]
35 // CHECK: local-symbols.m:13:8: ObjCInstanceMethodDecl=bar:13:8 (Definition) Extent=[13:1 - 15:2]
36 // CHECK: local-symbols.m:13:4: TypeRef=id:0:0 Extent=[13:4 - 13:6]
37 // CHECK: local-symbols.m:14:10: UnexposedExpr= Extent=[14:10 - 14:11]
38 // 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/
Dcparse.py102 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/chromium_org/third_party/icu/source/tools/memcheck/
DICUMemCheck.pl48 $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/icu4c/tools/memcheck/
DICUMemCheck.pl48 $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/mesa/src/src/mesa/program/
Dsymbol_table.c81 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/mesa/program/
Dsymbol_table.c81 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/glsl/
Dir_import_prototypes.cpp45 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/mesa3d/src/glsl/
Dir_import_prototypes.cpp45 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/icu4c/test/intltest/
Dmiscdtfm.cpp161 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/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
Dscopes.rb205 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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_debug_refcnt.c114 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/libpp/
Dsymbol_container.cpp23 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/
Du_debug_refcnt.c114 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/icu/source/test/intltest/
Dmiscdtfm.cpp161 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local
163 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status); in test4099975()
170 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field in test4099975()
184 delete symbols; in test4099975()
193 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local
197 df->setDateFormatSymbols(*symbols); in test4099975()
203 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field in test4099975()
217 delete symbols; in test4099975()
224 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); in test4099975() local
226 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, status); in test4099975()
[all …]
/external/oprofile/libutil++/
Dop_bfd.cpp114 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/harfbuzz_ng/test/api/
DMakefile.am109 symbols-tested.txt: $(TEST_PROGS)
113 symbols-exported.txt: $(top_builddir)/src/.libs/libharfbuzz.so
117 symbols-untested.txt: symbols-tested.txt symbols-exported.txt
119 CLEANFILES += symbols-tested.txt symbols-exported.txt symbols-untested.txt
120 check-symbols: symbols-untested.txt
132 .PHONY: check-symbols check-tool check-valgrind
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Dt022scopes.g40 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/
Dt022scopes.g40 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/
Dconflicts.c80 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/oprofile/pp/
Dopannotate.cpp291 symbol_collection const & symbols, in annotate_objdump_str_list() argument
347 if (find(symbols.begin(), symbols.end(), last_symbol) in annotate_objdump_str_list()
348 != symbols.end()) in annotate_objdump_str_list()
375 void output_objdump_str_list(symbol_collection const & symbols, in output_objdump_str_list() argument
380 annotate_objdump_str_list(app_name, symbols, asm_lines); in output_objdump_str_list()
394 void do_one_output_objdump(symbol_collection const & symbols, in do_one_output_objdump() argument
438 output_objdump_str_list(symbols, app_name, asm_lines); in do_one_output_objdump()
465 void output_objdump_asm(symbol_collection const & symbols, in output_objdump_asm() argument
480 if (symbols.size() <= max_objdump_exec || error != image_ok) { in output_objdump_asm()
481 symbol_collection::const_iterator cit = symbols.begin(); in output_objdump_asm()
[all …]
/external/chromium_org/chrome/app/
Dframework.order5 # 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/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DDecimalFormatSymbolsTest.java159 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); in test_getInstanceLjava_util_Locale() local
160 assertNotNull(symbols); in test_getInstanceLjava_util_Locale()
161 assertEquals(DecimalFormatSymbols.getInstance(), symbols); in test_getInstanceLjava_util_Locale() local
179 DecimalFormatSymbols symbols = DecimalFormatSymbols.getInstance(locale); in test_getInstanceLjava_util_Locale_no_provider() local
180 assertNotNull(symbols); in test_getInstanceLjava_util_Locale_no_provider()
181 assertEquals(DecimalFormatSymbols.getInstance(), symbols); in test_getInstanceLjava_util_Locale_no_provider() local
195 DecimalFormatSymbols symbols = DecimalFormatSymbols in test_getInstanceLjava_util_Locale_correct_provider()
197 assertTrue(symbols instanceof MockedDecimalFormatSymbols); in test_getInstanceLjava_util_Locale_correct_provider()
219 DecimalFormatSymbols symbols = DecimalFormatSymbols in test_getInstanceLjava_util_Locale_wrong_provider()
587 DecimalFormatSymbols symbols = new DecimalFormatSymbols(Locale.FRANCE); in test_serialization() local
[all …]

12345678910>>...39