/prebuilts/go/darwin-x86/src/debug/gosym/ |
symtab.go | 24 * Symbols 95 // In Go 1.1 and earlier, Paths is a list of symbols corresponding 107 // symbols decoded from the program and provides methods to translate 108 // between symbols, names, and addresses. 355 // Count text symbols and attach frame sizes, parameters, and 377 // Count & copy path symbols
|
/prebuilts/go/linux-x86/src/debug/gosym/ |
symtab.go | 24 * Symbols 95 // In Go 1.1 and earlier, Paths is a list of symbols corresponding 107 // symbols decoded from the program and provides methods to translate 108 // between symbols, names, and addresses. 355 // Count text symbols and attach frame sizes, parameters, and 377 // Count & copy path symbols
|
/external/valgrind/VEX/switchback/ |
linker.c | 147 char** symbols; 162 /* A private hash table for local symbols. */ [all...] |
/external/valgrind/VEX/unused/ |
linker.c | 81 char** symbols; member in struct:_ObjectCode 96 /* A private hash table for local symbols. */ 1045 oc->symbols = malloc(oc->n_symbols * sizeof(char*)); [all...] |
/external/selinux/sepolgen/src/sepolgen/ |
yacc.py | 68 error_count = 3 # Number of symbols that must be shifted to leave recovery mode 89 # This class is used to hold non-terminal grammar symbols during parsing. 189 lookaheadstack = [ ] # Stack of lookahead symbols 213 symstack = [ ] # Stack of grammar symbols 497 Terminals = { } # A dictionary mapping the names of terminal symbols to a 503 First = { } # A dictionary of precomputed FIRST(x) symbols 505 Follow = { } # A dictionary of precomputed FOLLOW(x) symbols 533 # prod - A list of symbols making up its production 546 # lookaheads - LALR lookahead symbols for this item 547 # len - Length of the production (number of symbols on right hand side [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/ |
objfile.go | 25 // - sequence of defined symbols 125 // Build list of symbols, and assign instructions to lists. 317 // Emit symbols.
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/ |
link.go | 299 // symbols in other shared libraries, as in this mode symbols are global by 302 // definition. (When not compiling to support Go shared libraries, all symbols are
|
objfile.go | 22 // - sequence of defined symbols 122 // Build list of symbols, and assign instructions to lists. 314 // Emit symbols.
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/ |
objfile.go | 25 // - sequence of defined symbols 125 // Build list of symbols, and assign instructions to lists. 317 // Emit symbols.
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/ |
link.go | 299 // symbols in other shared libraries, as in this mode symbols are global by 302 // definition. (When not compiling to support Go shared libraries, all symbols are
|
objfile.go | 22 // - sequence of defined symbols 122 // Build list of symbols, and assign instructions to lists. 314 // Emit symbols.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/ |
yacc.py | 68 error_count = 3 # Number of symbols that must be shifted to leave recovery mode 89 # This class is used to hold non-terminal grammar symbols during parsing. 189 lookaheadstack = [ ] # Stack of lookahead symbols 213 symstack = [ ] # Stack of grammar symbols 497 Terminals = { } # A dictionary mapping the names of terminal symbols to a 503 First = { } # A dictionary of precomputed FIRST(x) symbols 505 Follow = { } # A dictionary of precomputed FOLLOW(x) symbols 533 # prod - A list of symbols making up its production 546 # lookaheads - LALR lookahead symbols for this item 547 # len - Length of the production (number of symbols on right hand side [all...] |
/toolchain/binutils/binutils-2.25/opcodes/ |
mips-dis.c | [all...] |
/external/autotest/client/site_tests/logging_UserCrash/ |
logging_UserCrash.py | 73 Breakpad's minidump processor expects symbols to be in a directory 77 # Dump the symbols from the crasher 78 self._symbol_dir = os.path.join(self.srcdir, 'symbols') 87 symbols = utils.read_file(sym_name) 92 first_line = symbols.split('\n')[0] 95 raise error.TestError('Unexpected symbols format: %s',
|
/external/bison/data/ |
glr.c | 135 # symbols on RHS. 154 # Expansion of @NUM, where the current rule has RULE-LENGTH symbols 323 /* YYMAXRHS -- Maximum number of symbols on right-hand side of rule. */ 325 /* YYMAXLEFT -- Maximum number of symbols to the left of a handle 378 /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ 901 /** Number of symbols composing the right hand side of rule #RULE. */ [all...] |
/external/bison/src/ |
AnnotationList.c | 529 s, symbols[conflicted_token], actions, 552 || symbols[conflicted_token]->prec); [all...] |
/external/elfutils/src/ |
ld.h | 177 /* List of symbols in this section (set only for merge-able sections 179 struct symbol *symbols; member in struct:usedfiles::scninfo 225 /* Indirection table for the symbols defined here. */ 228 /* For undefined or common symbols we need a reference to the symbol 716 /* Tail of list of symbols for this section. Only set if the 718 struct symbol *symbols; member in struct:scnhead 728 /* Define hash table for version symbols. */ 824 /* If true undefined symbols when building DSOs are not fatal. */ 848 /* List of the symbols we created from linker script definitions. */ 852 /* Table with known symbols. * [all...] |
/external/llvm/include/llvm/MC/ |
MCAssembler.h | 437 /// AddrDelta - The expression for the difference of the two symbols that 470 /// AddrDelta - The expression for the difference of the two symbols that 582 SymbolDataListType Symbols; 596 /// The set of function symbols for which a .thumb_func directive has 788 symbol_iterator symbol_begin() { return Symbols.begin(); } 789 const_symbol_iterator symbol_begin() const { return Symbols.begin(); } 791 symbol_iterator symbol_end() { return Symbols.end(); } 792 const_symbol_iterator symbol_end() const { return Symbols.end(); } 794 symbol_range symbols() { return make_range(symbol_begin(), symbol_end()); } function in class:llvm::MCAssembler 795 const_symbol_range symbols() const function in class:llvm::MCAssembler [all...] |
/external/llvm/tools/dsymutil/ |
MachOUtils.cpp | 139 // Transfer the symbols described by \a NList to \a NewSymtab which is 147 // Do not transfer undefined symbols, we want real addresses. 173 // Wrapper around transferSymbol to transfer all of \a Obj symbols 175 // \returns the number of symbols in \a NewSymtab. 185 for (const object::SymbolRef &Symbol : Obj.symbols()) { 192 for (const object::SymbolRef &Symbol : Obj.symbols()) { 483 // Transfer symbols.
|
/external/regex-re2/ |
Makefile | 41 MAKE_SHARED_LIBRARY=$(CXX) -dynamiclib $(LDFLAGS) -exported_symbols_list libre2.symbols.darwin 43 MAKE_SHARED_LIBRARY=$(CXX) -shared -Wl,-soname,libre2.so.$(SONAME),--version-script=libre2.symbols $(LDFLAGS)
|
/external/v8/test/mjsunit/es6/ |
object-assign.js | 32 // Basic functionality works with symbols
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
transport_feedback_unittest.cc | 93 std::vector<TransportFeedback::StatusSymbol> symbols = local 97 for (TransportFeedback::StatusSymbol symbol : symbols) { 307 // After split there will be two symbols in symbol_vec: SL.
|
/frameworks/base/tools/aapt2/ |
ResourceUtils.cpp | 275 for (const Attribute::Symbol& symbol : enumAttr->symbols) { 276 // Enum symbols are stored as @package:id/symbol resources, 304 for (const Attribute::Symbol& symbol : flagAttr->symbols) { 305 // Flag symbols are stored as @package:id/symbol resources,
|
/frameworks/base/tools/aapt2/proto/ |
TableProtoDeserializer.cpp | 239 for (const pb::Attribute_Symbol& pbSymbol : pbAttr.symbols()) { 246 attr->symbols.push_back(std::move(symbol));
|
/frameworks/wilhelm/src/ |
Android.mk | 67 # Reduce size of .so and hide internal global symbols
|