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

  /external/llvm/tools/dsymutil/
DebugMap.cpp 27 auto InsertResult = Symbols.insert(
30 if (InsertResult.second)
31 AddressToMapping[ObjectAddress] = &*InsertResult.first;
32 return InsertResult.second;
DwarfLinker.cpp 359 auto InsertResult = Strings.insert(std::make_pair(S, Entry));
360 return InsertResult.first->getKey();
    [all...]
  /external/clang/lib/Rewrite/
DeltaTree.cpp 55 struct InsertResult {
106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
108 void DoSplit(InsertResult &InsertRes);
132 DeltaTreeInteriorNode(const InsertResult &IR)
180 InsertResult *InsertRes) {
293 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) {
455 DeltaTreeNode::InsertResult InsertRes;
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 660 bool InsertResult = RecordsBeingLaidOut.insert(Key).second;
661 (void)InsertResult;
662 assert(InsertResult && "Recursively compiling a struct?");
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 536 auto InsertResult = Sections.insert(
538 if (InsertResult.second) {
544 InsertResult.first->second.first = SectionStartSymbol;
AsmParser.cpp 623 auto InsertResult = getContext().addGenDwarfSection(
625 assert(InsertResult.second && ".text section should not have debug info yet");
626 InsertResult.first->second.first = SectionStartSym;
    [all...]

Completed in 148 milliseconds