Home
last modified time | relevance | path

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

/external/clang/lib/Rewrite/
DDeltaTree.cpp55 struct InsertResult { struct in __anon3adfd4730111::DeltaTreeNode
106 bool DoInsertion(unsigned FileIndex, int Delta, InsertResult *InsertRes);
108 void DoSplit(InsertResult &InsertRes);
132 DeltaTreeInteriorNode(const InsertResult &IR) in DeltaTreeInteriorNode()
180 InsertResult *InsertRes) { in DoInsertion()
293 void DeltaTreeNode::DoSplit(InsertResult &InsertRes) { in DoSplit()
455 DeltaTreeNode::InsertResult InsertRes; in AddDelta()
/external/llvm/tools/dsymutil/
DDebugMap.cpp29 auto InsertResult = Symbols.insert( in addSymbol() local
32 if (InsertResult.second) in addSymbol()
33 AddressToMapping[ObjectAddress] = &*InsertResult.first; in addSymbol()
34 return InsertResult.second; in addSymbol()
DDwarfLinker.cpp3436 auto InsertResult = Strings.insert(std::make_pair(S, Entry)); in internString() local
3437 return InsertResult.first->getKey(); in internString()
/external/llvm/lib/DebugInfo/Symbolize/
DSymbolize.cpp378 auto InsertResult = in getOrCreateModuleInfo() local
380 assert(InsertResult.second); in getOrCreateModuleInfo()
381 if (auto EC = InsertResult.first->second.getError()) in getOrCreateModuleInfo()
383 return InsertResult.first->second->get(); in getOrCreateModuleInfo()
/external/clang/lib/CodeGen/
DCodeGenTypes.cpp675 bool InsertResult = RecordsBeingLaidOut.insert(Key).second; in ConvertRecordDeclType() local
676 (void)InsertResult; in ConvertRecordDeclType()
677 assert(InsertResult && "Recursively compiling a struct?"); in ConvertRecordDeclType()
/external/llvm/lib/MC/MCParser/
DELFAsmParser.cpp525 bool InsertResult = getContext().addGenDwarfSection(ELFSection); in ParseSectionArguments() local
526 if (InsertResult) { in ParseSectionArguments()
DAsmParser.cpp647 bool InsertResult = getContext().addGenDwarfSection(Sec); in Run() local
648 assert(InsertResult && ".text section should not have debug info yet"); in Run()
649 (void)InsertResult; in Run()