Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h1595 unsigned IsDeleted : 1; variable
1691 HasWrittenPrototype(true), IsDeleted(false), IsTrivial(false), in FunctionDecl()
1815 return IsDeleted || Body || IsLateTemplateParsed; in isThisDeclarationADefinition()
1909 bool isDeleted() const { return getCanonicalDecl()->IsDeleted; } in isDeleted()
1910 bool isDeletedAsWritten() const { return IsDeleted && !IsDefaulted; } in isDeletedAsWritten()
1911 void setDeletedAsWritten(bool D = true) { IsDeleted = D; }
/external/clang/lib/AST/
DDecl.cpp2481 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed || in isDefined()
2483 Definition = I->IsDeleted ? I->getCanonicalDecl() : I; in isDefined()
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp852 TEST(IsDeleted, MatchesDeletedFunctionDeclarations) { in TEST() argument
/external/clang/lib/Serialization/
DASTWriterDecl.cpp523 Record.push_back(D->IsDeleted); in VisitFunctionDecl()
DASTReaderDecl.cpp771 FD->IsDeleted = Record[Idx++]; in VisitFunctionDecl()