| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | IdentifierResolver.cpp | 263 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) { in compareDeclarations() argument 265 if (Existing == New) in compareDeclarations() 269 if (Existing->getKind() != New->getKind()) in compareDeclarations() 273 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) { in compareDeclarations() 276 if (Existing->isFromASTFile() && New->isFromASTFile()) in compareDeclarations() 280 Decl *MostRecent = Existing->getMostRecentDecl(); in compareDeclarations() 281 if (Existing == MostRecent) in compareDeclarations() 290 if (RD == Existing) in compareDeclarations()
|
| H A D | SemaDeclAttr.cpp | 2918 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>(); in handleWorkGroupSize() local 2919 if (Existing && !(Existing->getXDim() == WGSize[0] && in handleWorkGroupSize() 2920 Existing->getYDim() == WGSize[1] && in handleWorkGroupSize() 2921 Existing->getZDim() == WGSize[2])) in handleWorkGroupSize() 2941 OpenCLIntelReqdSubGroupSizeAttr *Existing = in handleSubGroupSize() local 2943 if (Existing && Existing->getSubGroupSize() != SGSize) in handleSubGroupSize() 3143 MinVectorWidthAttr *Existing = D->getAttr<MinVectorWidthAttr>(); in handleMinVectorWidthAttr() local 3144 if (Existing && Existing->getVectorWidth() != VecWidth) { in handleMinVectorWidthAttr()
|
| H A D | SemaLookup.cpp | 360 NamedDecl *D, NamedDecl *Existing) { in isPreferredLookupResult() argument 364 !isa<UsingShadowDecl>(Existing)) in isPreferredLookupResult() 368 auto *EUnderlying = Existing->getUnderlyingDecl(); in isPreferredLookupResult() 437 return !S.isVisible(Existing); in isPreferredLookupResult()
|
| H A D | SemaDeclCXX.cpp | 12251 CXXBaseSpecifier *&Existing = in checkMoveAssignmentForRepeatedMove() local 12254 if (Existing && Existing != &BI) { in checkMoveAssignmentForRepeatedMove() 12257 S.Diag(Existing->getBeginLoc(), diag::note_vbase_moved_here) in checkMoveAssignmentForRepeatedMove() 12259 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl()) in checkMoveAssignmentForRepeatedMove() 12260 << Base << Existing->getType() << Existing->getSourceRange(); in checkMoveAssignmentForRepeatedMove() 12267 Existing = nullptr; in checkMoveAssignmentForRepeatedMove()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/Core/ |
| H A D | Replacement.h | 160 ReplacementError(replacement_error Err, Replacement Existing) in ReplacementError() argument 161 : Err(Err), ExistingReplacement(std::move(Existing)) {} in ReplacementError() 165 ReplacementError(replacement_error Err, Replacement New, Replacement Existing) in ReplacementError() argument 167 ExistingReplacement(std::move(Existing)) {} in ReplacementError()
|
| /freebsd-12.1/contrib/llvm/tools/lld/COFF/ |
| H A D | DriverUtils.cpp | 190 StringRef Existing = Pair.first->second; in parseMerge() local 191 if (Existing != To) in parseMerge() 192 warn(S + ": already merged into " + Existing); in parseMerge() 655 Export *Existing = Pair.first->second; in fixupExports() local 656 if (E == *Existing || E.Name != Existing->Name) in fixupExports() 686 StringRef Existing = Config->MustMatch[K]; in checkFailIfMismatch() local 687 if (!Existing.empty() && V != Existing) in checkFailIfMismatch() 688 fatal("/failifmismatch: mismatch detected: " + Existing + " and " + V + in checkFailIfMismatch()
|
| H A D | SymbolTable.cpp | 342 void SymbolTable::reportDuplicate(Symbol *Existing, InputFile *NewFile) { in reportDuplicate() argument 343 std::string Msg = "duplicate symbol: " + toString(*Existing) + " in " + in reportDuplicate() 344 toString(Existing->getFile()) + " and in " + in reportDuplicate()
|
| H A D | SymbolTable.h | 102 void reportDuplicate(Symbol *Existing, InputFile *NewFile);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 217 NamedDecl *Existing = nullptr; member in clang::ASTDeclReader::FindExistingResult 228 : Reader(Reader), New(New), Existing(Existing), AddResult(true), in FindExistingResult() 233 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing), in FindExistingResult() 2492 if (T *Existing = ExistingRes) in mergeRedeclarable() local 2619 if (T *Existing = ExistingRes) in mergeMergeable() local 3187 if (!AddResult || Existing) in ~FindExistingResult() 3323 if (isSameEntity(Existing, D)) in findExisting() 3355 if (isSameEntity(Existing, D)) in findExisting() 4078 if (Existing && in add() 4095 } else if (!Existing) { in add() [all …]
|
| H A D | ASTReader.cpp | 640 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName]; in checkPreprocessorOptions() local 650 if (Existing.second) { in checkPreprocessorOptions() 658 SuggestedPredefines += Existing.first.str(); in checkPreprocessorOptions() 666 if (Existing.second != Known->second.second) { in checkPreprocessorOptions() 676 if (Existing.second || Existing.first == Known->second.first) in checkPreprocessorOptions() 682 << MacroName << Known->second.first << Existing.first; in checkPreprocessorOptions() 6269 if (const Type *Existing = DI->getTypeForDecl()) { in readTypeRecord() local 6270 T = Existing; in readTypeRecord()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | DeclTemplate.cpp | 229 EntryType *Existing = Specializations.GetOrInsertNode(Entry); in addSpecializationImpl() local 230 (void)Existing; in addSpecializationImpl() 231 assert(SETraits::getDecl(Existing)->isCanonicalDecl() && in addSpecializationImpl() 415 ClassTemplatePartialSpecializationDecl *Existing in AddPartialSpecialization() local 417 (void)Existing; in AddPartialSpecialization() 418 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization() 1014 VarTemplatePartialSpecializationDecl *Existing = in AddPartialSpecialization() local 1016 (void)Existing; in AddPartialSpecialization() 1017 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); in AddPartialSpecialization()
|
| /freebsd-12.1/contrib/gcc/config/ |
| H A D | x-interix | 1 # Existing CC/GCC may not define -D__INTERIX, so need this here.
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | ItaniumManglingCanonicalizer.cpp | 124 if (NodeHeader *Existing = Nodes.FindNodeOrInsertPos(ID, InsertPos)) in getOrCreateNode() local 125 return {static_cast<T*>(Existing->getNode()), false}; in getOrCreateNode()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DIE.cpp | 154 if (DIEAbbrev *Existing = in uniqueAbbreviation() local 156 Die.setAbbrevNumber(Existing->getNumber()); in uniqueAbbreviation() 157 return *Existing; in uniqueAbbreviation()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | Pragma.cpp | 912 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) { in AddPragmaHandler() local 913 InsertNS = Existing->getIfNamespace(); in AddPragmaHandler() 940 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace); in RemovePragmaHandler() local 941 assert(Existing && "Namespace containing handler does not exist!"); in RemovePragmaHandler() 943 NS = Existing->getIfNamespace(); in RemovePragmaHandler()
|
| H A D | ModuleMap.cpp | 1898 if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) { in parseModuleDecl() local 1903 bool LoadedFromASTFile = Existing->DefinitionLoc.isInvalid(); in parseModuleDecl() 1910 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; in parseModuleDecl() 1924 if (!Existing->Parent && Map.mayShadowNewModule(Existing)) { in parseModuleDecl() 1925 ShadowingModule = Existing; in parseModuleDecl() 1930 Diags.Report(Existing->DefinitionLoc, diag::note_mmap_prev_definition); in parseModuleDecl()
|
| /freebsd-12.1/contrib/googletest/googlemock/ |
| H A D | README.md | 136 [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-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 265 for (const MDOperand &Existing : drop_begin(OrigLoopID->operands(), 1)) { in makeFollowupLoopID() local 266 MDNode *Op = cast<MDNode>(Existing.get()); in makeFollowupLoopID()
|
| /freebsd-12.1/contrib/googletest/googletest/ |
| H A D | README.md | 86 #### Incorporating Into An Existing CMake Project 134 Existing build's `CMakeLists.txt`:
|
| /freebsd-12.1/contrib/googletest/googletest/docs/ |
| H A D | XcodeGuide.md | 44 …nually. Then, add the built framework into your project using the "Add->Existing Framework..." fro…
|
| /freebsd-12.1/crypto/openssl/doc/HOWTO/ |
| H A D | proxy_certificates.txt | 30 Existing applications might misbehave when trying to validate a chain of
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 908 SDNode *Existing = CSEMap.GetOrInsertNode(N); in AddModifiedNodeToCSEMaps() local 909 if (Existing != N) { in AddModifiedNodeToCSEMaps() 913 ReplaceAllUsesWith(N, Existing); in AddModifiedNodeToCSEMaps() 917 DUL->NodeDeleted(N, Existing); in AddModifiedNodeToCSEMaps() 7337 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos)) in UpdateNodeOperands() local 7338 return Existing; in UpdateNodeOperands() 7363 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos)) in UpdateNodeOperands() local 7364 return Existing; in UpdateNodeOperands() 7415 if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos)) in UpdateNodeOperands() local 7416 return Existing; in UpdateNodeOperands()
|
| /freebsd-12.1/contrib/subversion/doc/user/ |
| H A D | lj_article.txt | 102 while fixing the flaws in CVS's (lack-of) design. Existing CVS users
|
| /freebsd-12.1/contrib/llvm/tools/lld/docs/ |
| H A D | design.rst | 142 Existing developer tools using different file formats for object files.
|
| /freebsd-12.1/contrib/sendmail/contrib/ |
| H A D | mailprio | 27 # Existing files will *not* be overwritten unless `-c' is specified.
|