Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h1570 bool IsDeleted : 1; variable
1666 HasWrittenPrototype(true), IsDeleted(false), IsTrivial(false), in FunctionDecl()
1779 return IsDeleted || Body || IsLateTemplateParsed; in isThisDeclarationADefinition()
1873 bool isDeleted() const { return getCanonicalDecl()->IsDeleted; } in isDeleted()
1874 bool isDeletedAsWritten() const { return IsDeleted && !IsDefaulted; } in isDeletedAsWritten()
1875 void setDeletedAsWritten(bool D = true) { IsDeleted = D; }
/external/v8/src/
Delements.cc1195 DCHECK(!dict->IsDeleted(i)); in HasAccessorsImpl()
1295 DCHECK(!dictionary->IsDeleted(entry)); in FilterKey()
1373 if (dictionary->IsDeleted(i)) continue; in AddElementsToKeyAccumulatorImpl()
Dobjects.h3429 bool IsDeleted(int entry) { in IsDeleted() function
3430 return Shape::IsDeleted(static_cast<Derived*>(this), entry); in IsDeleted()
3572 static bool IsDeleted(Dictionary* dict, int entry) { in IsDeleted() function
3624 static bool IsDeleted(Dictionary* dict, int entry);
Dobjects.cc17429 DCHECK(!IsDeleted(i)); in HasComplexElements()
17535 if (this->IsDeleted(i)) continue; in NumberOfElementsFilterAttributes()
17567 if (details.IsDontEnum() || this->IsDeleted(i)) continue; in CopyEnumKeysTo()
17599 if (raw_dict->IsDeleted(i)) continue; in CollectKeysTo()
Dobjects-inl.h7576 bool GlobalDictionaryShape::IsDeleted(Dictionary* dict, int entry) { in IsDeleted() function
/external/clang/lib/AST/
DDecl.cpp2405 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed || in isDefined()
2407 Definition = I->IsDeleted ? I->getCanonicalDecl() : I; in isDefined()
/external/clang/lib/Serialization/
DASTWriterDecl.cpp497 Record.push_back(D->IsDeleted); in VisitFunctionDecl()
DASTReaderDecl.cpp716 FD->IsDeleted = Record[Idx++]; in VisitFunctionDecl()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp1720 TEST(IsDeleted, MatchesDeletedFunctionDeclarations) { in TEST() argument