Searched refs:Symbols (Results 1 - 25 of 78) sorted by relevance

1234

/external/python/cpython2/Lib/lib2to3/
H A Dpygram.py20 class Symbols(object): class in inherits:object
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
/external/python/cpython3/Lib/lib2to3/
H A Dpygram.py20 class Symbols(object): class in inherits:object
34 python_symbols = Symbols(python_grammar)
40 pattern_symbols = Symbols(pattern_grammar)
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp155 SmallVector<SymbolEntry, 64> Symbols; local
183 Symbols.push_back(SymbolEntry(STE->Value, Name));
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;
200 uint64_t EndOffset = Symbols[i + 1].first - 1;
201 DEBUG(dbgs() << "Extracting function: " << Symbols[i].second
203 extractFunction(Symbols[
294 SmallVector<SymbolEntry, 64> Symbols; local
[all...]
/external/llvm/lib/Object/
H A DRecordStreamer.cpp15 State &S = Symbols[Symbol.getName()];
33 State &S = Symbols[Symbol.getName()];
51 State &S = Symbols[Symbol.getName()];
69 return Symbols.begin();
72 RecordStreamer::const_iterator RecordStreamer::end() { return Symbols.end(); }
H A DRecordStreamer.h21 StringMap<State> Symbols; member in class:llvm::RecordStreamer
/external/clang/lib/Format/
H A DSortJavaScriptImports.cpp88 // Symbols from `import {SymbolA, SymbolB, ...} from ...;`.
89 SmallVector<JsImportedSymbol, 1> Symbols; member in struct:clang::format::JsModuleReference
244 SmallVector<JsImportedSymbol, 1> Symbols = Reference.Symbols; local
246 Symbols.begin(), Symbols.end(),
250 if (Symbols == Reference.Symbols) {
257 SourceLocation SymbolsStart = Reference.Symbols.front().Range.getBegin();
258 SourceLocation SymbolsEnd = Reference.Symbols
[all...]
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolDumper.h42 bool dump(const CVSymbolArray &Symbols);
H A DCVSymbolVisitor.h75 void visitSymbolStream(const CVSymbolArray &Symbols) { argument
76 for (const auto &I : Symbols) {
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineModuleInfo.cpp56 /// Symbols - The symbols for the label. This is a pointer union that is
58 PointerUnion<MCSymbol *, std::vector<MCSymbol*>*> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
86 if (I->second.Symbols.is<std::vector<MCSymbol*>*>())
87 delete I->second.Symbols.get<std::vector<MCSymbol*>*>();
107 if (!Entry.Symbols.isNull()) {
109 if (Entry.Symbols.is<MCSymbol*>())
110 return Entry.Symbols.get<MCSymbol*>();
111 return (*Entry.Symbols.get<std::vector<MCSymbol*>*>())[0];
121 Entry.Symbols = Result;
134 if (Entry.Symbols
[all...]
/external/protobuf/csharp/
H A Dbuild_packages.bat7 %NUGET% pack src\Google.Protobuf\Google.Protobuf.nuspec -Symbols || goto :error
/external/llvm/lib/CodeGen/
H A DMachineModuleInfo.cpp57 /// Symbols - The symbols for the label.
58 TinyPtrVector<MCSymbol *> Symbols; member in struct:llvm::MMIAddrLabelMap::AddrLabelSymEntry
100 if (!Entry.Symbols.empty()) {
102 return Entry.Symbols;
111 Entry.Symbols.push_back(Context.createTempSymbol());
112 return Entry.Symbols;
137 assert(!Entry.Symbols.empty() && "Didn't have a symbol, why a callback?");
143 for (MCSymbol *Sym : Entry.Symbols) {
159 assert(!OldEntry.Symbols.empty() && "Didn't have a symbol, why a callback?");
164 if (NewEntry.Symbols
[all...]
/external/llvm/tools/dsymutil/
H A DDebugMap.h154 return make_range(Symbols.begin(), Symbols.end());
168 StringMap<SymbolMapping> Symbols; member in class:llvm::dsymutil::DebugMapObject
183 std::swap(Symbols, RHS.Symbols);
190 Symbols = std::move(RHS.Symbols);
H A DDebugMap.cpp29 auto InsertResult = Symbols.insert(
43 Entries.reserve(Symbols.getNumItems());
44 for (const auto &Sym : make_range(Symbols.begin(), Symbols.end()))
73 StringMap<SymbolMapping>::const_iterator Sym = Symbols.find(SymbolName);
74 if (Sym == Symbols.end())
206 Entries.reserve(Obj.Symbols.size());
207 for (auto &Entry : Obj.Symbols)
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
H A Dbacktracking.rb17 scope Symbols {
36 scope Symbols; // entire file is a scope
38 $Symbols::types = Set.new
64 scope Symbols; // put parameters and locals into same scope for now
66 $Symbols::types = set()
136 $Symbols::types.add($IDENTIFIER.text)
/external/llvm/tools/llvm-pdbdump/
H A DCompilandDumper.h23 enum Flags { None = 0x0, Children = 0x1, Symbols = 0x2, Lines = 0x4 }; enumerator in enum:llvm::pdb::CompilandDumper::Flags
/external/llvm/tools/yaml2obj/
H A Dyaml2elf.cpp119 const std::vector<ELFYAML::Symbol> &Symbols);
128 void addSymbols(const std::vector<ELFYAML::Symbol> &Symbols,
270 SHeader.sh_info = Doc.Symbols.Local.size() + 1;
283 for (const auto &Sym : Doc.Symbols.Local)
285 for (const auto &Sym : Doc.Symbols.Global)
287 for (const auto &Sym : Doc.Symbols.Weak)
291 addSymbols(Doc.Symbols.Local, Syms, ELF::STB_LOCAL);
292 addSymbols(Doc.Symbols.Global, Syms, ELF::STB_GLOBAL);
293 addSymbols(Doc.Symbols.Weak, Syms, ELF::STB_WEAK);
315 void ELFState<ELFT>::addSymbols(const std::vector<ELFYAML::Symbol> &Symbols, argument
482 buildSymbolIndex(std::size_t &StartIndex, const std::vector<ELFYAML::Symbol> &Symbols) argument
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-objdump/
H A Dllvm-objdump.cpp178 std::vector<std::pair<uint64_t, StringRef> > Symbols; local
188 Symbols.push_back(std::make_pair(Address, Name));
193 array_pod_sort(Symbols.begin(), Symbols.end());
215 if (Symbols.empty())
216 Symbols.push_back(std::make_pair(0, name));
261 for (unsigned si = 0, se = Symbols.size(); si != se; ++si) {
262 uint64_t Start = Symbols[si].first;
269 else if (Symbols[si + 1].first != Start)
270 End = Symbols[s
[all...]
H A DMachODump.cpp218 std::vector<Symbol> &Symbols,
261 Symbols.push_back(copySymbol(STE));
266 Symbols.push_back(copySymbol(STE));
326 std::vector<Symbol> Symbols; local
329 getSectionsAndSymbols(Header, MachOObj.get(), &SymtabLC, Sections, Symbols,
333 std::vector<Symbol> UnsortedSymbols(Symbols);
335 array_pod_sort(Symbols.begin(), Symbols.end());
364 std::vector<Symbol> Symbols; local
366 getSectionsAndSymbols(Header, DSYMObj.get(), 0, DSYMSections, Symbols,
214 getSectionsAndSymbols(const macho::Header &Header, MachOObject *MachOObj, InMemoryStruct<macho::SymtabLoadCommand> *SymtabLC, std::vector<Section> &Sections, std::vector<Symbol> &Symbols, SmallVectorImpl<uint64_t> &FoundFns) argument
[all...]
/external/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp123 StringRef Symbols[2]; member in struct:CompleteObjectLocator
127 StringRef Symbols[1]; member in struct:ClassHierarchyDescriptor
131 StringRef Symbols[2]; member in struct:BaseClassDescriptor
135 StringRef Symbols[1]; member in struct:TypeDescriptor
151 StringRef Symbols[2]; member in struct:CatchableType
231 StringRef *I = std::begin(COL.Symbols), *E = std::end(COL.Symbols);
240 StringRef *I = std::begin(CHD.Symbols), *E = std::end(CHD.Symbols);
256 StringRef *I = std::begin(BCD.Symbols), *
[all...]
/external/llvm/include/llvm/MC/
H A DMCAssembler.h105 SymbolDataListType Symbols; member in class:llvm::MCAssembler
314 symbol_iterator symbol_begin() { return Symbols.begin(); }
315 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
317 symbol_iterator symbol_end() { return Symbols.end(); }
318 const_symbol_iterator symbol_end() const { return Symbols.end(); }
325 size_t symbol_size() const { return Symbols.size(); }
/external/llvm/test/MC/Mips/
H A Dmicromips-label-test-sections.s12 # CHECK: Symbols [
H A Dmicromips-label-test.s17 # CHECK: Symbols [
/external/llvm/lib/DebugInfo/CodeView/
H A DModuleSubstreamVisitor.cpp16 return visitUnknown(ModuleSubstreamKind::Symbols, Data);
61 case ModuleSubstreamKind::Symbols:
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCAssembler.h673 iplist<MCSymbolData> Symbols; member in class:llvm::MCAssembler
833 const SymbolDataListType &getSymbolList() const { return Symbols; }
834 SymbolDataListType &getSymbolList() { return Symbols; }
836 symbol_iterator symbol_begin() { return Symbols.begin(); }
837 const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
839 symbol_iterator symbol_end() { return Symbols.end(); }
840 const_symbol_iterator symbol_end() const { return Symbols.end(); }
842 size_t symbol_size() const { return Symbols.size(); }
/external/llvm/test/MC/COFF/
H A Dcomm-align.s40 # CHECK: Symbols [

Completed in 2075 milliseconds

1234