Home
last modified time | relevance | path

Searched refs:Insertion (Results 1 – 25 of 87) sorted by relevance

1234

/external/llvm-project/clang/lib/Serialization/
DInMemoryModuleCache.cpp27 auto Insertion = PCMs.insert(std::make_pair(Filename, std::move(Buffer))); in addPCM() local
28 assert(Insertion.second && "Already has a PCM"); in addPCM()
29 return *Insertion.first->second.Buffer; in addPCM()
/external/llvm-project/llvm/lib/IR/
DType.cpp321 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local
322 if (Insertion.second) { in get()
329 *Insertion.first = FT; in get()
332 FT = *Insertion.first; in get()
367 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local
368 if (Insertion.second) { in get()
374 *Insertion.first = ST; in get()
377 ST = *Insertion.first; in get()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DType.cpp311 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local
312 if (Insertion.second) { in get()
319 *Insertion.first = FT; in get()
322 FT = *Insertion.first; in get()
357 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local
358 if (Insertion.second) { in get()
364 *Insertion.first = ST; in get()
367 ST = *Insertion.first; in get()
/external/llvm-project/clang/lib/Basic/
DFileManager.cpp430 auto Insertion = SeenBypassFileEntries->insert( in getBypassFile() local
432 if (!Insertion.second) in getBypassFile()
433 return FileEntryRef(*Insertion.first); in getBypassFile()
439 Insertion.first->second = FileEntryRef::MapValue(BFE, VF.getDir()); in getBypassFile()
440 BFE.LastRef = FileEntryRef(*Insertion.first); in getBypassFile()
448 return FileEntryRef(*Insertion.first); in getBypassFile()
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DProTypeMemberInitCheck.cpp240 for (const auto &Insertion : in fixInitializerList() local
242 if (!Insertion.Initializers.empty()) in fixInitializerList()
243 Diag << FixItHint::CreateInsertion(Insertion.getLocation(Context, *Ctor), in fixInitializerList()
244 Insertion.codeToInsert()); in fixInitializerList()
/external/llvm-project/clang-tools-extra/clang-change-namespace/
DChangeNamespace.cpp749 const auto Insertion = createInsertion( in moveClassForwardDeclaration() local
753 InsertFwd.InsertionOffset = Insertion.getOffset(); in moveClassForwardDeclaration()
754 InsertFwd.ForwardDeclText = Insertion.getReplacementText().str(); in moveClassForwardDeclaration()
755 InsertFwdDecls[std::string(Insertion.getFilePath())].push_back(InsertFwd); in moveClassForwardDeclaration()
990 tooling::Replacement Insertion(FilePath, NewInsertionOffset, 0, in onEndOfTranslationUnit() local
993 addOrMergeReplacement(Insertion, &NewReplacements); in onEndOfTranslationUnit()
1001 tooling::Replacement Insertion(FilePath, NewInsertionOffset, 0, in onEndOfTranslationUnit() local
1003 addOrMergeReplacement(Insertion, &NewReplacements); in onEndOfTranslationUnit()
/external/llvm-project/llvm/test/CodeGen/X86/
Dcfi-inserter-check-order.ll10 ; CHECK-NOT: Prologue/Epilogue Insertion & Frame Finalization
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSourceMgr.h202 SMFixIt(SMLoc Loc, const Twine &Insertion) in SMFixIt() argument
203 : Range(Loc, Loc), Text(Insertion.str()) { in SMFixIt()
/external/llvm/include/llvm/Support/
DSourceMgr.h207 SMFixIt(SMLoc Loc, const Twine &Insertion) in SMFixIt() argument
208 : Range(Loc, Loc), Text(Insertion.str()) { in SMFixIt()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DSourceMgr.h236 SMFixIt(SMLoc Loc, const Twine &Insertion) in SMFixIt() argument
237 : Range(Loc, Loc), Text(Insertion.str()) { in SMFixIt()
/external/llvm/lib/MC/
DMCCodeView.cpp79 auto Insertion = in addToStringTable() local
82 S = Insertion.first->first(); in addToStringTable()
83 if (Insertion.second) { in addToStringTable()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DArchiveWriter.cpp225 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); in printMemberHeader() local
226 if (Insertion.second) { in printMemberHeader()
227 Insertion.first->second = StringTable.tell(); in printMemberHeader()
230 NamePos = Insertion.first->second; in printMemberHeader()
/external/llvm-project/clang-tools-extra/clangd/
DHeaders.cpp261 if (auto Insertion = Inserter.insert(VerbatimHeader.trim("\"<>"), in insert() local
263 Edit = replacementToEdit(Code, *Insertion); in insert()
DCodeComplete.h212 llvm::Optional<TextEdit> Insertion; member
/external/llvm-project/llvm/lib/MC/
DMCCodeView.cpp149 auto Insertion = in addToStringTable() local
153 std::make_pair(Insertion.first->first(), Insertion.first->second); in addToStringTable()
154 if (Insertion.second) { in addToStringTable()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCCodeView.cpp149 auto Insertion = in addToStringTable() local
153 std::make_pair(Insertion.first->first(), Insertion.first->second); in addToStringTable()
154 if (Insertion.second) { in addToStringTable()
/external/llvm-project/clang/lib/Sema/
DSemaAvailability.cpp400 Optional<AttributeInsertion> Insertion = createAttributeInsertion( in DoEmitAvailabilityWarning() local
402 if (!Insertion) in DoEmitAvailabilityWarning()
411 Insertion->Loc, in DoEmitAvailabilityWarning()
412 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName + in DoEmitAvailabilityWarning()
413 "(" + Introduced + "))" + Insertion->Suffix) in DoEmitAvailabilityWarning()
/external/python/cpython2/Doc/library/
Dqueue.rst35 limit on the number of items that can be placed in the queue. Insertion will
42 limit on the number of items that can be placed in the queue. Insertion will
51 limit on the number of items that can be placed in the queue. Insertion will
/external/llvm-project/llvm/lib/Object/
DArchiveWriter.cpp227 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); in printMemberHeader() local
228 if (Insertion.second) { in printMemberHeader()
229 Insertion.first->second = StringTable.tell(); in printMemberHeader()
232 NamePos = Insertion.first->second; in printMemberHeader()
/external/eigen/doc/
DSparseQuickReference.dox44 <td> Element-wise Insertion</td>
68 <td>A complete example is available at \link TutorialSparseFilling Triplet Insertion \endlink.</td>
71 <td> Constant or Random Insertion</td>
/external/llvm/lib/Bitcode/Writer/
DValueEnumerator.cpp635 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
636 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
637 if (!Insertion.second) { in enumerateMetadataImpl()
640 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DValueEnumerator.cpp665 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
666 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
667 if (!Insertion.second) { in enumerateMetadataImpl()
670 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/external/llvm-project/llvm/lib/Bitcode/Writer/
DValueEnumerator.cpp708 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
709 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
710 if (!Insertion.second) { in enumerateMetadataImpl()
713 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/external/python/cpython3/Doc/library/
Dqueue.rst39 limit on the number of items that can be placed in the queue. Insertion will
47 limit on the number of items that can be placed in the queue. Insertion will
55 limit on the number of items that can be placed in the queue. Insertion will
/external/llvm-project/llvm/lib/Transforms/Scalar/
DMergeICmps.cpp128 const auto Insertion = BaseToIndex.try_emplace(Base, Order); in getBaseId() local
129 if (Insertion.second) in getBaseId()
131 return Insertion.first->second; in getBaseId()

1234