Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDependenceFlags.h27 Instantiation = 2, enumerator
41 TypeInstantiation = Type | Instantiation,
42 ValueInstantiation = Value | Instantiation,
43 TypeValueInstantiation = Type | Value | Instantiation,
60 Instantiation = 2, enumerator
75 DependentInstantiation = Dependent | Instantiation,
86 Instantiation = 2, \
91 DependentInstantiation = Dependent | Instantiation, \
116 Instantiation = 2, in LLVM_COMMON_DEPENDENCE() enumerator
132 Syntactic = UnexpandedPack | Instantiation | Error, in LLVM_COMMON_DEPENDENCE()
[all …]
H A DType.h2177 return getDependence() & TypeDependence::Instantiation;
5644 TypeDependence::Instantiation) &
H A DExpr.h215 return static_cast<bool>(getDependence() & ExprDependence::Instantiation); in isInstantiationDependent()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp2490 Sema::SubstBaseSpecifiers(CXXRecordDecl *Instantiation, in SubstBaseSpecifiers() argument
2499 Instantiation->setInvalidDecl(); in SubstBaseSpecifiers()
2541 = CheckBaseSpecifier(Instantiation, in SubstBaseSpecifiers()
2575 = CheckBaseSpecifier(Instantiation, in SubstBaseSpecifiers()
2586 if (!Invalid && AttachBaseSpecifiers(Instantiation, InstantiatedBases)) in SubstBaseSpecifiers()
2627 CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern, in InstantiateClass() argument
2633 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Instantiation, in InstantiateClass()
2634 Instantiation->getInstantiatedFromMemberClass(), in InstantiateClass()
2641 Instantiation->getNameForDiagnostic(OS, getPrintingPolicy(), in InstantiateClass()
2650 = Instantiation->getMemberSpecializationInfo()) { in InstantiateClass()
[all …]
H A DSemaTemplateVariadic.cpp710 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation in CheckParameterPacksForExpansion() local
713 if (Instantiation->is<DeclArgumentPack *>()) { in CheckParameterPacksForExpansion()
715 NewPackSize = Instantiation->get<DeclArgumentPack *>()->size(); in CheckParameterPacksForExpansion()
828 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation in getNumArgumentsInExpansion() local
831 if (Instantiation->is<Decl*>()) in getNumArgumentsInExpansion()
836 unsigned Size = Instantiation->get<DeclArgumentPack *>()->size(); in getNumArgumentsInExpansion()
H A DSemaTemplate.cpp784 NamedDecl *Instantiation, in DiagnoseUninstantiableTemplate() argument
790 assert(isa<TagDecl>(Instantiation) || isa<FunctionDecl>(Instantiation) || in DiagnoseUninstantiableTemplate()
791 isa<VarDecl>(Instantiation)); in DiagnoseUninstantiableTemplate()
816 if (TagDecl *TD = dyn_cast<TagDecl>(Instantiation)) in DiagnoseUninstantiableTemplate()
825 Instantiation->setInvalidDecl(); in DiagnoseUninstantiableTemplate()
827 if (isa<FunctionDecl>(Instantiation)) { in DiagnoseUninstantiableTemplate()
830 << /*member function*/ 1 << Instantiation->getDeclName() in DiagnoseUninstantiableTemplate()
831 << Instantiation->getDeclContext(); in DiagnoseUninstantiableTemplate()
834 assert(isa<TagDecl>(Instantiation) && "Must be a TagDecl!"); in DiagnoseUninstantiableTemplate()
841 if (isa<FunctionDecl>(Instantiation)) { in DiagnoseUninstantiableTemplate()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DComputeDependence.cpp92 if ((Deps & ExprDependence::Value) && (Deps & ExprDependence::Instantiation)) in computeDependence()
217 (ExprDependence::Instantiation | ExprDependence::Error); in computeDependence()
222 E->getSubExpr()->getDependence() | ExprDependence::Instantiation; in computeDependence()
224 D &= ~ExprDependence::Instantiation; in computeDependence()
230 ExprDependence::Instantiation; in computeDependence()
240 D |= ExprDependence::Instantiation; in computeDependence()
468 Deps |= ExprDependence::Instantiation; in computeDependence()
478 Deps |= ExprDependence::Instantiation; in computeDependence()
692 D |= ExprDependence::Instantiation; in getDependenceInExpr()
706 Deps |= ExprDependence::Instantiation; in computeDependence()
[all …]
H A DTemplateBase.cpp205 TemplateArgumentDependence::Instantiation; in getDependence()
213 TemplateArgumentDependence::Instantiation; in getDependence()
225 TemplateArgumentDependence::Instantiation; in getDependence()
241 return getDependence() & TemplateArgumentDependence::Instantiation; in isInstantiationDependent()
H A DNestedNameSpecifier.cpp206 NestedNameSpecifierDependence::Instantiation; in getDependence()
239 return getDependence() & NestedNameSpecifierDependence::Instantiation; in isInstantiationDependent()
H A DExprConcepts.cpp107 D |= ExprDependence::Instantiation; in ConceptSpecializationExpr()
H A DTemplateName.cpp216 return getDependence() & TemplateNameDependence::Instantiation; in isInstantiationDependent()
H A DType.cpp289 TypeDependence::Instantiation | in MatrixType()
3192 (TypeDependence::Instantiation | TypeDependence::UnexpandedPack)); in FunctionProtoType()
3208 (TypeDependence::Instantiation | TypeDependence::UnexpandedPack)); in FunctionProtoType()
H A DExpr.cpp1616 Deps |= ExprDependence::Instantiation; in Create()
1634 if (TemplateArgDeps & TemplateArgumentDependence::Instantiation) in Create()
1635 Deps |= ExprDependence::Instantiation; in Create()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/
H A Dpropagate_const141 "Instantiation of propagate_const with an array type is ill-formed.");
143 "Instantiation of propagate_const with a reference type is ill-formed.");
145 "Instantiation of propagate_const with a function-pointer type is ill-formed.");
147 … "Instantiation of propagate_const with a pointer to (possibly cv-qualified) void is ill-formed.");
/netbsd-src/external/apache2/llvm/dist/clang/
H A DNOTES.txt13 C++ Template Instantiation benchmark:
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsCondMov.td105 // Instantiation of instructions.
198 // Instantiation of conditional move patterns.
H A DMicroMipsInstrInfo.td1294 // Instantiation of conditional move patterns.
1305 // Instantiation of conditional move patterns.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DMasmParser.cpp1130 std::unique_ptr<MemoryBuffer> Instantiation = in Lex() local
1135 CurBuffer = SrcMgr.AddNewSourceBuffer(std::move(Instantiation), in Lex()
3138 std::unique_ptr<MemoryBuffer> Instantiation = in handleMacroEntry() local
3150 CurBuffer = SrcMgr.AddNewSourceBuffer(std::move(Instantiation), SMLoc()); in handleMacroEntry()
6611 std::unique_ptr<MemoryBuffer> Instantiation = in instantiateMacroLikeBody() local
6621 CurBuffer = SrcMgr.AddNewSourceBuffer(std::move(Instantiation), SMLoc()); in instantiateMacroLikeBody()
H A DAsmParser.cpp2887 std::unique_ptr<MemoryBuffer> Instantiation = in handleMacroEntry() local
2899 CurBuffer = SrcMgr.AddNewSourceBuffer(std::move(Instantiation), SMLoc()); in handleMacroEntry()
5609 std::unique_ptr<MemoryBuffer> Instantiation = in instantiateMacroLikeBody() local
5619 CurBuffer = SrcMgr.AddNewSourceBuffer(std::move(Instantiation), SMLoc()); in instantiateMacroLikeBody()
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DSourceBasedCodeCoverage.rst260 * Instantiation coverage is the percentage of function instantiations which
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h7438 NamedDecl *Instantiation,
9310 SubstBaseSpecifiers(CXXRecordDecl *Instantiation,
9316 CXXRecordDecl *Instantiation, CXXRecordDecl *Pattern,
9322 EnumDecl *Instantiation, EnumDecl *Pattern,
9327 SourceLocation PointOfInstantiation, FieldDecl *Instantiation,
9365 CXXRecordDecl *Instantiation,
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Dappendix-common-errors.sdf209 > Instantiation of abstract objectClass.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCInstrPrefix.td2499 // Instantiation of the set boolean reverse patterns for 32-bit integers.
2506 // Instantiation of the set boolean reverse patterns for 64-bit integers.
2514 // Instantiation of the set boolean reverse patterns for f32, f64, f128.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp537 Deps |= ExprDependence::Instantiation; in VisitExpr()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/tests/
H A Dmm-ko.euc-kr.po6107 msgid "Instantiation. One process create others"
8916 #~ msgid "Instantiation"

12