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

1 2 3 4

  /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)
  /external/python/cpython2/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)
  /external/python/cpython3/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)
  /build/soong/symbol_inject/
elf.go 24 Symbols() ([]elf.Symbol, error)
49 symbols []elf.Symbol
55 func (f mockElfFile) Symbols() ([]elf.Symbol, error) { return f.symbols, nil }
67 symbols, err := elfFile.Symbols()
85 for _, symbol := range symbols {
106 // files? symbols more useful for the dynamic linker, the section offset (file interpretation)
120 file.Symbols = append(file.Symbols, &Symbol
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
MemoryProfileSymbolGen.py 25 class Symbols:
209 symbolsFile.symbolsTable[driverName] = Symbols()
  /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 };
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
RecordStreamer.h 1 //===- RecordStreamer.h - Record asm defined and used symbols ---*- C++ -*-===//
33 StringMap<State> Symbols;
67 // Symbols iterators
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
PrettyCompilandDumper.h 23 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 };
StreamUtil.h 25 Symbols,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DbiModuleDescriptorBuilder.h 94 std::vector<codeview::CVSymbol> Symbols;
PDBFile.h 136 std::unique_ptr<SymbolStream> Symbols;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
RTDyldObjectLinkingLayer.cpp 21 Expected<LookupResult> lookup(const LookupSet &Symbols) {
25 for (auto &S : Symbols)
47 Expected<LookupFlagsResult> lookupFlags(const LookupSet &Symbols) {
52 for (auto &S : Symbols)
123 for (auto &Sym : (*ObjFile)->symbols()) {
135 SymbolMap Symbols;
138 Symbols[ES.getSymbolStringPool().intern(KV.first)] = KV.second;
140 R.resolve(Symbols);
  /device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/
PatchFv.py 100 class Symbols:
793 # Get symbols
808 # Evaluate symbols
843 symTables = Symbols()
896 # Parse symbols then append it to params
  /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/libchrome/third_party/jinja2/
idtracking.py 12 sym = Symbols(parent=parent_symbols)
20 sym = Symbols(parent=parent_symbols)
25 class Symbols(object):
153 def __init__(self, symbols):
154 self.sym_visitor = FrameSymbolVisitor(symbols)
199 raise NotImplementedError('Cannot find symbols for %r' %
206 def __init__(self, symbols):
207 self.symbols = symbols
212 self.symbols.declare_parameter(node.name
    [all...]
  /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;
  /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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
LazyEmittingLayer.h 134 // to the base layer we'll just look for symbols there.
147 // Modules don't "provide" decls or common symbols.
173 assert(!MangledSymbols && "Mangled symbols map already exists?");
175 auto Symbols = llvm::make_unique<StringMap<const GlobalValue*>>();
180 if (auto GV = addGlobalValue(*Symbols, GO, Mang, SearchName,
184 MangledSymbols = std::move(Symbols);
224 /// @param ExportedSymbolsOnly If true, search only for exported symbols.
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
COFFYAML.h 102 std::vector<Symbol> Symbols;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 77 // in 'buffer', and Symbols[i-1] records the Value*.
88 SmallVector<const Value *, 4> Symbols;
89 // SymbolsBeforeStripping[i] is the original form of Symbols[i] before
91 // Symbols[i] == SymbolsBeforeStripping[i]->stripPointerCasts().
94 // emit a "generic()" cast for Symbols[i] depending on the address space of
135 Symbols.push_back(GVar);
160 const Value *v = Symbols[nSym];
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DebugMap.h 52 /// information along with the mapping between the symbols' addresses in the
175 iterator_range<StringMap<SymbolMapping>::const_iterator> symbols() const { function in class:llvm::dsymutil::DebugMapObject
176 return make_range(Symbols.begin(), Symbols.end());
179 bool empty() const { return Symbols.empty(); }
198 StringMap<SymbolMapping> Symbols;

Completed in 1873 milliseconds

1 2 3 4