Searched refs:symbols (Results 1 - 25 of 394) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/harmony/
H A Dprivate.js30 var symbols = []
34 // serialization of Symbols added to the 'symbols'
35 // array. Adjust if you extend 'symbols' with other
46 symbols.push(%CreatePrivateSymbol("66"))
47 symbols.push(Object(%CreatePrivateSymbol("66")).valueOf())
49 gc() // Promote existing symbols and then allocate some more.
56 for (var i in symbols) {
57 assertEquals("symbol", typeof symbols[i])
58 assertTrue(typeof symbols[i] === "symbol")
59 assertTrue(%SymbolIsPrivate(symbols[
[all...]
/external/chromium_org/third_party/icu/source/tools/memcheck/
H A 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/icu/icu4c/source/tools/memcheck/
H A 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/v8/test/mjsunit/es6/
H A Dsymbols.js30 var symbols = []
34 // serialization of Symbols added to the 'symbols'
35 // array. Adjust if you extend 'symbols' with other
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())
57 gc() // Promote existing symbols an
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-symbols.cc23 Handle<Symbol> symbols[kNumSymbols]; local
27 symbols[i] = isolate->factory()->NewSymbol();
28 CHECK(symbols[i]->IsName());
29 CHECK(symbols[i]->IsSymbol());
30 CHECK(symbols[i]->HasHashCode());
31 CHECK_GT(symbols[i]->Hash(), 0);
32 os << Brief(*symbols[i]) << "\n";
34 symbols[i]->Print(os);
37 symbols[i]->ObjectVerify();
44 // All symbols shoul
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-350864.js33 var symbols = Object.getOwnPropertySymbols(v1);
34 assertArrayEquals([sym], symbols);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_import_prototypes.cpp45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols, argument
50 this->symbols = symbols;
58 this->function = this->symbols->get_function(ir->name);
66 this->symbols->add_function(this->function);
98 glsl_symbol_table *symbols; member in class:import_prototype_visitor
110 * \param symbols Symbol table where new functions will be stored
115 glsl_symbol_table *symbols, void *mem_ctx)
117 import_prototype_visitor v(dest, symbols, mem_ctx);
114 import_prototypes(const exec_list *source, exec_list *dest, glsl_symbol_table *symbols, void *mem_ctx) argument
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols, argument
50 this->symbols = symbols;
58 this->function = this->symbols->get_function(ir->name);
66 this->symbols->add_function(this->function);
98 glsl_symbol_table *symbols; member in class:import_prototype_visitor
110 * \param symbols Symbol table where new functions will be stored
115 glsl_symbol_table *symbols, void *mem_ctx)
117 import_prototype_visitor v(dest, symbols, mem_ctx);
114 import_prototypes(const exec_list *source, exec_list *dest, glsl_symbol_table *symbols, void *mem_ctx) argument
/external/valgrind/main/drd/tests/
H A Drun_openmp_test32 if [ "${line%: no symbols}" != "${line}" ]; then
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dsymbol.py7 """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))
21 self.symbols.update(other.symbols) # pylint: disable=W0212
24 return len(self.symbols)
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c114 static void dump_stack(const char* symbols[STACK_LEN]) argument
119 if(symbols[i])
120 fprintf(stream, "%s\n", symbols[i]);
145 const char* symbols[STACK_LEN]; local
157 symbols[i] = debug_symbol_name_cached(frames[i].function);
159 symbols[i] = 0;
167 dump_stack(symbols);
174 dump_stack(symbols);
182 dump_stack(symbols);
189 dump_stack(symbols);
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c114 static void dump_stack(const char* symbols[STACK_LEN]) argument
119 if(symbols[i])
120 fprintf(stream, "%s\n", symbols[i]);
145 const char* symbols[STACK_LEN]; local
157 symbols[i] = debug_symbol_name_cached(frames[i].function);
159 symbols[i] = 0;
167 dump_stack(symbols);
174 dump_stack(symbols);
182 dump_stack(symbols);
189 dump_stack(symbols);
[all...]
/external/oprofile/libpp/
H A Dsymbol_container.cpp3 * Internal container for symbols
23 return symbols.size();
29 pair<symbols_t::iterator, bool> p = symbols.insert(symb);
87 symbols_t::const_iterator cit = symbols.begin();
88 symbols_t::const_iterator end = symbols.end();
99 for (it = symbols.begin(); it != symbols.end(); ++it) {
111 return symbols.begin();
117 return symbols.end();
122 symbols_t::const_iterator it = symbols
[all...]
/external/chromium_org/net/spdy/
H A Dhpack_huffman_table.cc60 std::vector<Symbol> symbols(symbol_count);
61 // Validate symbol id sequence, and copy into |symbols|.
67 symbols[i] = input_symbols[i];
70 std::sort(symbols.begin(), symbols.end(), SymbolLengthAndIdCompare);
71 if (symbols[0].code != 0) {
75 for (size_t i = 1; i != symbols.size(); i++) {
76 unsigned code_shift = 32 - symbols[i-1].length;
77 uint32 code = symbols[i-1].code + (1 << code_shift);
79 if (code != symbols[
105 BuildEncodeTable(const std::vector<Symbol>& symbols) argument
114 BuildDecodeTables(const std::vector<Symbol>& symbols) argument
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dscopes.rb87 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
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dcparse.py102 def parse(self,lexer,symbols):
103 symbols = Symbols(symbols)
112 node.parse(lexer,symbols)
133 def parse(self,lexer,symbols):
162 def parse(self,lexer,symbols):
163 symbols = Symbols(symbols)
182 node.parse(lexer,symbols)
205 def parse(self,lexer,symbols)
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dsymbol_table.c32 * 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 in struct:symbol_header
92 /** Linked list of symbols with the same scope. */
93 struct symbol *symbols; member in struct:scope_level
101 /** Hash table containing all symbols in the symbol table. */
117 * Name space of symbols returne
[all...]
/external/mesa3d/src/mesa/program/
H A Dsymbol_table.c32 * 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 in struct:symbol_header
92 /** Linked list of symbols with the same scope. */
93 struct symbol *symbols; member in struct:scope_level
101 /** Hash table containing all symbols in the symbol table. */
117 * Name space of symbols returne
[all...]
/external/zopfli/src/zopfli/
H A Dtree.h37 Converts a series of Huffman tree bitlengths, to the bit values of the symbols.
40 unsigned* symbols);
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeSymbolicFieldElement.cpp38 static AtomicString makeVisibleEmptyValue(const Vector<String>& symbols) argument
41 for (unsigned index = 0; index < symbols.size(); ++index)
42 maximumLength = std::max(maximumLength, numGraphemeClusters(symbols[index]));
50 DateTimeSymbolicFieldElement::DateTimeSymbolicFieldElement(Document& document, FieldOwner& fieldOwner, const Vector<String>& symbols, int minimum, int maximum) argument
52 , m_symbols(symbols)
53 , m_visibleEmptyValue(makeVisibleEmptyValue(symbols))
59 ASSERT(!symbols.isEmpty());
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dcluster.h111 int* symbols,
119 if (all_symbols.find(symbols[i]) == all_symbols.end()) {
120 all_symbols.insert(symbols[i]);
121 clusters.push_back(symbols[i]);
147 if (symbols[i] == best_idx2) {
148 symbols[i] = best_idx1;
196 Histogram<kSize>* out, int* symbols) {
199 all_symbols.insert(symbols[i]);
202 int best_out = i == 0 ? symbols[0] : symbols[
109 HistogramCombine(Histogram<kSize>* out, int* cluster_size, int* symbols, int symbols_size, int max_clusters) argument
195 HistogramRemap(const Histogram<kSize>* in, int in_size, Histogram<kSize>* out, int* symbols) argument
228 HistogramReindex(std::vector<Histogram<kSize> >* out, std::vector<int>* symbols) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dmiscdtfm.cpp161 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status);
173 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
187 delete symbols;
196 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
200 df->setDateFormatSymbols(*symbols);
206 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
220 delete symbols;
227 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
229 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, statu
256 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
328 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dmiscdtfm.cpp161 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
166 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status);
173 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
187 delete symbols;
196 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
200 df->setDateFormatSymbols(*symbols);
206 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
220 delete symbols;
227 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
229 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, statu
256 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
328 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DLocaleWin.cpp518 Vector<String, DecimalSymbolsSize> symbols;
527 symbols.append("0");
528 symbols.append("1");
529 symbols.append("2");
530 symbols.append("3");
531 symbols.append("4");
532 symbols.append("5");
533 symbols.append("6");
534 symbols.append("7");
535 symbols
[all...]
/external/chromium_org/third_party/smhasher/src/
H A DAvalancheTest.cpp7 const char * symbols = ".123456789X"; local
28 printf("%c",symbols[s]);

Completed in 9794 milliseconds

1234567891011>>