/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | SpecialMemberFunctionsCheck.h | 48 bool IsDeleted; member 52 (Other.IsDeleted == IsDeleted);
|
D | SpecialMemberFunctionsCheck.cpp | 154 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/ |
D | py_buffer.h | 66 bool is_deleted() const { return buffer_->IsDeleted(); } in is_deleted()
|
D | py_buffer.cc | 109 if (buffer_->IsDeleted()) { in AsNumPyArray() 252 if (buffer.IsDeleted()) { in PjRtBufferGetBuffer()
|
/external/icing/icing/store/ |
D | document-store.h | 679 bool IsDeleted(DocumentId document_id) const;
|
D | document-store.cc | 1015 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/ |
D | pjrt_client.h | 362 virtual bool IsDeleted() = 0;
|
D | pjrt_stream_executor_client.h | 502 bool IsDeleted() override;
|
D | pjrt_stream_executor_client.cc | 1122 bool PjRtStreamExecutorBuffer::IsDeleted() { in IsDeleted() function in xla::PjRtStreamExecutorBuffer
|
/external/clang/include/clang/AST/ |
D | Decl.h | 1595 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/ |
D | raw_hash_set.h | 327 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/ |
D | raw_hash_set.h | 316 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/ |
D | raw_hash_set.h | 312 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/ |
D | raw_hash_set.h | 327 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/ |
D | raw_hash_set.h | 327 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/ |
D | raw_hash_set.h | 312 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/ |
D | Decl.h | 1933 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; }
|
D | DeclBase.h | 1526 uint64_t IsDeleted : 1; variable
|
/external/clang/lib/AST/ |
D | Decl.cpp | 2481 if (I->IsDeleted || I->IsDefaulted || I->Body || I->IsLateTemplateParsed || in isDefined() 2483 Definition = I->IsDeleted ? I->getCanonicalDecl() : I; in isDefined()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNarrowingTest.cpp | 852 TEST(IsDeleted, MatchesDeletedFunctionDeclarations) { in TEST() argument
|
/external/llvm-project/clang/unittests/ASTMatchers/ |
D | ASTMatchersNarrowingTest.cpp | 1297 TEST_P(ASTMatchersTest, IsDeleted) { in TEST_P() argument
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 523 Record.push_back(D->IsDeleted); in VisitFunctionDecl()
|
D | ASTReaderDecl.cpp | 771 FD->IsDeleted = Record[Idx++]; in VisitFunctionDecl()
|
/external/llvm-project/clang/lib/AST/ |
D | Decl.cpp | 2829 FunctionDeclBits.IsDeleted = false; in FunctionDecl()
|