Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DSpecialMemberFunctionsCheck.h48 bool IsDeleted; member
52 (Other.IsDeleted == IsDeleted);
DSpecialMemberFunctionsCheck.cpp154 auto IsDeleted = [&](SpecialMemberFunctionKind Kind) { in checkForMissingMembers() local
156 return data.FunctionKind == Kind && data.IsDeleted; in checkForMissingMembers()
190 (IsDeleted(SpecialMemberFunctionKind::CopyConstructor) && in checkForMissingMembers()
191 IsDeleted(SpecialMemberFunctionKind::CopyAssignment)))) { in checkForMissingMembers()
/external/tensorflow/tensorflow/compiler/xla/python/
Dpy_buffer.h66 bool is_deleted() const { return buffer_->IsDeleted(); } in is_deleted()
Dpy_buffer.cc109 if (buffer_->IsDeleted()) { in AsNumPyArray()
252 if (buffer.IsDeleted()) { in PjRtBufferGetBuffer()
/external/icing/icing/store/
Ddocument-store.h679 bool IsDeleted(DocumentId document_id) const;
Ddocument-store.cc1015 return !IsDeleted(document_id) && !IsExpired(document_id); in InternalDoesDocumentExist()
1018 bool DocumentStore::IsDeleted(DocumentId document_id) const { in IsDeleted() function in icing::lib::DocumentStore
1350 if (IsDeleted(document_id)) { in CalculateDocumentStatusCounts()
1584 if (IsDeleted(document_id)) { in OptimizeInto()
/external/tensorflow/tensorflow/compiler/xla/pjrt/
Dpjrt_client.h362 virtual bool IsDeleted() = 0;
Dpjrt_stream_executor_client.h502 bool IsDeleted() override;
Dpjrt_stream_executor_client.cc1122 bool PjRtStreamExecutorBuffer::IsDeleted() { in IsDeleted() function in xla::PjRtStreamExecutorBuffer
/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/openscreen/third_party/abseil/src/absl/container/internal/
Draw_hash_set.h327 inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
1636 if (!IsDeleted(ctrl_[i])) continue;
1664 assert(IsDeleted(ctrl_[new_i]));
1742 !IsDeleted(ctrl_[target.offset]))) {
/external/angle/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set.h316 inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
1656 if (!IsDeleted(ctrl_[i])) continue;
1684 assert(IsDeleted(ctrl_[new_i]));
1762 !IsDeleted(ctrl_[target.offset]))) {
/external/abseil-cpp/absl/container/internal/
Draw_hash_set.h312 inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
1562 if (!IsDeleted(ctrl_[i])) continue;
1589 assert(IsDeleted(ctrl_[new_i]));
1701 !IsDeleted(ctrl_[target.offset]))) {
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set.h327 inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
1582 if (!IsDeleted(ctrl_[i])) continue;
1609 assert(IsDeleted(ctrl_[new_i]));
1722 !IsDeleted(ctrl_[target.offset]))) {
/external/libtextclassifier/abseil-cpp/absl/container/internal/
Draw_hash_set.h327 inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
1582 if (!IsDeleted(ctrl_[i])) continue;
1609 assert(IsDeleted(ctrl_[new_i]));
1722 !IsDeleted(ctrl_[target.offset]))) {
/external/webrtc/third_party/abseil-cpp/absl/container/internal/
Draw_hash_set.h312 inline bool IsDeleted(ctrl_t c) { return c == kDeleted; }
1562 if (!IsDeleted(ctrl_[i])) continue;
1589 assert(IsDeleted(ctrl_[new_i]));
1701 !IsDeleted(ctrl_[target.offset]))) {
/external/llvm-project/clang/include/clang/AST/
DDecl.h1933 bool isDeletedBit() const { return FunctionDeclBits.IsDeleted; } in isDeletedBit()
2288 return getCanonicalDecl()->FunctionDeclBits.IsDeleted; in isDeleted()
2292 return FunctionDeclBits.IsDeleted && !isDefaulted(); in isDeletedAsWritten()
2295 void setDeletedAsWritten(bool D = true) { FunctionDeclBits.IsDeleted = D; }
DDeclBase.h1526 uint64_t IsDeleted : 1; variable
/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/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp1297 TEST_P(ASTMatchersTest, IsDeleted) { in TEST_P() argument
/external/clang/lib/Serialization/
DASTWriterDecl.cpp523 Record.push_back(D->IsDeleted); in VisitFunctionDecl()
DASTReaderDecl.cpp771 FD->IsDeleted = Record[Idx++]; in VisitFunctionDecl()
/external/llvm-project/clang/lib/AST/
DDecl.cpp2829 FunctionDeclBits.IsDeleted = false; in FunctionDecl()