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

1 2 3

  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
symbols.go 33 type Symbols struct {
42 func (syms *Symbols) newsym(name string, v int) *Symbol {
62 func (syms *Symbols) Lookup(name string, v int) *Symbol {
76 func (syms *Symbols) ROLookup(name string, v int) *Symbol {
81 func (syms *Symbols) IncVersion() int {
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
symbols.go 33 type Symbols struct {
42 func (syms *Symbols) newsym(name string, v int) *Symbol {
62 func (syms *Symbols) Lookup(name string, v int) *Symbol {
76 func (syms *Symbols) ROLookup(name string, v int) *Symbol {
81 func (syms *Symbols) IncVersion() int {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pygram.py 4 """Export the Python grammar and symbols."""
20 class Symbols(object):
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
  /external/llvm/lib/Object/
RecordStreamer.h 1 //===-- RecordStreamer.h - Record asm defined and used symbols ---*- C++ -*===//
21 StringMap<State> Symbols;
  /external/llvm/tools/llvm-pdbdump/
CompilandDumper.h 23 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 };
  /prebuilts/go/darwin-x86/src/debug/plan9obj/
file.go 304 // Symbols returns the symbol table for f.
305 func (f *File) Symbols() ([]Sym, error) {
  /prebuilts/go/linux-x86/src/debug/plan9obj/
file.go 304 // Symbols returns the symbol table for f.
305 func (f *File) Symbols() ([]Sym, error) {
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
objfile.go 17 symbols() (syms []Sym, err error)
81 func (f *File) Symbols() ([]Sym, error) {
82 syms, err := f.raw.symbols()
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
objfile.go 17 symbols() (syms []Sym, err error)
81 func (f *File) Symbols() ([]Sym, error) {
82 syms, err := f.raw.symbols()
  /prebuilts/go/darwin-x86/src/cmd/pprof/
pprof.go 325 func (f *file) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) {
327 sym, err := f.file.Symbols()
  /prebuilts/go/linux-x86/src/cmd/pprof/
pprof.go 325 func (f *file) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) {
327 sym, err := f.file.Symbols()
  /device/linaro/bootloader/edk2/IntelFspPkg/Tools/
PatchFv.py 100 class Symbols:
756 # Get symbols
771 # Evaluate symbols
807 symTables = Symbols()
860 # Parse symbols then append it to params
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
PDBFile.h 140 std::unique_ptr<SymbolStream> Symbols;
  /external/llvm/include/llvm/ExecutionEngine/Orc/
LazyEmittingLayer.h 150 // to the base layer we'll just look for symbols there.
165 // Modules don't "provide" decls or common symbols.
191 assert(!MangledSymbols && "Mangled symbols map already exists?");
193 auto Symbols = llvm::make_unique<StringMap<const GlobalValue*>>();
199 if (auto GV = addGlobalValue(*Symbols, GO, Mang, SearchName,
204 MangledSymbols = std::move(Symbols);
249 /// @param ExportedSymbolsOnly If true, search only for exported symbols.
  /external/llvm/include/llvm/ObjectYAML/
COFFYAML.h 87 std::vector<Symbol> Symbols;
ELFYAML.h 169 // Although in reality the symbols reside in a section, it is a lot
173 LocalGlobalWeakSymbols Symbols;
294 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
  /external/llvm/tools/dsymutil/
DebugMap.h 44 /// symbols' addresses in the object file to their linked address in
153 iterator_range<StringMap<SymbolMapping>::const_iterator> symbols() const { function in class:llvm::dsymutil::DebugMapObject
154 return make_range(Symbols.begin(), Symbols.end());
168 StringMap<SymbolMapping> Symbols;
183 std::swap(Symbols, RHS.Symbols);
190 Symbols = std::move(RHS.Symbols);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 153 // Address and names of symbols in the section.
155 SmallVector<SymbolEntry, 64> Symbols;
170 // Just skip symbols not defined in this section.
183 Symbols.push_back(SymbolEntry(STE->Value, Name));
188 // Sort the symbols by address, just in case they didn't come in that way.
189 array_pod_sort(Symbols.begin(), Symbols.end());
192 if (!Symbols.size())
198 for (unsigned i = 0, e = Symbols.size() - 1; i != e; ++i) {
199 uint64_t StartOffset = Sect->Address + Symbols[i].first
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.cpp 56 // can reference other modules, either importing symbols from them, or exporting
57 // symbols from them:
67 // imports and exports support individual symbols, but also a wildcard syntax:
88 // Symbols from `import {SymbolA, SymbolB, ...} from ...;`.
89 SmallVector<JsImportedSymbol, 1> Symbols;
242 // Sort the individual symbols within the import.
244 SmallVector<JsImportedSymbol, 1> Symbols = Reference.Symbols;
246 Symbols.begin(), Symbols.end()
    [all...]
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 57 /// Symbols - The symbols for the label.
58 TinyPtrVector<MCSymbol *> Symbols;
70 /// DeletedAddrLabelsNeedingEmission - This is a per-function list of symbols
71 /// whose corresponding BasicBlock got deleted. These symbols need to be
100 if (!Entry.Symbols.empty()) {
102 return Entry.Symbols;
111 Entry.Symbols.push_back(Context.createTempSymbol());
112 return Entry.Symbols;
115 /// takeDeletedSymbolsForFunction - If we have any deleted symbols for F, retur
    [all...]
  /external/llvm/lib/DebugInfo/Symbolize/
SymbolizableObjectFile.cpp 56 std::vector<std::pair<SymbolRef, uint64_t>> Symbols =
58 for (auto &P : Symbols)
61 // If this is a COFF object and we didn't find any symbols, try the export
63 if (Symbols.empty()) {
134 // For big-endian PowerPC64 ELF, symbols in the .opd section refer to
199 // generally only contain the names of exported symbols.

Completed in 471 milliseconds

1 2 3