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

1234

/external/chromium_org/v8/test/cctest/
H A Dtest-symbols.cc22 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 shoul
[all...]
/external/chromium_org/third_party/mesa/src/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/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/oprofile/libpp/
H A Dsymbol_container.h3 * 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...]
H A Dprofile_container.h3 * 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/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/third_party/libjingle/source/talk/base/
H A Dlatebindingsymboltable.cc93 // NULL, or else some symbols may be left with uninitialized data that the
98 void *symbols[]) {
104 if (!LoadSymbol(handle, symbol_names[i], &symbols[i])) {
95 InternalLoadSymbols(DllHandle handle, int num_symbols, const char *const symbol_names[], void *symbols[]) argument
/external/chromium_org/third_party/smhasher/src/
H A DAvalancheTest.cpp7 const char * symbols = ".123456789X"; local
28 printf("%c",symbols[s]);
/external/chromium_org/v8/src/
H A Dplatform-posix.h49 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);
/external/chromium_org/third_party/icu/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
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, statu
253 DateFormatSymbols* symbols = new DateFormatSymbols(Locale::getUS(), status); local
325 DateFormatSymbols *symbols = new DateFormatSymbols(Locale::getJapan(), status); local
[all...]
/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/icu4c/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...]
/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:__anon383
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DANGLEWebKitBridge.cpp47 static bool getSymbolInfo(ShHandle compiler, ShShaderInfo symbolType, Vector<ANGLEShaderSymbol>& symbols) argument
106 // We can't check the size because regular symbols and arrays of length 1 both have a size of 1.
116 symbols.append(symbol);
119 // Add symbols for each array element.
125 symbols.append(symbol);
168 bool ANGLEWebKitBridge::compileShaderSource(const char* shaderSource, ANGLEShaderType shaderType, String& translatedShaderSource, String& shaderValidationLog, Vector<ANGLEShaderSymbol>& symbols, int extraCompileOptions) argument
212 if (!getSymbolInfo(compiler, SH_ACTIVE_ATTRIBUTES, symbols))
214 if (!getSymbolInfo(compiler, SH_ACTIVE_UNIFORMS, symbols))
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c109 // Get symbols.
129 if (IsFull(tree)) return 0; // error: too many symbols.
155 // Find out number of symbols and the root symbol.
187 // Add symbols one-by-one.
207 const int* const symbols, int max_symbol,
215 assert(symbols != NULL);
220 // Add symbols one-by-one.
223 if (symbols[i] < 0 || symbols[i] >= max_symbol) {
226 if (!TreeAddSymbol(tree, symbols[
204 HuffmanTreeBuildExplicit(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/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/chromium_org/v8/test/mjsunit/tools/
H A Dtickprocessor.js73 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...]
/external/icu4c/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/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/oprofile/libutil++/
H A Dop_spu_bfd.cpp59 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);

Completed in 560 milliseconds

1234