Searched defs:Symbols (Results 1 - 25 of 26) sorted by relevance

12

/external/lldb/include/lldb/Host/
H A DSymbols.h1 //===-- Symbols.h -----------------------------------------------*- C++ -*-===//
24 class Symbols class in namespace:lldb_private
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
H A Dparse_core.py14 class Symbols(object): class in inherits:object
22 return "Symbols(%s,%s)"%(self.lookup,self.tags)
H A Dcparse.py13 from parse_core import Symbols, Parser namespace
103 symbols = Symbols(symbols)
163 symbols = Symbols(symbols)
739 self.symbols = Symbols()
813 node.parse( Lexer(cstr,True), Symbols() )
H A Dir.py16 from parse_core import Symbols #, Parser namespace
1043 declaration.parse( self.lexer, Symbols() ) # use new name-space
1044 #declaration.parse( Lexer( cstr ), Symbols() )
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dsymbol.py6 class Symbols(object): class in inherits:object
14 self.symbols[Symbols._GetKey(exec_file_rel_path, offset)] = symbol
17 return self.symbols.get(Symbols._GetKey(exec_file_rel_path, offset))
20 assert(isinstance(other, Symbols))
/external/llvm/lib/Object/
H A DRecordStreamer.h21 StringMap<State> Symbols; member in class:llvm::RecordStreamer
H A DELFYAML.cpp304 // No SHT_SYMTAB. Use the top-level `Symbols` key instead.
666 IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) {
667 IO.mapOptional("Local", Symbols.Local);
668 IO.mapOptional("Global", Symbols.Global);
669 IO.mapOptional("Weak", Symbols.Weak);
736 IO.mapOptional("Symbols", Object.Symbols);
665 mapping( IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) argument
/external/srec/srec/Semproc/include/
H A DSR_SymbolTable.h67 Symbol Symbols[MAX_SYMBOLS]; member in struct:SymbolTable_t
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h75 std::vector<Symbol> Symbols; member in struct:llvm::COFFYAML::Object
H A DELFYAML.h114 LocalGlobalWeakSymbols Symbols; member in struct:llvm::ELFYAML::Object
194 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp137 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols; local
205 Symbols.push_back(Sym);
/external/lldb/source/Commands/
H A DCommandCompletions.cpp43 {eSymbolCompletion, CommandCompletions::Symbols},
374 CommandCompletions::Symbols function in class:CommandCompletions
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h84 // in 'buffer', and Symbols[i-1] records the Value*.
93 SmallVector<const Value *, 4> Symbols; member in class:llvm::NVPTXAsmPrinter::AggBuffer
134 Symbols.push_back(GVar);
157 const Value *v = Symbols[nSym];
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp153 std::vector<SymbolRef> &Symbols,
157 Symbols.push_back(Symbol);
253 std::vector<SymbolRef> Symbols; local
257 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
261 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
342 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
344 Symbols[SymIdx].getName(SymName);
347 Symbols[SymIdx].getType(ST);
353 Sections[SectIdx].containsSymbol(Symbols[SymId
150 getSectionsAndSymbols(const MachO::mach_header Header, MachOObjectFile *MachOObj, std::vector<SectionRef> &Sections, std::vector<SymbolRef> &Symbols, SmallVectorImpl<uint64_t> &FoundFns, uint64_t &BaseSegmentAddress) argument
[all...]
H A Dllvm-objdump.cpp422 std::vector<std::pair<uint64_t, StringRef>> Symbols; local
438 Symbols.push_back(std::make_pair(Address, Name));
443 array_pod_sort(Symbols.begin(), Symbols.end());
473 if (Symbols.empty())
474 Symbols.push_back(std::make_pair(0, name));
490 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
491 uint64_t Start = Symbols[si].first;
498 else if (Symbols[si + 1].first != Start)
499 End = Symbols[s
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp121 const std::vector<ELFYAML::Symbol> &Symbols);
130 void addSymbols(const std::vector<ELFYAML::Symbol> &Symbols,
246 SHeader.sh_info = Doc.Symbols.Local.size() + 1;
258 for (const auto &Sym : Doc.Symbols.Local)
260 for (const auto &Sym : Doc.Symbols.Global)
262 for (const auto &Sym : Doc.Symbols.Weak)
266 addSymbols(Doc.Symbols.Local, Syms, ELF::STB_LOCAL);
267 addSymbols(Doc.Symbols.Global, Syms, ELF::STB_GLOBAL);
268 addSymbols(Doc.Symbols.Weak, Syms, ELF::STB_WEAK);
288 void ELFState<ELFT>::addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, argument
392 buildSymbolIndex(std::size_t &StartIndex, const std::vector<ELFYAML::Symbol> &Symbols) argument
[all...]
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp55 /// Symbols - The symbols for the label. This is a pointer union that is
57 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
85 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
86 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
106 if (!Entry.Symbols.isNull()) {
108 if (Entry.Symbols.is<MCSymbol*>())
109 return Entry.Symbols.get<MCSymbol*>();
110 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
120 Entry.Symbols = Result;
133 if (Entry.Symbols
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h86 typedef llvm::DenseSet<SymbolRef> Symbols; typedef in class:clang::ento::BugReport
94 SmallVector<Symbols *, 2> interestingSymbols;
138 Symbols &getInterestingSymbols();
/external/llvm/include/llvm/MC/
H A DMCContext.h73 /// Symbols - Bindings of names to symbols.
74 SymbolTable Symbols; member in class:llvm::MCContext
135 /// Symbols created for the start and end of each section, used for
243 return Symbols;
H A DMCAssembler.h876 iplist<MCSymbolData> Symbols; member in class:llvm::MCAssembler
1094 const SymbolDataListType &getSymbolList() const { return Symbols; }
1095 SymbolDataListType &getSymbolList() { return Symbols; }
1097 symbol_iterator symbol_begin() { return Symbols.begin(); }
1098 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
1100 symbol_iterator symbol_end() { return Symbols.end(); }
1101 const_symbol_iterator symbol_end() const { return Symbols.end(); }
1106 size_t symbol_size() const { return Symbols.size(); }
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp655 ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols,
703 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
704 if (lsi != Symbols.end()) {
653 processRelocationRef( unsigned SectionID, relocation_iterator RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp133 symbols Symbols; member in class:__anon25894::WinCOFFObjectWriter
312 return createCOFFEntity<COFFSymbol>(Name, Symbols);
320 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
843 for (auto & Symbol : Symbols) {
859 for (auto & Symbol : Symbols) {
1013 for (auto & Symbol : Symbols)
H A DELFObjectWriter.cpp1088 // Symbols are required to be in lexicographic order.
1222 const std::vector<MCSymbolData *> &Symbols,
1224 for (MCSymbolData *Sym : Symbols) {
1221 UpdateSymbols(const MCAsmLayout &Layout, const std::vector<MCSymbolData *> &Symbols, MCFragment &NewFragment) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1892 InvalidatedSymbols Symbols; member in class:__anon18271::CollectReachableSymbolsCallback
1895 const InvalidatedSymbols &getSymbols() const { return Symbols; }
1898 Symbols.insert(Sym);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2201 std::vector<MCSymbol*> Symbols = MMI->getAddrLabelSymbolToEmit(BB); local
2202 for (auto *Sym : Symbols)

Completed in 620 milliseconds

12