Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclBase.h1618 uint64_t IsDefaulted : 1;
H A DDecl.h2235 bool isDefaulted() const { return FunctionDeclBits.IsDefaulted; } in isDefaulted()
2236 void setDefaulted(bool D = true) { FunctionDeclBits.IsDefaulted = D; }
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNarrowingTest.cpp1742 TEST_P(ASTMatchersTest, IsDefaulted) { in TEST_P() argument
/llvm-project-15.0.7/clang/lib/AST/
H A DDecl.cpp2958 FunctionDeclBits.IsDefaulted = false; in FunctionDecl()