Searched refs:IsDefaulted (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TemplateBase.h | 117 unsigned IsDefaulted : 1; 125 unsigned IsDefaulted : 1; 145 unsigned IsDefaulted : 1; 153 unsigned IsDefaulted : 1; 161 unsigned IsDefaulted : 1; 169 unsigned IsDefaulted : 1; 183 void initFromType(QualType T, bool IsNullPtr, bool IsDefaulted); 184 void initFromDeclaration(ValueDecl *D, QualType QT, bool IsDefaulted); 186 QualType Type, bool IsDefaulted); 188 const APValue &V, bool IsDefaulted); [all …]
|
| H A D | DeclBase.h | 1771 uint64_t IsDefaulted : 1;
|
| H A D | Decl.h | 2364 bool isDefaulted() const { return FunctionDeclBits.IsDefaulted; } in isDefaulted() 2365 void setDefaulted(bool D = true) { FunctionDeclBits.IsDefaulted = D; }
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 161 bool IsDefaulted) { in initFromType() argument 163 TypeOrValue.IsDefaulted = IsDefaulted; in initFromType() 168 bool IsDefaulted) { in initFromDeclaration() argument 171 DeclArg.IsDefaulted = IsDefaulted; in initFromDeclaration() 178 QualType Type, bool IsDefaulted) { in initFromIntegral() argument 180 Integer.IsDefaulted = IsDefaulted; in initFromIntegral() 198 const APValue &V, bool IsDefaulted) { in initFromStructural() argument 200 Value.IsDefaulted = IsDefaulted; in initFromStructural() 208 bool IsDefaulted) { in TemplateArgument() argument 209 initFromIntegral(Ctx, Value, Type, IsDefaulted); in TemplateArgument() [all …]
|
| H A D | Decl.cpp | 3089 FunctionDeclBits.IsDefaulted = false; in FunctionDecl()
|