Searched refs:symbol (Results 76 - 100 of 580) sorted by relevance

1234567891011>>

/external/protobuf/python/google/protobuf/
H A Ddescriptor_database.py99 def FindFileContainingSymbol(self, symbol):
100 """Finds the file descriptor proto containing the specified symbol.
102 The symbol should be a fully qualified name including the file descriptor's
108 The file descriptor proto containing the specified symbol must be added to
112 symbol: The fully qualified symbol name.
115 The file descriptor proto containing the symbol.
118 KeyError if no file contains the specified symbol.
121 return self._file_desc_protos_by_symbol[symbol]
138 for symbol i
[all...]
/external/llvm/utils/
H A Dextract_symbols.py7 linker. This program automates the latter by inspecting the symbol tables of a
27 # different tools. We use subprocess.Popen and yield a symbol at a time instead
64 # them and decide if this is a defined external symbol when we see
122 def should_keep_microsoft_symbol(symbol, calling_convention_decoration):
124 if not '?' in symbol:
127 match = re.match('[_@]([^@]+)', symbol)
130 return symbol
133 elif symbol.startswith('??$'):
138 elif symbol.startswith('??_G') or symbol
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
H A DLZMADecoder.java157 int symbol = 1;
161 symbol = (symbol << 1) | rc.decodeBit(probs, symbol);
162 } while (symbol < 0x100);
173 bit = rc.decodeBit(probs, offset + matchBit + symbol);
174 symbol = (symbol << 1) | bit;
176 } while (symbol < 0x100);
179 lz.putByte((byte)symbol);
[all...]
/external/bison/src/
H A Dgram.h30 Each symbol (either token or variable) receives a symbol number.
44 instance RITEM stores both symbol (the RHS) and rule numbers: the
56 RULES[R].lhs -- the symbol of the left hand side of rule R.
61 RULES[R].prec -- the symbol providing the precedence level of R.
63 RULES[R].precsym -- the symbol attached (via %prec) to give its
65 need to distinguish one from the other when reducing: a symbol used
81 The right hand side is stored as symbol numbers in a portion of
96 SYMBOLS[I]->prec records the precedence level of each symbol.
100 as they ought to. Zero as a symbol o
[all...]
H A Dsymlist.h33 * Whether this node contains a symbol, a semantic type, a \c <*>, or a
42 * The symbol or \c NULL iff
45 symbol *sym;
53 /* Proper location of the symbol, not all the rule */
56 /* If this symbol is the generated lhs for a midrule but this is the rule in
60 /* If this symbol is the generated lhs for a midrule and this is that
72 symbol *ruleprec;
86 symbol_list *symbol_list_sym_new (symbol *sym, location loc);
111 /** Get item \c n in symbol list \c l. */
115 symbol
[all...]
H A Dparse-gram.y66 static symbol *current_lhs_symbol;
71 /** Set the new current left-hand side symbol, possibly common
76 current_lhs(symbol *sym, location loc, named_ref *ref)
116 symbol *symbol;
201 /* braceless is not to be used for rule or symbol actions, as it
219 %type <symbol> id id_colon string_as_id symbol symbol.prec
220 %printer { fprintf (stderr, "%s", $$->tag); } <symbol>
655 symbol: label
[all...]
/external/llvm/test/MC/Mips/
H A Dmicromips-expansions.s19 # CHECK: lui $10, %hi(symbol) # encoding: [0xaa'A',0x41'A',0x00,0x00]
21 # CHECK: value: %hi(symbol),
24 # CHECK: lw $10, %lo(symbol)($10) # encoding: [0x4a'A',0xfd'A',0x00,0x00]
26 # CHECK: value: %lo(symbol),
28 # CHECK: lui $1, %hi(symbol) # encoding: [0xa1'A',0x41'A',0x00,0x00]
30 # CHECK: value: %hi(symbol),
33 # CHECK: sw $10, %lo(symbol)($1) # encoding: [0x41'A',0xf9'A',0x00,0x00]
35 # CHECK: value: %lo(symbol),
53 lw $t2, symbol($a0)
54 sw $t2, symbol(
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java42 int symbol = Base.kNumLowLenSymbols;
44 symbol += m_MidCoder[posState].Decode(rangeDecoder);
46 symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
47 return symbol;
64 int symbol = 1;
66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
67 while (symbol < 0x100);
68 return (byte)symbol;
[all...]
/external/libxml2/
H A Dxmlmodule.c102 * @name: the name of the symbol
103 * @symbol: the resulting symbol address
105 * Lookup for a symbol address in the given module
111 * Returns 0 if the symbol was found, or -1 in case of error
114 xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol) argument
118 if ((NULL == module) || (symbol == NULL) || (name == NULL)) {
125 rc = xmlModulePlatformSymbol(module->handle, name, symbol);
131 "failed to find symbol: %s\n",
239 * returns 0 on success and the loaded symbol i
243 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
287 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
335 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
392 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
447 xmlModulePlatformSymbol(void *handle, const char *name, void **symbol) argument
[all...]
/external/webp/src/utils/
H A Dhuffman_utils.c65 // processed symbol
86 int symbol; // symbol index in original or sorted table local
98 for (symbol = 0; symbol < code_lengths_size; ++symbol) {
99 if (code_lengths[symbol] > MAX_ALLOWED_CODE_LENGTH) {
102 ++count[code_lengths[symbol]];
110 // Generate offsets into sorted symbol table by code length.
119 // Sort symbols by length, by symbol orde
[all...]
/external/ImageMagick/coders/
H A Duil.c172 *symbol;
296 symbol=AcquireString("");
320 symbol[0]=Cixel[k];
324 symbol[j]=Cixel[k];
326 symbol[j]='\0';
327 (void) SubstituteString(&symbol,"'","''");
330 " background color = '%s'",symbol);
335 (QuantumRange/2.0) ? "background" : "foreground",symbol);
357 symbol[0]=Cixel[k];
362 symbol[
167 *symbol; local
[all...]
/external/iptables/extensions/
H A Dlibxt_TOS.c54 const struct tos_symbol_info *symbol; local
59 " --set-tos symbol Set TOS field (IPv4 only) by symbol\n"
62 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
64 symbol->value, symbol->value, symbol->name);
71 const struct tos_symbol_info *symbol; local
[all...]
/external/toybox/kconfig/
H A Dexpr.h40 struct symbol *sym;
71 struct symbol { struct
72 struct symbol *next;
115 struct symbol *sym;
138 struct symbol *sym;
157 extern struct symbol symbol_yes, symbol_no, symbol_mod;
158 extern struct symbol *modules_sym;
159 extern struct symbol *sym_defconfig_list;
161 struct expr *expr_alloc_symbol(struct symbol *sym);
164 struct expr *expr_alloc_comp(enum expr_type type, struct symbol *s
[all...]
/external/vixl/examples/aarch32/
H A Dcustom-aarch32-disasm.cc51 std::map<Label::Offset, const char*>::iterator symbol = variable
54 if (symbol != symbols_.end()) {
55 os() << symbol->second;
79 std::map<Label::Offset, const char*>::iterator symbol = variable
81 if (symbol != GetStream()->GetSymbols().end()) {
82 os().os() << symbol->second << ":" << std::endl;
/external/parameter-framework/upstream/utility/posix/
H A DDynamicLibrary.cpp56 void *DynamicLibrary::osGetSymbol(const std::string &symbol) const
58 void *sym = dlsym(_handle, symbol.c_str());
/external/skia/src/sksl/ir/
H A DSkSLSymbolTable.h36 void add(const String& name, std::unique_ptr<Symbol> symbol);
38 void addWithoutOwnership(const String& name, const Symbol* symbol);
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
H A Dreference.py6 import symbol namespace
23 if nodes[0].type != symbol.atom:
31 if nodes[i].type != symbol.trailer:
75 self._children.append(snippet.Symbol(symbol.trailer, token_snippets))
H A Dimport_statement.py7 import symbol namespace
26 if symbol_type != symbol.dotted_name:
60 if (symbol_type != symbol.dotted_as_name and
61 symbol_type != symbol.import_as_name):
159 if symbol_type != symbol.import_stmt:
161 if children[0].type != symbol.import_name:
219 if symbol_type != symbol.import_stmt:
221 if children[0].type != symbol.import_from:
233 import_as_names = self.FindChild(symbol.import_as_names)
251 return self.FindChild(symbol
[all...]
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/
H A Dmoney_base.pass.cpp15 // enum part {none, space, symbol, sign, value};
27 static_assert(std::money_base::symbol == 2, "");
/external/python/cpython2/PC/
H A Dtestpy.py15 import symbol namespace
17 print """Could not import the standard "symbol" module. If this is
/external/swiftshader/src/Common/
H A DSharedLibrary.hpp120 void *symbol = dlsym(library, name); local
122 if(!symbol)
128 return symbol;
/external/webrtc/webrtc/modules/audio_device/linux/
H A Dlatebindingsymboltable_linux.cc70 void **symbol) {
72 *symbol = dlsym(handle, symbol_name);
76 "Error loading symbol %s : %d", symbol_name, err);
78 } else if (!*symbol) {
89 // This routine MUST assign SOME value for every symbol, even if that value is
68 LoadSymbol(DllHandle handle, const char *symbol_name, void **symbol) argument
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs48 uint symbol = Base.kNumLowLenSymbols;
50 symbol += m_MidCoder[posState].Decode(rangeDecoder);
53 symbol += Base.kNumMidLenSymbols;
54 symbol += m_HighCoder.Decode(rangeDecoder);
56 return symbol;
71 uint symbol = 1;
73 symbol = (symbol << 1) | m_Decoders[symbol].Decode(rangeDecoder);
74 while (symbol <
[all...]
/external/brotli/dec/
H A Dhuffman.c91 processed symbol */
108 int symbol; /* symbol index in original or sorted table */ local
121 /* generate offsets into sorted symbol table by code length */
122 symbol = -1;
125 symbol += count[bits];
126 offset[bits] = symbol;
132 /* sort symbols by length, by symbol order within each length */
133 symbol = BROTLI_CODE_LENGTH_CODES;
136 symbol
178 int symbol; /* symbol index in original or sorted table */ local
[all...]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/number/
H A DCurrencyDemo.java52 symbols.setCurrencySymbol(hack.symbol);
61 String symbol; field in class:CurrencyDemo.HackCurrencyInfo
62 HackCurrencyInfo(int decimals, double rounding, String symbol) { argument
65 this.symbol = symbol;

Completed in 3708 milliseconds

1234567891011>>