Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h1597 unsigned IsDefaulted : 1; // sunk from CXXMethoDecl variable
1692 IsDefaulted(false), IsExplicitlyDefaulted(false), in FunctionDecl()
1853 bool isDefaulted() const { return IsDefaulted; } in isDefaulted()
1854 void setDefaulted(bool D = true) { IsDefaulted = D; }
1910 bool isDeletedAsWritten() const { return IsDeleted && !IsDefaulted; } in isDeletedAsWritten()
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp845 TEST(IsDefaulted, MatchesDefaultedFunctionDeclarations) { in TEST() argument
/external/clang/lib/Serialization/
DASTWriterDecl.cpp525 Record.push_back(D->IsDefaulted); in VisitFunctionDecl()
DASTReaderDecl.cpp773 FD->IsDefaulted = Record[Idx++]; in VisitFunctionDecl()
/external/clang/lib/AST/
DDecl.cpp2481 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed || in isDefined()