Home
last modified time | relevance | path

Searched refs:IsDeleted (Results 1 – 9 of 9) 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/v8/src/
Delements.cc1432 DCHECK(!dict->IsDeleted(i)); in HasAccessorsImpl()
1530 DCHECK(!dictionary->IsDeleted(entry)); in FilterKey()
1612 if (dictionary->IsDeleted(i)) continue; in AddElementsToKeyAccumulatorImpl()
Dobjects.h3595 bool IsDeleted(int entry) { in IsDeleted() function
3596 return Shape::IsDeleted(static_cast<Derived*>(this), entry); in IsDeleted()
3739 static bool IsDeleted(Dictionary* dict, int entry) { in IsDeleted() function
3792 static bool IsDeleted(Dictionary* dict, int entry);
Dobjects.cc17878 DCHECK(!IsDeleted(i)); in HasComplexElements()
17994 if (this->IsDeleted(i)) continue; in NumberOfElementsFilterAttributes()
18038 if (dictionary->IsDeleted(i)) continue; in CopyEnumKeysTo()
18076 if (raw_dict->IsDeleted(i)) continue; in IterationIndices()
18105 if (raw_dict->IsDeleted(i)) continue; in CollectKeysTo()
Dobjects-inl.h7855 bool GlobalDictionaryShape::IsDeleted(Dictionary* dict, int entry) { in IsDeleted() function
/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()