Home
last modified time | relevance | path

Searched refs:IsDefaulted (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateBase.h117 unsigned IsDefaulted : 1;
125 unsigned IsDefaulted : 1;
145 unsigned IsDefaulted : 1;
153 unsigned IsDefaulted : 1;
161 unsigned IsDefaulted : 1;
169 unsigned IsDefaulted : 1;
181 void initFromType(QualType T, bool IsNullPtr, bool IsDefaulted);
182 void initFromDeclaration(ValueDecl *D, QualType QT, bool IsDefaulted);
184 QualType Type, bool IsDefaulted);
186 const APValue &V, bool IsDefaulted);
[all …]
H A DDecl.h2310 bool isDefaulted() const { return FunctionDeclBits.IsDefaulted; } in isDefaulted()
2311 void setDefaulted(bool D = true) { FunctionDeclBits.IsDefaulted = D; }
H A DDeclBase.h1749 uint64_t IsDefaulted : 1;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTemplateBase.cpp165 bool IsDefaulted) { in initFromType() argument
167 TypeOrValue.IsDefaulted = IsDefaulted; in initFromType()
172 bool IsDefaulted) { in initFromDeclaration() argument
175 DeclArg.IsDefaulted = IsDefaulted; in initFromDeclaration()
182 QualType Type, bool IsDefaulted) { in initFromIntegral() argument
184 Integer.IsDefaulted = IsDefaulted; in initFromIntegral()
202 const APValue &V, bool IsDefaulted) { in initFromStructural() argument
204 Value.IsDefaulted = IsDefaulted; in initFromStructural()
212 bool IsDefaulted) { in TemplateArgument() argument
213 initFromIntegral(Ctx, Value, Type, IsDefaulted); in TemplateArgument()
[all …]
H A DDecl.cpp3051 FunctionDeclBits.IsDefaulted = false; in FunctionDecl()