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

/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/llvm/lib/Object/
H A DELFYAML.cpp245 // No SHT_SYMTAB. Use the top-level `Symbols` key instead.
313 IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols) {
314 IO.mapOptional("Local", Symbols.Local);
315 IO.mapOptional("Global", Symbols.Global);
316 IO.mapOptional("Weak", Symbols.Weak);
333 IO.mapOptional("Symbols", Object.Symbols);
312 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/tools/obj2yaml/
H A Dcoff2yaml.cpp88 std::vector<COFFYAML::Symbol> &Symbols = YAMLObj.Symbols; local
102 Symbols.push_back(Sym);
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h65 std::vector<Symbol> Symbols; member in struct:llvm::COFFYAML::Object
H A DELFYAML.h83 LocalGlobalWeakSymbols Symbols; member in struct:llvm::ELFYAML::Object
147 static void mapping(IO &IO, ELFYAML::LocalGlobalWeakSymbols &Symbols);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h85 // in 'buffer', and Symbols[i-1] records the Value*.
94 SmallVector<const Value *, 4> Symbols; member in class:llvm::NVPTXAsmPrinter::AggBuffer
133 Symbols.push_back(GVar);
156 const Value *v = Symbols[nSym];
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp283 const SymbolTableMap &Symbols,
309 SymbolTableMap::const_iterator lsi = Symbols.find(TargetName.data());
310 if (lsi != Symbols.end()) {
279 processRelocationRef(unsigned SectionID, RelocationRef RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
H A DRuntimeDyldELF.cpp788 const SymbolTableMap &Symbols,
806 SymbolTableMap::const_iterator lsi = Symbols.end();
809 lsi = Symbols.find(TargetName.data());
812 if (lsi != Symbols.end()) {
784 processRelocationRef(unsigned SectionID, RelocationRef RelI, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp154 std::vector<SymbolRef> &Symbols,
160 Symbols.push_back(*SI);
256 std::vector<SymbolRef> Symbols; local
260 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
264 std::vector<SymbolRef> UnsortedSymbols(Symbols);
266 std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());
349 for (unsigned SymIdx = 0; SymIdx != Symbols.size(); SymIdx++) {
351 Symbols[SymIdx].getName(SymName);
354 Symbols[SymId
151 getSectionsAndSymbols(const macho::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.cpp378 std::vector<std::pair<uint64_t, StringRef> > Symbols; local
391 Symbols.push_back(std::make_pair(Address, Name));
396 array_pod_sort(Symbols.begin(), Symbols.end());
427 if (Symbols.empty())
428 Symbols.push_back(std::make_pair(0, name));
445 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
446 uint64_t Start = Symbols[si].first;
453 else if (Symbols[si + 1].first != Start)
454 End = Symbols[s
[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/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp187 addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, ELFState<ELFT> &State, argument
191 for (unsigned i = 0, e = Symbols.size(); i != e; ++i) {
192 const ELFYAML::Symbol &Sym = Symbols[i];
215 const ELFYAML::LocalGlobalWeakSymbols &Symbols, ELFState<ELFT> &State,
222 SHeader.sh_info = Symbols.Local.size() + 1;
232 addSymbols(Symbols.Local, State, Syms, ELF::STB_LOCAL);
233 addSymbols(Symbols.Global, State, Syms, ELF::STB_GLOBAL);
234 addSymbols(Symbols.Weak, State, Syms, ELF::STB_WEAK);
344 handleSymtabSectionHeader<ELFT>(Doc.Symbols, State, SymtabSHeader);
214 handleSymtabSectionHeader( const ELFYAML::LocalGlobalWeakSymbols &Symbols, ELFState<ELFT> &State, typename object::ELFObjectFile<ELFT>::Elf_Shdr &SHeader) argument
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h85 typedef llvm::DenseSet<SymbolRef> Symbols; typedef in class:clang::ento::BugReport
93 SmallVector<Symbols *, 2> interestingSymbols;
137 Symbols &getInterestingSymbols();
/external/llvm/include/llvm/MC/
H A DMCContext.h70 /// Symbols - Bindings of names to symbols.
71 SymbolTable Symbols; member in class:llvm::MCContext
129 /// Symbols created for the start and end of this section.
228 return Symbols;
H A DMCAssembler.h851 iplist<MCSymbolData> Symbols; member in class:llvm::MCAssembler
1054 const SymbolDataListType &getSymbolList() const { return Symbols; }
1055 SymbolDataListType &getSymbolList() { return Symbols; }
1057 symbol_iterator symbol_begin() { return Symbols.begin(); }
1058 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
1060 symbol_iterator symbol_end() { return Symbols.end(); }
1061 const_symbol_iterator symbol_end() const { return Symbols.end(); }
1063 size_t symbol_size() const { return Symbols.size(); }
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp133 symbols Symbols; member in class:__anon21301::WinCOFFObjectWriter
326 for (symbols::iterator I = Symbols.begin(), E = Symbols.end(); I != E; ++I)
333 return createCOFFEntity<COFFSymbol>(Name, Symbols);
341 = createCOFFEntity<COFFSymbol>(Symbol->getName(), Symbols);
729 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
753 for (symbols::iterator i = Symbols.begin(), e = Symbols.end(); i != e; i++) {
913 for (symbols::iterator i = Symbols
[all...]
/external/llvm/tools/lto/
H A DLTOModule.cpp637 StringMap<State> Symbols; member in class:__anon21784::RecordStreamer
640 State &S = Symbols[Symbol.getName()];
654 State &S = Symbols[Symbol.getName()];
669 State &S = Symbols[Symbol.getName()];
714 return Symbols.begin();
718 return Symbols.end();
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp1786 InvalidatedSymbols Symbols; member in class:__anon15598::CollectReachableSymbolsCallback
1789 const InvalidatedSymbols &getSymbols() const { return Symbols; }
1792 Symbols.insert(Sym);
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp651 const MCContext::SymbolTable &Symbols = getContext().getSymbols(); local
652 for (MCContext::SymbolTable::const_iterator i = Symbols.begin(),
653 e = Symbols.end();

Completed in 388 milliseconds