Searched refs:IsDeleted (Results 1 – 9 of 9) sorted by relevance
1570 bool IsDeleted : 1; variable1666 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; }
1195 DCHECK(!dict->IsDeleted(i)); in HasAccessorsImpl()1295 DCHECK(!dictionary->IsDeleted(entry)); in FilterKey()1373 if (dictionary->IsDeleted(i)) continue; in AddElementsToKeyAccumulatorImpl()
3429 bool IsDeleted(int entry) { in IsDeleted() function3430 return Shape::IsDeleted(static_cast<Derived*>(this), entry); in IsDeleted()3572 static bool IsDeleted(Dictionary* dict, int entry) { in IsDeleted() function3624 static bool IsDeleted(Dictionary* dict, int entry);
17429 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()
7576 bool GlobalDictionaryShape::IsDeleted(Dictionary* dict, int entry) { in IsDeleted() function
2405 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed || in isDefined()2407 Definition = I->IsDeleted ? I->getCanonicalDecl() : I; in isDefined()
497 Record.push_back(D->IsDeleted); in VisitFunctionDecl()
716 FD->IsDeleted = Record[Idx++]; in VisitFunctionDecl()
1720 TEST(IsDeleted, MatchesDeletedFunctionDeclarations) { in TEST() argument