HomeSort by relevance Sort by last modified time
    Searched defs:symbols (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/chromium_org/v8/test/cctest/
test-symbols.cc 23 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 should be distinct
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_print_visitor.h 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
ir_import_prototypes.cpp 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols,
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);
  /external/mesa3d/src/glsl/
ir_print_visitor.h 88 _mesa_symbol_table *symbols; member in class:ir_print_visitor
ir_import_prototypes.cpp 45 import_prototype_visitor(exec_list *list, glsl_symbol_table *symbols,
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);
  /external/oprofile/libpp/
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; member in class:symbol_container
    [all...]
profile_container.h 3 * Container associating symbols and samples
54 * add() - record symbols/samples in the underlying container
74 /// Find the symbols from its filename, linenr, return an empty
103 * select_symbols - create a set of symbols sorted by sample count
109 * select_symbols - create a set of symbols belonging to a given source
110 * @param filename source file where are defined the returned symbols
158 * The rationale here is to try to create symbols for alignment between
159 * function as little as possible and to create meaningfull symbols
165 /// The symbols collected by pp tools sorted by increased vma, provide
167 scoped_ptr<symbol_container> symbols; member in class:profile_container
    [all...]
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 7 const char * symbols = ".123456789X"; local
28 printf("%c",symbols[s]);
  /external/llvm/include/llvm/ExecutionEngine/
ObjectImage.h 39 iterator_range<object::symbol_iterator> symbols() const { function in class:llvm::ObjectImage
54 // addresses for sections and common symbols
  /external/chromium_org/v8/src/base/
logging.cc 26 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/chromium_org/third_party/icu/source/test/intltest/
sdtfmtts.cpp 77 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)");
miscdtfm.cpp 161 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, status)
256 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
328 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
checks.cc 55 // to get usable symbols on Linux. This is copied from V8. Chromium has a more
61 char** symbols = backtrace_symbols(trace, size); local
65 } else if (symbols == NULL) {
66 PrintError("(no symbols)\n");
70 if (sscanf(symbols[i], "%*[^(]%*[(]%200[^)+]", mangled) == 1) { // NOLINT
79 PrintError("%s\n", symbols[i]);
83 free(symbols);
  /external/icu/icu4c/source/test/intltest/
sdtfmtts.cpp 77 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)");
miscdtfm.cpp 161 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, status)
256 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
328 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
    [all...]
  /external/bison/src/
state.h 30 state. These symbols at these items are the allowable inputs that
172 symbol *symbols[1]; member in struct:__anon5011
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_debug_refcnt.c 114 static void dump_stack(const char* symbols[STACK_LEN])
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/
u_debug_refcnt.c 114 static void dump_stack(const char* symbols[STACK_LEN])
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/libutil++/
op_spu_bfd.cpp 59 symbols_found_t symbols; local
169 get_symbols(symbols);
173 symbols.push_back(op_bfd_symbol(OP_SPU_DYN_FLAG, OP_SPU_MEMSIZE,
177 add_symbols(symbols, symbol_filter);
  /cts/tools/dasm/src/java_cup/
parser.java 389 MAX_RHS + " symbols and actions");
409 /** table of declared symbols -- contains production parts indexed by name */
410 protected Hashtable symbols = new Hashtable(); field in class:CUP$actions
478 if (symbols.get((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
493 /* build a production_part and put it in the symbols table */
494 symbols.put((/*non_term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val, new symbol_part(this_nt));
506 if (symbols.get((/*term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val) != null)
515 symbols.put((/*term_id*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-0)).str_val,
595 production_part symb = (production_part)symbols.get((/*symid*/(java_cup.runtime.str_token)CUP$stack.elementAt(CUP$top-1)).str_val);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
report.c 40 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture); local
72 symbol = XRaySymbolTableLookup(symbols, addr);
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
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 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. *
    [all...]
  /external/chromium_org/v8/test/mjsunit/tools/
tickprocessor.js 69 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/llvm/include/llvm/Object/
SymbolicFile.h 1 //===- SymbolicFile.h - Interface that only provides symbols ----*- C++ -*-===//
75 /// symbols in the object file.
91 // (e.g. section symbols)
140 basic_symbol_iterator_range symbols() const { function in class:llvm::object::BasicSymbolRef::SymbolicFile
  /external/ltrace/
library.h 60 /* 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. */
150 /* Symbols associated with the library. This includes a
151 * symbols that don't have a breakpoint attached (yet). */
152 struct library_symbol *symbols; member in struct:library
178 /* Initialize RETP to a library identical to LIB. Symbols are no
    [all...]

Completed in 499 milliseconds

1 2 3 4