OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConceptDecl
(Results
1 - 25
of
31
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTConcept.h
24
class
ConceptDecl
;
119
ConceptDecl
*NamedConcept;
129
ConceptDecl
*NamedConcept,
154
ConceptDecl
*getNamedConcept() const {
177
ConceptDecl
*NamedConcept,
ExprConcepts.h
61
NamedDecl *FoundDecl,
ConceptDecl
*NamedConcept,
66
ConceptSpecializationExpr(const ASTContext &C,
ConceptDecl
*NamedConcept,
79
NamedDecl *FoundDecl,
ConceptDecl
*NamedConcept,
85
Create(const ASTContext &C,
ConceptDecl
*NamedConcept,
DeclTemplate.h
55
class
ConceptDecl
;
1349
ConceptDecl
*CD,
3231
class
ConceptDecl
: public TemplateDecl, public Mergeable<
ConceptDecl
> {
3235
ConceptDecl
(DeclContext *DC, SourceLocation L, DeclarationName Name,
3240
static
ConceptDecl
*Create(ASTContext &C, DeclContext *DC,
3244
static
ConceptDecl
*CreateDeserialized(ASTContext &C, unsigned ID);
3259
ConceptDecl
*getCanonicalDecl() override { return getFirstDecl(); }
3260
const
ConceptDecl
*getCanonicalDecl() const { return getFirstDecl(); }
TextNodeDumper.h
370
void VisitConceptDecl(const
ConceptDecl
*D);
ASTNodeTraverser.h
593
void VisitConceptDecl(const
ConceptDecl
*D) {
TypeLoc.h
38
class
ConceptDecl
;
2100
ConceptDecl
*getNamedConcept() const {
Type.h
62
class
ConceptDecl
;
4985
ConceptDecl
*TypeConstraintConcept;
4988
TypeDependence ExtraDependence,
ConceptDecl
*CD,
5016
ConceptDecl
*getTypeConstraintConcept() const {
5039
bool IsDependent,
ConceptDecl
*CD,
ASTContext.h
95
class
ConceptDecl
;
1599
ConceptDecl
*TypeConstraintConcept = nullptr,
RecursiveASTVisitor.h
1835
DEF_TRAVERSE_DECL(
ConceptDecl
, {
/src/external/apache2/llvm/dist/clang/lib/AST/
ExprConcepts.cpp
36
NamedDecl *FoundDecl,
ConceptDecl
*NamedConcept,
77
ConceptDecl
*NamedConcept,
90
const ASTContext &C,
ConceptDecl
*NamedConcept,
115
ConceptDecl
*NamedConcept,
DeclTemplate.cpp
680
DeclarationNameInfo NameInfo, NamedDecl *FoundDecl,
ConceptDecl
*CD,
1001
//
ConceptDecl
Implementation
1003
ConceptDecl
*
ConceptDecl
::Create(ASTContext &C, DeclContext *DC,
1008
return new (C, DC)
ConceptDecl
(DC, L, Name, Params, ConstraintExpr);
1011
ConceptDecl
*
ConceptDecl
::CreateDeserialized(ASTContext &C,
1013
ConceptDecl
*Result = new (C, ID)
ConceptDecl
(nullptr, SourceLocation(),
ASTStructuralEquivalence.cpp
1805
ConceptDecl
*D1,
1806
ConceptDecl
*D2) {
DeclPrinter.cpp
1144
else if (const auto *Concept = dyn_cast<
ConceptDecl
>(D)) {
TextNodeDumper.cpp
2284
void TextNodeDumper::VisitConceptDecl(const
ConceptDecl
*D) {
Type.cpp
4391
ConceptDecl
*TypeConstraintConcept,
4410
bool IsDependent,
ConceptDecl
*CD,
ItaniumMangle.cpp
1087
} else if (isa<BuiltinTemplateDecl>(ND) || isa<
ConceptDecl
>(ND)) {
2095
if (isa<BuiltinTemplateDecl>(ND) || isa<
ConceptDecl
>(ND))
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp
681
ConceptDecl
*Concept, ArrayRef<TemplateArgument> TemplateArgs,
795
ConceptDecl
*CD = CSE->getNamedConcept();
SemaTemplate.cpp
300
isa<BuiltinTemplateDecl>(TD) || isa<
ConceptDecl
>(TD));
303
isa<
ConceptDecl
>(TD) ? TNK_Concept_template :
1118
ConceptDecl
*CD = cast<
ConceptDecl
>(TN.getAsTemplateDecl());
1163
ConceptDecl
*NamedConcept, SourceLocation LAngleLoc,
1214
ConceptDecl
*NamedConcept,
3671
isa<VarTemplateDecl>(Template) || isa<
ConceptDecl
>(Template)) {
4685
ConceptDecl
*NamedConcept,
4751
if (R.getAsSingle<
ConceptDecl
>()) {
4754
R.getAsSingle<
ConceptDecl
>(), TemplateArgs)
[
all
...]
SemaType.cpp
1652
ConceptDecl
*TypeConstraintConcept = nullptr;
1657
cast<
ConceptDecl
>(TemplateId->Template.get().getAsTemplateDecl());
3265
cast<
ConceptDecl
>(TemplateId->Template.get().getAsTemplateDecl()),
SemaTemplateInstantiate.cpp
793
if (isa<
ConceptDecl
>(Active->Entity))
TreeTransform.h
983
ConceptDecl
*TypeConstraintConcept,
3345
NamedDecl *FoundDecl,
ConceptDecl
*NamedConcept,
6511
ConceptDecl
*NewCD = nullptr;
6515
NewCD = cast_or_null<
ConceptDecl
>(getDerived().TransformDecl(
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp
382
void VisitConceptDecl(
ConceptDecl
*D);
2067
void ASTDeclReader::VisitConceptDecl(
ConceptDecl
*D) {
2355
ConceptDecl
*NamedConcept = Record.readDeclAs<
ConceptDecl
>();
3934
D =
ConceptDecl
::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp
107
void VisitConceptDecl(
ConceptDecl
*D);
1484
void ASTDeclWriter::VisitConceptDecl(
ConceptDecl
*D) {
ASTReaderStmt.cpp
805
E->NamedConcept = readDeclAs<
ConceptDecl
>();
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
7469
ConceptDecl
*NamedConcept,
7608
NamedDecl *FoundDecl,
ConceptDecl
*NamedConcept,
Completed in 134 milliseconds
1
2
Indexes created Sat Jun 13 00:24:39 UTC 2026