Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.cpp132 auto Insertion = EntriesByFilename.insert({Filename, nullptr}); in getOrEmplaceEntryForFilename() local
133 if (Insertion.second) in getOrEmplaceEntryForFilename()
134 Insertion.first->second = in getOrEmplaceEntryForFilename()
136 return *Insertion.first->second; in getOrEmplaceEntryForFilename()
144 auto Insertion = EntriesByUID.insert({UID, nullptr}); in getOrEmplaceEntryForUID() local
145 if (Insertion.second) { in getOrEmplaceEntryForUID()
150 Insertion.first->second = new (EntryStorage.Allocate()) in getOrEmplaceEntryForUID()
153 return *Insertion.first->second; in getOrEmplaceEntryForUID()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A 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()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp338 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local
339 if (Insertion.second) { in get()
346 *Insertion.first = FT; in get()
349 FT = *Insertion.first; in get()
384 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local
385 if (Insertion.second) { in get()
391 *Insertion.first = ST; in get()
394 ST = *Insertion.first; in get()
807 if (Insertion.second) { in get()
815 *Insertion.first = TT; in get()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp484 auto Insertion = SeenBypassFileEntries->insert( in getBypassFile() local
486 if (!Insertion.second) in getBypassFile()
487 return FileEntryRef(*Insertion.first); in getBypassFile()
492 Insertion.first->second = FileEntryRef::MapValue(*BFE, VF.getDir()); in getBypassFile()
493 BFE->LastRef = FileEntryRef(*Insertion.first); in getBypassFile()
500 return FileEntryRef(*Insertion.first); in getBypassFile()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaAvailability.cpp416 std::optional<AttributeInsertion> Insertion = createAttributeInsertion( in DoEmitAvailabilityWarning() local
418 if (!Insertion) in DoEmitAvailabilityWarning()
427 Insertion->Loc, in DoEmitAvailabilityWarning()
428 (llvm::Twine(Insertion->Prefix) + "API_AVAILABLE(" + PlatformName + in DoEmitAvailabilityWarning()
429 "(" + Introduced + "))" + Insertion->Suffix) in DoEmitAvailabilityWarning()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp150 auto Insertion = in addToStringTable() local
154 std::make_pair(Insertion.first->first(), Insertion.first->second); in addToStringTable()
155 if (Insertion.second) { in addToStringTable()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTypes.cpp675 auto Insertion = RecordsWithOpaqueMemberPointers.insert({C, nullptr}); in ConvertType() local
676 if (Insertion.second) in ConvertType()
677 Insertion.first->second = llvm::StructType::create(getLLVMContext()); in ConvertType()
678 ResultType = Insertion.first->second; in ConvertType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMergeICmps.cpp121 const auto Insertion = BaseToIndex.try_emplace(Base, Order); in getBaseId() local
122 if (Insertion.second) in getBaseId()
124 return Insertion.first->second; in getBaseId()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp694 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
695 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
696 if (!Insertion.second) { in enumerateMetadataImpl()
699 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/
H A DDXILValueEnumerator.cpp699 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
700 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
701 if (!Insertion.second) { in enumerateMetadataImpl()
704 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp203 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() local
204 if (Insertion.second) { in maybeRecordFile()
231 return Insertion.first->second; in maybeRecordFile()
1480 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()}); in beginFunctionImpl() local
1481 assert(Insertion.second && "function already has info"); in beginFunctionImpl()
1482 CurFn = Insertion.first->second.get(); in beginFunctionImpl()
3270 auto Insertion = ScopeGlobals.insert( in collectGlobalVariableInfo() local
3272 if (Insertion.second) in collectGlobalVariableInfo()
3273 Insertion.first->second = std::make_unique<GlobalVariableList>(); in collectGlobalVariableInfo()
3274 VariableList = Insertion.first->second.get(); in collectGlobalVariableInfo()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DArchiveWriter.cpp315 auto Insertion = MemberNames.insert({M.MemberName, uint64_t(0)}); in printMemberHeader() local
316 if (Insertion.second) { in printMemberHeader()
317 Insertion.first->second = StringTable.tell(); in printMemberHeader()
324 NamePos = Insertion.first->second; in printMemberHeader()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp1122 auto Insertion = in EmitPrintAliasInstruction() local
1124 if (Insertion.second) { in EmitPrintAliasInstruction()
1129 unsigned AsmStrOffset = Insertion.first->second; in EmitPrintAliasInstruction()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp1081 FixItHint Insertion; in DiagnoseMisplacedEllipsis() local
1083 Insertion = FixItHint::CreateInsertion(CorrectLoc, "..."); in DiagnoseMisplacedEllipsis()
1085 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion in DiagnoseMisplacedEllipsis()
H A DParseDeclCXX.cpp2611 FixItHint Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local
2616 Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
2622 << FixItHint::CreateRemoval(SpecLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
2632 FixItHint Insertion = in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local
2640 << FixItHint::CreateRemoval(RefQualifierLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
/freebsd-14.2/crypto/heimdal/lib/wind/
H A Drfc3492.txt49 3.2 Insertion unsort coding...............................4
190 string: they are simply copied all at once. "Insertion unsort
210 3.2 Insertion unsort coding
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4130 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local
4132 getStreamer().emitInt32(Insertion.second); in parseDirectiveCVString()
H A DMasmParser.cpp5394 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local
5396 getStreamer().emitIntValue(Insertion.second, 4); in parseDirectiveCVString()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZScheduleZ196.td287 // Insertion
H A DSystemZScheduleZEC12.td298 // Insertion
H A DSystemZScheduleZ13.td324 // Insertion
H A DSystemZScheduleZ16.td329 // Insertion
H A DSystemZScheduleZ14.td325 // Insertion
H A DSystemZScheduleZ15.td329 // Insertion
/freebsd-14.2/contrib/one-true-awk/testdir/
H A Dfunstack.ok2474 D. S. Hirschberg An Insertion Technique for One-Sided
3427 Stuart H. Zweben An Optimal Insertion Algorithm for

12