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

1 2 3 4 5 6

  /external/chromium_org/v8/test/cctest/
test-symbols.cc 22 Handle<Symbol> symbols[kNumSymbols]; local
25 symbols[i] = isolate->factory()->NewSymbol();
26 CHECK(symbols[i]->IsName());
27 CHECK(symbols[i]->IsSymbol());
28 CHECK(symbols[i]->HasHashCode());
29 CHECK_GT(symbols[i]->Hash(), 0);
30 symbols[i]->ShortPrint();
33 symbols[i]->Print();
36 symbols[i]->Verify();
43 // 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]);
  /system/core/include/corkscrew/
symbol_table.h 34 symbol_t* symbols; member in struct:__anon62587
  /external/chromium_org/v8/src/
platform-posix.h 49 char** symbols = backtrace_symbols(trace, size); local
53 } else if (symbols == NULL) {
54 fprintf(stderr, "(no symbols)\n");
59 if (sscanf(symbols[i], "%*[^(]%*[(]%200[^)+]", mangled) == 1) {// NOLINT
74 free(symbols);
83 char** symbols = backtrace_symbols(addresses.start(), frames_count); local
84 if (symbols == NULL) {
93 "%s", symbols[i]); local
98 free(symbols);
  /system/core/libcorkscrew/
test.cpp 28 symbol_table_t* symbols = NULL; local
30 symbols = load_symbol_table(backtrace_symbols[i].map_name);
33 if (symbols != NULL) {
34 symbol = find_symbol(symbols, frames[i].absolute_pc);
42 free_symbol_table(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
163 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), *symbols, status);
170 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
184 delete symbols;
193 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
197 df->setDateFormatSymbols(*symbols);
203 symbols->setLocalPatternChars(UnicodeString("abcdefghijklmonpqr")); // change value of field
217 delete symbols;
224 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
226 SimpleDateFormat *df = new SimpleDateFormat(UnicodeString("E hh:mm"), symbols, status)
253 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
325 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
    [all...]
  /external/icu4c/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)");
  /libcore/luni/src/test/java/libcore/java/text/
OldSimpleDateFormatTest.java 97 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH); local
98 symbols.setEras(new String[] { "Before", "After" });
99 SimpleDateFormat f2 = new SimpleDateFormat("y'y'yy", symbols);
102 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(symbols));
107 new SimpleDateFormat(null, symbols);
114 new SimpleDateFormat("eee", symbols);
128 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
225 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH); local
226 symbols.setEras(new String[] { "Before", "After" })
481 DateFormatSymbols symbols = new DateFormatSymbols(); 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:__anon2789
  /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);
  /system/core/libutils/
CallStack.cpp 132 backtrace_symbol_t symbols[mCount]; local
134 get_backtrace_symbols(mStack, mCount, symbols);
137 format_backtrace_line(i, &mStack[i], &symbols[i],
141 free_backtrace_symbols(symbols, mCount);
  /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/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
SimpleDateFormatTest.java 115 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
131 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
161 DateFormatSymbols symbols = new DateFormatSymbols(Locale.ENGLISH); local
162 symbols.setEras(new String[] { "Before", "After" });
163 SimpleDateFormat f2 = new SimpleDateFormat("y'y'yy", symbols);
166 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(symbols));
182 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
568 assertTrue("Symbols identical", dfs != df.getDateFormatSymbols());
812 DateFormatSymbols symbols = new DateFormatSymbols(); local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
report.c 39 struct XRaySymbolTable* symbols = XRayGetSymbolTable(capture); local
70 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 73 this.symbols = [[
103 this.symbols = [[
137 this.symbols = [[
167 this.symbols = [[
197 this.symbols = [
210 ' Static symbols',
266 exe_exe_syms, '.exe with .exe symbols');
277 exe_dll_syms, '.exe with .dll symbols');
289 dll_dll_syms, '.dll with .dll symbols');
300 dll_exe_syms, '.dll with .exe symbols');
    [all...]

Completed in 1911 milliseconds

1 2 3 4 5 6