Home
last modified time | relevance | path

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

/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp337 auto Insertion = pImpl->FunctionTypes.insert_as(nullptr, Key); in get() local
338 if (Insertion.second) { in get()
345 *Insertion.first = FT; in get()
348 FT = *Insertion.first; in get()
383 auto Insertion = pImpl->AnonStructTypes.insert_as(nullptr, Key); in get() local
384 if (Insertion.second) { in get()
390 *Insertion.first = ST; in get()
393 ST = *Insertion.first; in get()
/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp452 auto Insertion = SeenBypassFileEntries->insert( in getBypassFile() local
454 if (!Insertion.second) in getBypassFile()
455 return FileEntryRef(*Insertion.first); in getBypassFile()
461 Insertion.first->second = FileEntryRef::MapValue(BFE, VF.getDir()); in getBypassFile()
462 BFE.LastRef = FileEntryRef(*Insertion.first); in getBypassFile()
470 return FileEntryRef(*Insertion.first); in getBypassFile()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A 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()
H A DSemaDecl.cpp15495 SmallString<64> Insertion; in createFriendTagNNSFixIt() local
15496 llvm::raw_svector_ostream OS(Insertion); in createFriendTagNNSFixIt()
15502 return FixItHint::CreateInsertion(NameLoc, Insertion); in createFriendTagNNSFixIt()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/
H A 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp732 auto Insertion = MetadataMap.insert(std::make_pair(MD, MDIndex(F))); in enumerateMetadataImpl() local
733 MDIndex &Entry = Insertion.first->second; in enumerateMetadataImpl()
734 if (!Insertion.second) { in enumerateMetadataImpl()
737 dropFunctionFromMetadata(*Insertion.first); in enumerateMetadataImpl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp209 auto Insertion = FileIdMap.insert(std::make_pair(FullPath, NextId)); in maybeRecordFile() local
210 if (Insertion.second) { in maybeRecordFile()
237 return Insertion.first->second; in maybeRecordFile()
1371 auto Insertion = FnDebugInfo.insert({&GV, std::make_unique<FunctionInfo>()}); in beginFunctionImpl() local
1372 assert(Insertion.second && "function already has info"); in beginFunctionImpl()
1373 CurFn = Insertion.first->second.get(); in beginFunctionImpl()
3080 auto Insertion = ScopeGlobals.insert( in collectGlobalVariableInfo() local
3082 if (Insertion.second) in collectGlobalVariableInfo()
3083 Insertion.first->second = std::make_unique<GlobalVariableList>(); in collectGlobalVariableInfo()
3084 VariableList = Insertion.first->second.get(); in collectGlobalVariableInfo()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp1105 auto Insertion = in EmitPrintAliasInstruction() local
1107 if (Insertion.second) { in EmitPrintAliasInstruction()
1112 unsigned AsmStrOffset = Insertion.first->second; in EmitPrintAliasInstruction()
/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp1011 FixItHint Insertion; in DiagnoseMisplacedEllipsis() local
1013 Insertion = FixItHint::CreateInsertion(CorrectLoc, "..."); in DiagnoseMisplacedEllipsis()
1015 << FixItHint::CreateRemoval(EllipsisLoc) << Insertion in DiagnoseMisplacedEllipsis()
H A DParseDeclCXX.cpp2489 FixItHint Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local
2494 Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
2500 << FixItHint::CreateRemoval(SpecLoc) << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
2510 FixItHint Insertion = FixItHint::CreateInsertion(VS.getFirstLocation(), Name); in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq() local
2518 << Insertion; in MaybeParseAndDiagnoseDeclSpecAfterCXX11VirtSpecifierSeq()
/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp4090 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local
4092 getStreamer().emitInt32(Insertion.second); in parseDirectiveCVString()
H A DMasmParser.cpp5466 std::pair<StringRef, unsigned> Insertion = in parseDirectiveCVString() local
5468 getStreamer().emitIntValue(Insertion.second, 4); in parseDirectiveCVString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZScheduleZ196.td287 // Insertion
H A DSystemZScheduleZEC12.td298 // Insertion
H A DSystemZScheduleZ13.td324 // Insertion
H A DSystemZScheduleZ15.td329 // Insertion
H A DSystemZScheduleZ14.td325 // Insertion
H A DSystemZInstrInfo.td887 // Insertion
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInstructions.td1017 /********** Extraction, Insertion, Building and Casting **********/
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp14131 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2F64Shuffle() local
14133 return Insertion; in lowerV2F64Shuffle()
14138 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2F64Shuffle() local
14140 return Insertion; in lowerV2F64Shuffle()
14216 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2I64Shuffle() local
14218 return Insertion; in lowerV2I64Shuffle()
14222 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lowerV2I64Shuffle() local
14224 return Insertion; in lowerV2I64Shuffle()
17541 if (SDValue Insertion = lowerShuffleAsElementInsertion( in lower256BitShuffle() local
17543 return Insertion; in lower256BitShuffle()
[all …]
/freebsd-13.1/contrib/ncurses/misc/
H A Dterminfo.src18057 # Insertion and deletion operations possible.
18093 # Insertion and deletion operations possible.
18127 # Insertion and deletion operations possible.
23993 # 4 = Insertion Replacement Mode (IRM),