Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DIdentifierResolver.cpp262 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) { in compareDeclarations() argument
264 if (Existing == New) in compareDeclarations()
268 if (Existing->getKind() != New->getKind()) in compareDeclarations()
272 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) { in compareDeclarations()
275 if (Existing->isFromASTFile() && New->isFromASTFile()) in compareDeclarations()
279 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations()
280 if (Existing == MostRecent) in compareDeclarations()
289 if (RD == Existing) in compareDeclarations()
H A DSemaDeclAttr.cpp3011 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>(); in handleWorkGroupSize() local
3012 if (Existing && !(Existing->getXDim() == WGSize[0] && in handleWorkGroupSize()
3013 Existing->getYDim() == WGSize[1] && in handleWorkGroupSize()
3014 Existing->getZDim() == WGSize[2])) in handleWorkGroupSize()
3033 OpenCLIntelReqdSubGroupSizeAttr *Existing = in handleSubGroupSize() local
3035 if (Existing && Existing->getSubGroupSize() != SGSize) in handleSubGroupSize()
3270 MinVectorWidthAttr *Existing = D->getAttr<MinVectorWidthAttr>(); in handleMinVectorWidthAttr() local
3271 if (Existing && Existing->getVectorWidth() != VecWidth) { in handleMinVectorWidthAttr()
H A DSemaLookup.cpp367 NamedDecl *D, NamedDecl *Existing) { in isPreferredLookupResult() argument
371 !isa<UsingShadowDecl>(Existing)) in isPreferredLookupResult()
375 auto *EUnderlying = Existing->getUnderlyingDecl(); in isPreferredLookupResult()
447 return !S.isVisible(Existing); in isPreferredLookupResult()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DReplacement.h159 ReplacementError(replacement_error Err, Replacement Existing) in ReplacementError() argument
160 : Err(Err), ExistingReplacement(std::move(Existing)) {} in ReplacementError()
164 ReplacementError(replacement_error Err, Replacement New, Replacement Existing) in ReplacementError() argument
166 ExistingReplacement(std::move(Existing)) {} in ReplacementError()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp208 NamedDecl *Existing = nullptr; member in clang::ASTDeclReader::FindExistingResult
219 : Reader(Reader), New(New), Existing(Existing), AddResult(true), in FindExistingResult()
224 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing), in FindExistingResult()
2545 if (T *Existing = ExistingRes) in mergeRedeclarable() local
2691 if (T *Existing = ExistingRes) in mergeMergeable() local
3340 if (!AddResult || Existing) in ~FindExistingResult()
3476 if (isSameEntity(Existing, D)) in findExisting()
3508 if (isSameEntity(Existing, D)) in findExisting()
4336 if (Existing && in add()
4353 } else if (!Existing) { in add()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DBasicBlockSections.cpp331 auto *Existing = MF.getFunction().getMetadata(LLVMContext::MD_annotation); in hasInstrProfHashMismatch() local
332 if (Existing) { in hasInstrProfHashMismatch()
333 MDTuple *Tuple = cast<MDTuple>(Existing); in hasInstrProfHashMismatch()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDeclTemplate.cpp327 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl() local
328 (void)Existing; in addSpecializationImpl()
329 assert(SETraits::getDecl(Existing)->isCanonicalDecl() && in addSpecializationImpl()
546 ClassTemplatePartialSpecializationDecl *Existing in AddPartialSpecialization() local
548 (void)Existing; in AddPartialSpecialization()
549 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization()
1220 VarTemplatePartialSpecializationDecl *Existing = in AddPartialSpecialization() local
1222 (void)Existing; in AddPartialSpecialization()
1223 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization()
H A DASTContext.cpp4277 QualType Existing = QualType(FPT, 0); in getFunctionTypeInternal() local
4286 return Existing; in getFunctionTypeInternal()
4291 Canonical = getCanonicalType(Existing); in getFunctionTypeInternal()
4461 if (DependentExtIntType *Existing = in getDependentExtIntType() local
4463 return QualType(Existing, 0); in getDependentExtIntType()
11326 if (MSGuidDecl *Existing = MSGuidDecls.FindNodeOrInsertPos(ID, InsertPos)) in getMSGuidDecl() local
11327 return Existing; in getMSGuidDecl()
11347 if (TemplateParamObjectDecl *Existing = in getTemplateParamObjectDecl() local
11349 return Existing; in getTemplateParamObjectDecl()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDeletion.cpp184 auto Existing = FirstIterValue.find(V); in getValueOnFirstIteration() local
185 if (Existing != FirstIterValue.end()) in getValueOnFirstIteration()
186 return Existing->second; in getValueOnFirstIteration()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp108 if (NodeHeader *Existing = Nodes.FindNodeOrInsertPos(ID, InsertPos)) in getOrCreateNode() local
109 return {static_cast<T*>(Existing->getNode()), false}; in getOrCreateNode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCTargetDesc.cpp413 auto Existing = ArchSubtarget.find(std::string(STI->getCPU())); in getArchSubtarget() local
414 if (Existing == ArchSubtarget.end()) in getArchSubtarget()
416 return Existing->second.get(); in getArchSubtarget()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp153 if (DIEAbbrev *Existing = in uniqueAbbreviation() local
155 Die.setAbbrevNumber(Existing->getNumber()); in uniqueAbbreviation()
156 return *Existing; in uniqueAbbreviation()
/freebsd-13.1/sys/contrib/openzfs/
H A DRELEASES.md13 user space library APIs (libzfs.so). Existing user/kernel interfaces are
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DPragma.cpp955 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) { in AddPragmaHandler() local
956 InsertNS = Existing->getIfNamespace(); in AddPragmaHandler()
983 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace); in RemovePragmaHandler() local
984 assert(Existing && "Namespace containing handler does not exist!"); in RemovePragmaHandler()
986 NS = Existing->getIfNamespace(); in RemovePragmaHandler()
H A DModuleMap.cpp1949 if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) { in parseModuleDecl() local
1954 bool LoadedFromASTFile = Existing->DefinitionLoc.isInvalid(); in parseModuleDecl()
1961 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; in parseModuleDecl()
1975 if (!Existing->Parent && Map.mayShadowNewModule(Existing)) { in parseModuleDecl()
1976 ShadowingModule = Existing; in parseModuleDecl()
1981 Diags.Report(Existing->DefinitionLoc, diag::note_mmap_prev_definition); in parseModuleDecl()
/freebsd-13.1/contrib/googletest/googlemock/
H A DREADME.md136 [Incorporating Into An Existing CMake Project][gtest_incorpcmake]
231 * Right-click on your project and select "Add Existing Property Sheet..."
323 …ADME.md#incorporating-into-an-existing-cmake-project "Incorporating Into An Existing CMake Project"
/freebsd-13.1/sys/contrib/device-tree/Bindings/dma/
H A Dste-dma40.txt59 Existing signal numbers for the DB8500 ASIC. Unless specified, the signals are
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp1352 auto *Existing = getMetadata(LLVMContext::MD_annotation); in addAnnotationMetadata() local
1355 if (Existing) { in addAnnotationMetadata()
1356 auto *Tuple = cast<MDTuple>(Existing); in addAnnotationMetadata()
/freebsd-13.1/contrib/googletest/googletest/
H A DREADME.md86 #### Incorporating Into An Existing CMake Project
134 Existing build's `CMakeLists.txt`:
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1256 auto *Existing = F.getMetadata(LLVMContext::MD_annotation); in annotateFunctionWithHashMismatch() local
1257 if (Existing) { in annotateFunctionWithHashMismatch()
1258 MDTuple *Tuple = cast<MDTuple>(Existing); in annotateFunctionWithHashMismatch()
/freebsd-13.1/contrib/googletest/googletest/docs/
H A DXcodeGuide.md44 …nually. Then, add the built framework into your project using the "Add->Existing Framework..." fro…
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp290 for (const MDOperand &Existing : drop_begin(OrigLoopID->operands())) { in makeFollowupLoopID() local
291 MDNode *Op = cast<MDNode>(Existing.get()); in makeFollowupLoopID()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1047 SDNode *Existing = CSEMap.GetOrInsertNode(N); in AddModifiedNodeToCSEMaps() local
1048 if (Existing != N) { in AddModifiedNodeToCSEMaps()
1052 ReplaceAllUsesWith(N, Existing); in AddModifiedNodeToCSEMaps()
1056 DUL->NodeDeleted(N, Existing); in AddModifiedNodeToCSEMaps()
8245 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos)) in UpdateNodeOperands() local
8246 return Existing; in UpdateNodeOperands()
8271 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos)) in UpdateNodeOperands() local
8272 return Existing; in UpdateNodeOperands()
8323 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos)) in UpdateNodeOperands() local
8324 return Existing; in UpdateNodeOperands()
/freebsd-13.1/contrib/subversion/doc/user/
H A Dlj_article.txt102 while fixing the flaws in CVS's (lack-of) design. Existing CVS users
/freebsd-13.1/sys/contrib/openzfs/tests/zfs-tests/include/
H A Dlibtest.shlib363 # $1 Existing filesystem or volume name. Default, $TESTPOOL/$TESTFS
386 # $1 Existing snapshot, $TESTPOOL/$TESTFS@$TESTSNAP is default.
406 # $1 Existing filesystem or volume name. Default, $TESTFS
407 # $2 Existing snapshot name. Default, $TESTSNAP

12