HomeSort by relevance Sort by last modified time
    Searched refs:Deleted (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/clang/test/SemaCXX/
cxx98-compat-flags.cpp 27 struct Deleted {
28 Private p; // expected-note {{copy constructor of 'Deleted' is implicitly deleted because field 'p' has an inaccessible copy constructor}}
34 const Deleted &d = Deleted(); // expected-warning {{copying variable of type 'CopyCtorIssues::Deleted' when binding a reference to a temporary would invoke a deleted constructor in C++98}}
cxx98-compat-pedantic.cpp 70 struct Deleted {
71 Private p; // expected-note {{implicitly deleted}}
79 const Deleted &d = Deleted(); // expected-warning {{copying variable of type 'CopyCtorIssues::Deleted' when binding a reference to a temporary would invoke a deleted constructor in C++98}}
  /external/clang/test/CXX/special/class.copy/
p11.0x.move.cpp 5 NonTrivial(NonTrivial&&); // expected-note{{copy constructor is implicitly deleted}}
8 // A defaulted move constructor for a class X is defined as deleted if X has:
12 NonTrivial NT; // expected-note{{deleted because variant field 'NT' has a non-trivial move constructor}}
19 NonTrivial NT; // expected-note{{deleted because variant field 'NT' has a non-trivial move constructor}}
27 // that is deleted or inaccessible
37 NoAccess NA; // expected-note{{deleted because field 'NA' has an inaccessible move constructor}}
54 Ambiguity A; // expected-note{{deleted because field 'A' has multiple move constructors}}
55 IsAmbiguous(IsAmbiguous&&); // expected-note{{copy constructor is implicitly deleted because 'IsAmbiguous' has a user-declared move constructor}}
59 struct Deleted {
61 // 'IA' is deleted, but we select the copy constructor (we ignore the mov
    [all...]
p11.0x.copy.cpp 8 // A defaulted copy constructor for a class X is defined as deleted if X has:
12 NonTrivial NT; // expected-note{{copy constructor of 'DeletedNTVariant' is implicitly deleted because variant field 'NT' has a non-trivial copy constructor}}
16 DeletedNTVariant DVb(DVa); // expected-error{{call to implicitly-deleted copy constructor}}
20 NonTrivial NT; // expected-note{{copy constructor of 'DeletedNTVariant2' is implicitly deleted because variant field 'NT' has a non-trivial copy constructor}}
25 DeletedNTVariant2 DV2b(DV2a); // expected-error{{call to implicitly-deleted copy constructor}}
29 // that is deleted or inaccessible
39 NoAccess NA; // expected-note{{copy constructor of 'HasNoAccess' is implicitly deleted because field 'NA' has an inaccessible copy constructor}}
42 HasNoAccess HNAb(HNAa); // expected-error{{call to implicitly-deleted copy constructor}}
61 Ambiguity A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because field 'A' has multiple copy constructors}}
65 IsAmbiguous IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}
    [all...]
  /external/skia/src/core/
SkTDynamicHash.h 50 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted()));
77 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted()));
98 if (Deleted() != candidate && GetKey(*candidate) == key) {
149 if (Empty() == candidate || Deleted() == candidate || GetKey(*candidate) == key) {
159 // We have two special values to indicate an empty or deleted entry.
161 static T* Deleted() { return reinterpret_cast<T*>(1); } // Also an invalid pointer.
174 int count = 0, deleted = 0; local
176 if (Deleted() == fArray[i]) {
177 deleted++;
184 SKTDYNAMICHASH_CHECK(deleted == fDeleted)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 65 bool isDeleted(uint32_t K) const { return Deleted.test(K); }
68 mutable SparseBitVector<> Deleted;
  /external/autotest/client/cros/cellular/pseudomodem/
messaging.py 47 Deleted
104 def Deleted(self, path):
106 Emitted when a message has been deleted.
108 @param path: Object path of the now deleted SMS.
  /external/swiftshader/third_party/subzero/src/
IceLoopAnalyzer.cpp 78 void setDeleted() { Deleted = true; }
79 bool isDeleted() const { return Deleted; }
92 bool Deleted = false;
113 /// The number of nodes which have been marked deleted. This is used to track
121 if (Deleted)
  /external/llvm/lib/DebugInfo/PDB/Raw/
NameMap.cpp 86 // or not a bucket is 'deleted'.
92 "Expected name map num deleted words"));
96 "Number of deleted words is too large");
98 SparseBitVector<> Deleted;
107 Deleted.set((I * 32) + Idx);
161 if (auto EC = Writer.writeInteger(0U)) // Num Deleted Words
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PlatformVarCleanupLib/
PlatVarCleanup.h 80 BOOLEAN Deleted;
  /build/soong/ui/build/
build.go 137 ctx.Println("Deleted images and staging directories.")
141 ctx.Println("Deleted data files.")
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 57 constexpr int Deleted() const = delete;
  /external/llvm/lib/Target/Hexagon/
HexagonOptAddrMode.cpp 75 MISetType Deleted;
297 // Reduce total size by 2 if original tfr can be deleted.
481 Deleted.insert(UseMI);
501 Deleted.insert(UseMI);
570 Deleted.insert(MI);
636 Deleted.clear();
644 for (auto MI : Deleted)
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Map.c 755 BOOLEAN Deleted;
763 Deleted = FALSE;
800 Deleted = TRUE;
852 Deleted = TRUE;
857 if (!Deleted) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
objdump_test.go 34 if hasPrefix(dec.text, deleted...) {
96 // See A.30 Deleted Instructions and A.31 Discontiued Opcodes
97 var deleted = strings.Fields(` var
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
objdump_test.go 34 if hasPrefix(dec.text, deleted...) {
96 // See A.30 Deleted Instructions and A.31 Discontiued Opcodes
97 var deleted = strings.Fields(` var
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
Variable.c 18 Delete Boot Option that represent a Deleted state in BootOptionMenu.
23 BM_LOAD_CONTEXT marked for deletion is deleted.
24 @retval EFI_NOT_FOUND If can not find the boot option want to be deleted.
49 if (!NewLoadContext->Deleted) {
177 Delete Load Option that represent a Deleted state in BootOptionMenu.
182 @retval EFI_NOT_FOUND Fail to find the driver option want to be deleted.
208 if (!NewLoadContext->Deleted) {
605 NewLoadContext->Deleted = FALSE;
792 NewLoadContext->Deleted = FALSE;
915 no "BootNext" specified in BMM, this EFI Variable is deleted.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerLib/
Variable.c 18 Delete Boot Option that represent a Deleted state in BootOptionMenu.
23 BM_LOAD_CONTEXT marked for deletion is deleted.
24 @retval EFI_NOT_FOUND If can not find the boot option want to be deleted.
49 if (!NewLoadContext->Deleted) {
171 Delete Load Option that represent a Deleted state in BootOptionMenu.
176 @retval EFI_NOT_FOUND Fail to find the driver option want to be deleted.
202 if (!NewLoadContext->Deleted) {
584 NewLoadContext->Deleted = FALSE;
742 NewLoadContext->Deleted = FALSE;
839 no "BootNext" specified in BMM, this EFI Variable is deleted.
    [all...]

Completed in 3097 milliseconds

1 2 3