Searched defs:symbols (Results 1 - 25 of 75) sorted by relevance

123

/external/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/mesa3d/src/glsl/
H A Dir_print_visitor.h88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
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/libxml2/doc/
H A Dlibxml-doc.el1 ;;; libxml-doc.el - look up libxml-symbols and start browser on documentation
29 ;; "Look up libxml-symbols and start browser on documentation." t)
32 ;; "Look up libxml-symbols and start browser on documentation." t)
74 ;; - Now keeps the list of symbols between calls to speed things up.
92 ;; - keep (match-string 1) in a variable (libxmldoc-get-list-of-symbols)
118 "History for looking up libxml-symbols.")
119 (defvar libxmldoc-symbols nil
120 "The list of libxml-symbols.")
129 (if (null libxmldoc-symbols)
130 (setq libxmldoc-symbols (libxmldo
[all...]
/external/v8/src/base/
H A Dlogging.cc26 char** symbols = backtrace_symbols(trace, size); local
30 } else if (symbols == NULL) {
31 OS::PrintError("(no symbols)\n");
36 if (sscanf(symbols[i], "%*[^(]%*[(]%200[^)+]", mangled) == 1) { // NOLINT
47 free(symbols);
/external/zopfli/src/zopfli/
H A Dtree.c31 unsigned* symbols) {
38 symbols[i] = 0;
62 symbols[i] = next_code[len];
30 ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits, unsigned* symbols) argument
/external/icu/icu4c/source/test/intltest/
H A Dsdtfmtts.cpp77 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getFrench(), status); local
83 SimpleDateFormat cust1(pattern, symbols, status);
85 dataerrln("ERROR: Could not create SimpleDateFormat (pattern, symbols*) - exitting");
90 SimpleDateFormat cust2(pattern, *symbols, status);
92 errln("ERROR: Could not create SimpleDateFormat (pattern, symbols)");
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...]
H A Ddcfmapts.cpp127 DecimalFormatSymbols *symbols = new DecimalFormatSymbols(Locale::getFrench(), status); local
134 DecimalFormat cust1(pattern, symbols, status);
136 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols*)");
140 DecimalFormat cust2(pattern, *symbols, status);
142 errln((UnicodeString)"ERROR: Could not create DecimalFormat (pattern, symbols)");
/external/libxml2/doc/examples/
H A Dindex.py19 symbols = {} variable
49 res = ctxt.xpathEval("/api/symbols/*[@name = '%s']" % (name))
93 global symbols
160 if symbols.has_key(name):
161 sinfo = symbols[name]
163 # gather at most 5 references per symbols
169 symbols[name] = [1, filename]
187 global symbols
189 output.write(" <symbols>\n")
190 keys = symbols
[all...]
/external/llvm/tools/dsymutil/
H A DDebugMap.h41 /// symbols' addresses in the object file to their linked address in
128 iterator_range<StringMap<SymbolMapping>::const_iterator> symbols() const { function in class:llvm::dsymutil::DebugMapObject
/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/bison/src/
H A Dstate.h30 state. These symbols at these items are the allowable inputs that
172 symbol *symbols[1]; member in struct:__anon386
H A Dgram.c40 symbol **symbols = NULL; variable
107 fprintf (out, " %s", symbols[*rp]->tag);
125 xml_escape (symbols[*rp]->tag));
150 fprintf (out, " %s", symbols[ritem[i]]->tag);
258 symbols[i]->prec, symbols[i]->assoc,
259 symbols[i]->tag);
/external/google-breakpad/src/tools/windows/dump_syms/
H A Ddump_syms_unittest.cc195 std::string symbols; local
196 ASSERT_NO_FATAL_FAILURE(RunCommand(command_line, &symbols));
198 EXPECT_EQ(expected_symbols, symbols);
/external/icu/icu4c/source/common/
H A Duniset_closure.cpp49 const SymbolTable* symbols,
62 applyPattern(pattern, options, symbols, status);
70 const SymbolTable* symbols,
83 applyPattern(pattern, pos, options, symbols, status);
95 const SymbolTable* symbols,
98 applyPattern(pattern, pos, options, symbols, status);
117 const SymbolTable* symbols,
129 RuleCharacterIterator chars(pattern, symbols, pos);
130 applyPattern(chars, symbols, rebuiltPat, options, &UnicodeSet::closeOver, status);
47 UnicodeSet(const UnicodeString& pattern, uint32_t options, const SymbolTable* symbols, UErrorCode& status) argument
68 UnicodeSet(const UnicodeString& pattern, ParsePosition& pos, uint32_t options, const SymbolTable* symbols, UErrorCode& status) argument
93 applyPattern(const UnicodeString& pattern, uint32_t options, const SymbolTable* symbols, UErrorCode& status) argument
114 applyPattern(const UnicodeString& pattern, ParsePosition& pos, uint32_t options, const SymbolTable* symbols, UErrorCode& status) argument
/external/llvm/include/llvm/Object/
H A DSymbolicFile.h1 //===- SymbolicFile.h - Interface that only provides symbols ----*- C++ -*-===//
77 /// symbols in the object file.
94 // (e.g. section symbols)
144 basic_symbol_iterator_range symbols() const { function in class:llvm::object::SymbolicFile
H A DArchive.h196 iterator_range<symbol_iterator> symbols() const { function in class:llvm::object::Archive
/external/ltrace/
H A Dlibrary.h60 /* This is relevant for PLT symbols. Latent PLT symbols are
67 /* Delayed symbols are those for which a breakpoint shouldn't
68 * be enabled yet. They are similar to latent symbols, but
94 /* Compare two library symbols. Returns a negative value, 0, or a
97 * those are equal, too, the symbols are considered equal. */
151 * symbols that don't have a breakpoint attached (yet). */
152 struct library_symbol *symbols; member in struct:library
195 /* Iterate through list of symbols of library LIB. See callback.h for
/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/v8/test/mjsunit/tools/
H A Dtickprocessor.js69 this.symbols = [[
99 this.symbols = [[
133 this.symbols = [[
163 this.symbols = [[
193 this.symbols = [
206 ' Static symbols',
262 exe_exe_syms, '.exe with .exe symbols');
273 exe_dll_syms, '.exe with .dll symbols');
285 dll_dll_syms, '.dll with .dll symbols');
296 dll_exe_syms, '.dll with .exe symbols');
[all...]
/external/google-breakpad/src/processor/
H A Dstackwalker_x86_unittest.cc1692 string symbols = symbols_func_section; local
1694 symbols.append(string(1, '\0')); // null terminator in the middle
1695 symbols.append("\n");
1696 symbols.append("FUNC 1234\n" // invalid FUNC records
1703 symbols.append(symbols_stack_section);
1704 SetModuleSymbols(&remoting_core_dll, symbols);
1921 // Runs IPAddressIsNotInKnownModule test with good symbols
1926 // Runs IPAddressIsNotInKnownModule test with corrupt symbols
/external/linux-tools-perf/src/tools/perf/util/
H A Ddso.h75 struct rb_root symbols[MAP__NR_TYPES]; member in struct:dso
/external/webp/src/utils/
H A Dhuffman.c148 // Get symbols.
212 if (IsFull(tree)) return 0; // error: too many symbols.
242 // Find out number of symbols and the root symbol.
271 // Add symbols one-by-one.
291 const int* const symbols, int max_symbol,
298 assert(symbols != NULL);
303 // Add symbols one-by-one.
306 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
309 if (!TreeAddSymbol(tree, symbols[
288 VP8LHuffmanTreeBuildExplicit(HuffmanTree* const tree, const int* const code_lengths, const int* const codes, const int* const symbols, int max_symbol, int num_symbols) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Ddecimalformatpattern.cpp121 const DecimalFormatSymbols& symbols) {
122 fZeroDigit = symbols.getConstSymbol(
124 fSigDigit = symbols.getConstSymbol(
126 fGroupingSeparator = symbols.getConstSymbol(
128 fDecimalSeparator = symbols.getConstSymbol(
130 fPercent = symbols.getConstSymbol(
132 fPerMill = symbols.getConstSymbol(
134 fDigit = symbols.getConstSymbol(
136 fSeparator = symbols.getConstSymbol(
138 fExponent = symbols
120 useSymbols( const DecimalFormatSymbols& symbols) argument
[all...]

Completed in 783 milliseconds

123