HomeSort by relevance Sort by last modified time
    Searched refs:UsedNames (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/LLVM/lib/MC/
MCContext.cpp 33 Allocator(), Symbols(Allocator), UsedNames(Allocator),
87 StringMapEntry<bool> *NameEntry = &UsedNames.GetOrCreateValue(Name);
94 NameEntry = &UsedNames.GetOrCreateValue(NewName);
100 // to the copy of the string that is embedded in the UsedNames entry.
  /external/llvm/lib/MC/
MCContext.cpp 48 Symbols(Allocator), UsedNames(Allocator),
81 UsedNames.clear();
133 auto NameIter = UsedNames.insert(std::make_pair(Name, false)).first;
190 auto NameEntry = UsedNames.insert(std::make_pair(NewName, true));
196 // embedded in the UsedNames entry.
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCContext.h 65 /// UsedNames - Keeps tracks of names that were used both for used declared
67 StringMap<bool, BumpPtrAllocator&> UsedNames;
  /external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
CPPBackend.cpp 97 NameSet UsedNames;
408 NameSet::iterator NI = UsedNames.find(name);
409 if (NI != UsedNames.end())
411 UsedNames.insert(name);
424 NameSet::iterator NI = UsedNames.find(name);
425 if (NI != UsedNames.end())
427 UsedNames.insert(name);
    [all...]
  /external/llvm/include/llvm/MC/
MCContext.h 102 StringMap<bool, BumpPtrAllocator &> UsedNames;

Completed in 75 milliseconds