| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| IdentifierResolver.cpp | 185 // Add the new declaration before the existing declaration. 191 // Add new declaration after the existing declaration. 261 /// existing declaration. 262 static DeclMatchKind compareDeclarations(NamedDecl *Existing, NamedDecl *New) { 264 if (Existing == New) 268 if (Existing->getKind() != New->getKind()) 272 if (Existing->getCanonicalDecl() == New->getCanonicalDecl()) { 275 if (Existing->isFromASTFile() && New->isFromASTFile()) 279 Decl *MostRecent = Existing->getMostRecentDecl(); 280 if (Existing == MostRecent [all...] |
| SemaDeclAttr.cpp | 1862 // check for an existing decl? 2323 // If there is an existing availability attribute for this platform that 2324 // has a lower priority use the existing one and discard the new 2329 // If there is an existing attribute for this platform that has a higher 2926 WorkGroupAttr *Existing = D->getAttr<WorkGroupAttr>(); 2927 if (Existing && !(Existing->getXDim() == WGSize[0] && 2928 Existing->getYDim() == WGSize[1] && 2929 Existing->getZDim() == WGSize[2])) 2948 OpenCLIntelReqdSubGroupSizeAttr *Existing [all...] |
| SemaLookup.cpp | 364 /// Determine whether \p D is a better lookup result than \p Existing, 367 NamedDecl *D, NamedDecl *Existing) { 371 !isa<UsingShadowDecl>(Existing)) 375 auto *EUnderlying = Existing->getUnderlyingDecl(); 445 // If the existing declaration is hidden, prefer the new one. Otherwise, 447 return !S.isVisible(Existing); 4097 // Local label definitions always shadow existing labels. 4303 // replace the existing result if the string representation of Correction 4476 // identifier, then the existing CXXScopeSpec probably included a 4608 // If the built NestedNameSpecifier would be replacing an existing [all...] |
| SemaDeclCXX.cpp | 11635 /// decl, given the set of decls existing prior to this using lookup. 11728 // We don't conflict with an existing using shadow decl of an equivalent 11867 /// by existing declarations, or 12988 // Look up any existing declarations, but don't trigger declaration of all 13487 // Replace the destructor's type, building off the existing one. Fortunately, 14397 CXXBaseSpecifier *&Existing = 14400 if (Existing && Existing != &BI) { 14403 S.Diag(Existing->getBeginLoc(), diag::note_vbase_moved_here) 14405 Existing->getType()->getAsCXXRecordDecl()->getCanonicalDecl() [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Core/ |
| Replacement.h | 158 /// Constructs an error related to an existing replacement. 159 ReplacementError(replacement_error Err, Replacement Existing) 160 : Err(Err), ExistingReplacement(std::move(Existing)) {} 162 /// Constructs an error related to a new replacement and an existing 164 ReplacementError(replacement_error Err, Replacement New, Replacement Existing) 166 ExistingReplacement(std::move(Existing)) {} 196 // An existing replacement in a replacements set that is causing problem. 222 /// \p R must have the same file path as all existing replacements. 225 /// existing replacements (i.e. they are order-dependent) or R's file path is 226 /// different from the filepath of existing replacements. Callers mus [all...] |
| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslexternal.c | 93 ACPI_PARSE_OBJECT *Existing; 167 Existing = AslGbl_ExternalsListHead; 168 while (Existing && NewPath) 170 ExistingNameOp = Existing->Asl.Child->Asl.Child; 185 ExistingArgCount = Existing->Asl.Child->Asl.Child->Asl.Next->Asl.Next; 198 Existing = Existing->Asl.Next; 445 * Process any existing external list. (Support for
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| BasicBlockSections.cpp | 331 auto *Existing = MF.getFunction().getMetadata(LLVMContext::MD_annotation); 332 if (Existing) { 333 MDTuple *Tuple = cast<MDTuple>(Existing);
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReaderDecl.cpp | 200 /// Class used to capture the result of searching for an existing 208 NamedDecl *Existing = nullptr; 216 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing, 219 : Reader(Reader), New(New), Existing(Existing), AddResult(true), 224 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing), 238 operator NamedDecl*() const { return Existing; } 241 operator T*() const { return dyn_cast_or_null<T>(Existing); } 418 void mergeRedeclarable(Redeclarable<T> *D, T *Existing, [all...] |
| ASTReader.cpp | 265 /// Compare the given set of language options against an existing set of 369 /// Compare the given set of target options against an existing set of 421 // a strict subset of the existing feature set, there is nothing to diagnose. 428 << /* is-existing-feature */ false << Feature; 431 << /* is-existing-feature */ true << Feature; 625 /// against the preprocessor options in an existing preprocessor. 646 // Dig out the macro definition in the existing preprocessor options. 648 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName]; 658 if (Existing.second) { 666 SuggestedPredefines += Existing.first.str() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| ItaniumManglingCanonicalizer.cpp | 108 if (NodeHeader *Existing = Nodes.FindNodeOrInsertPos(ID, InsertPos)) 109 return {static_cast<T*>(Existing->getNode()), false}; 148 // Node is pre-existing; check if it's in our remapping table.
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| DeclTemplate.cpp | 326 EntryType *Existing = Specializations.GetOrInsertNode(Entry); 327 (void)Existing; 328 assert(SETraits::getDecl(Existing)->isCanonicalDecl() && 545 ClassTemplatePartialSpecializationDecl *Existing 547 (void)Existing; 548 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?"); 1219 VarTemplatePartialSpecializationDecl *Existing = 1221 (void)Existing; 1222 assert(Existing->isCanonicalDecl() && "Non-canonical specialization?");
|
| ASTContext.cpp | 3670 // Look for an existing type with these properties. 3727 IncompleteArrayType *existing = local 3729 assert(!existing && "Shouldn't be in the map!"); (void) existing; 4262 QualType Existing = QualType(FPT, 0); 4264 // If we find a pre-existing equivalent FunctionProtoType, we can just reuse 4271 return Existing; 4276 Canonical = getCanonicalType(Existing); 4446 if (DependentExtIntType *Existing = 4448 return QualType(Existing, 0) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| HexagonMCTargetDesc.cpp | 413 auto Existing = ArchSubtarget.find(std::string(STI->getCPU())); 414 if (Existing == ArchSubtarget.end()) 416 return Existing->second.get(); 422 // turns on hvxvNN, corresponding to the existing ArchVNN.
|
| /src/usr.bin/make/unit-tests/ |
| varmod-assign.mk | 174 # Existing variables are updated in their previous scope, and environment 203 # Existing variables are updated in their previous scope, and environment
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| DIE.cpp | 153 if (DIEAbbrev *Existing = 155 Die.setAbbrevNumber(Existing->getNumber()); 156 return *Existing;
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| Pragma.cpp | 904 if (PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace)) { 905 InsertNS = Existing->getIfNamespace(); 932 PragmaHandler *Existing = PragmaHandlers->FindHandler(Namespace); 933 assert(Existing && "Namespace containing handler does not exist!"); 935 NS = Existing->getIfNamespace();
|
| ModuleMap.cpp | 373 /// header, supplied by Clang to replace, override, or augment existing system 820 // Try to find an existing module with this name. 858 assert(!Modules[Name] && "redefining existing module"); 885 assert(!Modules[Name] && "redefining existing module"); 1949 if (Module *Existing = Map.lookupModuleQualified(ModuleName, ActiveModule)) { 1954 bool LoadedFromASTFile = Existing->DefinitionLoc.isInvalid(); 1961 SourceMgr.getDecomposedLoc(Existing->DefinitionLoc).first; 1975 if (!Existing->Parent && Map.mayShadowNewModule(Existing)) { 1976 ShadowingModule = Existing; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| Metadata.cpp | 1248 // Handle removal of an existing value. 1346 auto *Existing = getMetadata(LLVMContext::MD_annotation); 1349 if (Existing) { 1350 auto *Tuple = cast<MDTuple>(Existing); 1502 // Remove any existing vcall visibility metadata first in case we are
|
| /src/external/gpl3/gdb.old/dist/gdb/contrib/ari/ |
| update-web-ari.sh | 840 use deprecated mechanisms. Existing code, when touched, should be
|
| /src/external/gpl3/gdb/dist/gdb/contrib/ari/ |
| update-web-ari.sh | 840 use deprecated mechanisms. Existing code, when touched, should be
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| PGOInstrumentation.cpp | 1256 auto *Existing = F.getMetadata(LLVMContext::MD_annotation); 1257 if (Existing) { 1258 MDTuple *Tuple = cast<MDTuple>(Existing);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| LoopUtils.cpp | 347 for (const MDOperand &Existing : drop_begin(OrigLoopID->operands())) { 348 MDNode *Op = cast<MDNode>(Existing.get()); 776 // like. We also have the benefit of being able to reuse existing well tested 833 // Support loops with an exiting latch and other existing exists only 865 // Support loops with an exiting latch and other existing exists only 1364 // recurrences). Is there existing code we can reuse? 1381 // expander to leverage its knowledge of existing expressions.
|
| /src/usr.sbin/sysinst/ |
| msg.mi.en | 70 disk, or upgrade an existing NetBSD system, with a minimum of work. 108 any existing configuration info. (Quit and choose `install' or 142 message Available_wedges {Existing "wedges"} 187 {If you do not want to use the existing partitions, you can 189 or remove existing ones and apply the default partition sizes.} 233 message ptnsizes_mark_existing {'=' existing} 296 message cvtscheme_hdr {What would you like to do to the existing partitions?} 1077 {Use existing $1 partitions} 1341 {This is an already existing partition.
|
| msg.mi.es | 144 message Available_wedges {Existing "wedges"} 189 {If you do not want to use the existing partitions, you can 191 or remove existing ones and apply the default partition sizes.} 235 message ptnsizes_mark_existing {�=� existing} 298 message cvtscheme_hdr {What would you like to do to the existing partitions?} 1098 {Use existing $1 partitions} 1384 {This is an already existing partition.
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| SelectionDAG.cpp | 1039 /// node already exists, in which case transfer all its users to the existing 1046 SDNode *Existing = CSEMap.GetOrInsertNode(N); 1047 if (Existing != N) { 1048 // If there was already an existing matching node, use ReplaceAllUsesWith 1049 // to replace the dead one with the existing one. This can cause 1051 ReplaceAllUsesWith(N, Existing); 1055 DUL->NodeDeleted(N, Existing); 8160 if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos)) 8161 return Existing; 8186 if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos) [all...] |