Searched refs:InsertResult (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/Rewrite/
H A DDeltaTree.cpp55 struct InsertResult { struct in class:__anon1272::DeltaTreeNode
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/llvm/tools/dsymutil/
H A DDebugMap.cpp29 auto InsertResult = Symbols.insert( local
32 if (InsertResult.second)
33 AddressToMapping[ObjectAddress] = &*InsertResult.first;
34 return InsertResult.second;
H A DDwarfLinker.cpp3436 auto InsertResult = Strings.insert(std::make_pair(S, Entry)); local
3437 return InsertResult.first->getKey();
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp378 auto InsertResult = local
380 assert(InsertResult.second);
381 if (auto EC = InsertResult.first->second.getError())
383 return InsertResult.first->second->get();
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp675 bool InsertResult = RecordsBeingLaidOut.insert(Key).second; local
676 (void)InsertResult;
677 assert(InsertResult && "Recursively compiling a struct?");
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp525 bool InsertResult = getContext().addGenDwarfSection(ELFSection); local
526 if (InsertResult) {
H A DAsmParser.cpp647 bool InsertResult = getContext().addGenDwarfSection(Sec); local
648 assert(InsertResult && ".text section should not have debug info yet");
649 (void)InsertResult;

Completed in 285 milliseconds