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

/external/clang/lib/Rewrite/
H A DDeltaTree.cpp55 struct InsertResult { struct in class:__anon1391::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/include/llvm/ADT/
H A DPriorityWorklist.h90 auto InsertResult = M.insert({X, V.size()}); local
91 if (InsertResult.second) {
97 auto &Index = InsertResult.first->second;
/external/llvm/tools/dsymutil/
H A DDebugMap.cpp29 auto InsertResult = Symbols.insert( local
32 if (ObjectAddress && InsertResult.second)
33 AddressToMapping[*ObjectAddress] = &*InsertResult.first;
34 return InsertResult.second;
H A DDwarfLinker.cpp3534 auto InsertResult = Strings.insert(std::make_pair(S, Entry)); local
3535 return InsertResult.first->getKey();
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp685 bool InsertResult = RecordsBeingLaidOut.insert(Key).second; local
686 (void)InsertResult;
687 assert(InsertResult && "Recursively compiling a struct?");
/external/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp417 auto InsertResult = local
419 assert(InsertResult.second);
422 return InsertResult.first->second.get();
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp527 bool InsertResult = getContext().addGenDwarfSection(ELFSection); local
528 if (InsertResult) {
H A DAsmParser.cpp717 bool InsertResult = getContext().addGenDwarfSection(Sec); local
718 assert(InsertResult && ".text section should not have debug info yet");
719 (void)InsertResult;
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp396 auto InsertResult = local
398 if (InsertResult.second) {
407 size_t OldRecordIndex = InsertResult.first->second;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp277 auto InsertResult = TypeIndices.insert({{Node, ClassTy}, TI}); local
278 (void)InsertResult;
279 assert(InsertResult.second && "DINode was already assigned a type index");
1786 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()}); local
1787 if (!InsertResult.second)
1788 return InsertResult.first->second;
1816 InsertResult.first->second = TI;

Completed in 323 milliseconds