Home
last modified time | relevance | path

Searched refs:IsDefaulted (Results 1 – 9 of 9) 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/llvm-project/clang/include/clang/AST/
DDeclBase.h1535 uint64_t IsDefaulted : 1; variable
DDecl.h2164 bool isDefaulted() const { return FunctionDeclBits.IsDefaulted; } in isDefaulted()
2165 void setDefaulted(bool D = true) { FunctionDeclBits.IsDefaulted = D; }
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp845 TEST(IsDefaulted, MatchesDefaultedFunctionDeclarations) { in TEST() argument
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp1286 TEST_P(ASTMatchersTest, IsDefaulted) { in TEST_P() 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()
/external/llvm-project/clang/lib/AST/
DDecl.cpp2832 FunctionDeclBits.IsDefaulted = false; in FunctionDecl()