HomeSort by relevance Sort by last modified time
    Searched full:deleted (Results 1 - 25 of 5561) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/f_unsorted_EAs/
name 1 unsorted EAs in inode should not be deleted
  /external/clang/test/CXX/special/class.dtor/
p5-0x.cpp 7 ~DeletedDtor() = delete; // expected-note 5 {{deleted here}}
13 // A defaulted destructor for a class X is defined as deleted if:
19 NonTrivDtor n; // expected-note {{destructor of 'A1' is implicitly deleted because variant field 'n' has a non-trivial destructor}}
21 A1 a1; // expected-error {{deleted function}}
28 A2 a2; // expected-error {{deleted function}}
33 A3 a3; // expected-error {{deleted function}}
40 A4 a4; // expected-error {{deleted function}}
43 // M has a deleted or inaccessible destructor.
46 DeletedDtor a; // expected-note {{because field 'a' has a deleted destructor}}
48 B1 b1; // expected-error {{deleted function}
    [all...]
  /external/clang/test/SemaCXX/
deleted-function.cpp 3 int i = delete; // expected-error {{only functions can have deleted definitions}}
5 void fn() = delete; // expected-note {{candidate function has been explicitly deleted}}
8 void fn2() = delete; // expected-error {{deleted definition must be first declaration}}
15 void ov(double) = delete; // expected-note {{candidate function has been explicitly deleted}}
18 WithDel() = delete; // expected-note {{function has been explicitly marked deleted here}}
19 void fn() = delete; // expected-note {{function has been explicitly marked deleted here}}
20 operator int() = delete; // expected-note {{function has been explicitly marked deleted here}}
23 int i = delete; // expected-error {{only functions can have deleted definitions}}
27 fn(); // expected-error {{call to deleted function 'fn'}}
29 ov(1.0); // expected-error {{call to deleted function 'ov'}
    [all...]
deleted-operator.cpp 4 bool operator~() = delete; // expected-note {{explicitly deleted}}
5 bool operator==(const PR10757&) = delete; // expected-note {{explicitly deleted}}
11 if(~a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 8 {{built-in candidate}}
12 if(a1==a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 121 {{built-in candidate}}
16 virtual ~DelOpDel() {} // expected-error {{deleted function}}
17 void operator delete(void*) = delete; // expected-note {{deleted here}}
cxx0x-deleted-default-ctor.cpp 13 bad_union u; // expected-error {{call to implicitly-deleted default constructor}}
17 bad_union2 u2; // expected-error {{call to implicitly-deleted default constructor}}
24 bad_anon a; // expected-error {{call to implicitly-deleted default constructor}}
30 bad_anon2 a2; // expected-error {{call to implicitly-deleted default constructor}}
54 bad_const bc; // expected-error {{call to implicitly-deleted default constructor}}
62 no_default() = delete; // expected-note 3{{deleted here}}
65 ~no_dtor() = delete; // expected-note 2{{deleted here}}
69 no_default nd; // expected-note {{field 'nd' has a deleted default constructor}}
71 bad_field_default bfd; // expected-error {{call to implicitly-deleted default constructor}}
72 struct bad_base_default : no_default { // expected-note {{base class 'no_default' has a deleted default constructor}
    [all...]
dr1301.cpp 12 int b = B().n; // expected-error {{call to deleted}}
15 B b; // expected-note {{deleted default constructor}}
17 int c = C().b.n; // expected-error {{call to implicitly-deleted default}}
21 B b; // expected-note {{'b' has a deleted default constructor}}
23 int d = D().b.n; // expected-error {{call to implicitly-deleted default}}
40 int g = G().f.n; // expected-error {{call to implicitly-deleted default}}
52 int i = I().h.n; // expected-error {{call to implicitly-deleted default}}
66 int k1 = K().j.n; // expected-error {{call to implicitly-deleted default}}
67 int k2 = K().j.f(); // expected-error {{call to implicitly-deleted default}}
value-initialization.cpp 4 const int i; // expected-note{{const member 'i' will never be initialized}} expected-note {{implicitly deleted}}
9 (void)A(); // expected-error {{call to implicitly-deleted default constructor}}
  /external/chromium_org/webkit/
temp-polling-test-file.txt 1 This file exists only to test the svnpoller. It should be deleted afterward.
  /external/clang/test/CXX/class.derived/class.abstract/
p16.cpp 9 virtual void a() = delete; // expected-error{{deleted function 'a' cannot override a non-deleted function}}
10 virtual void b(); // expected-error{{non-deleted function 'b' cannot override a deleted function}}
34 struct E : D {}; // expected-error {{deleted function '~E' cannot override a non-deleted function}} \
35 // expected-error {{deleted function 'operator=' cannot override a non-deleted function}}
37 // No move ctor here, because it would be deleted.
38 struct G : D {}; // expected-error {{deleted function '~G' cannot override a non-deleted function}
    [all...]
  /external/clang/test/CXX/special/class.copy/
p11.0x.copy.cpp 7 // A defaulted copy constructor for a class X is defined as deleted if X has:
11 NonTrivial NT; // expected-note{{copy constructor of 'DeletedNTVariant' is implicitly deleted because variant field 'NT' has a non-trivial copy constructor}}
15 DeletedNTVariant DVb(DVa); // expected-error{{call to implicitly-deleted copy constructor}}
19 NonTrivial NT; // expected-note{{copy constructor of 'DeletedNTVariant2' is implicitly deleted because variant field 'NT' has a non-trivial copy constructor}}
24 DeletedNTVariant2 DV2b(DV2a); // expected-error{{call to implicitly-deleted copy constructor}}
28 // that is deleted or inaccessible
38 NoAccess NA; // expected-note{{copy constructor of 'HasNoAccess' is implicitly deleted because field 'NA' has an inaccessible copy constructor}}
41 HasNoAccess HNAb(HNAa); // expected-error{{call to implicitly-deleted copy constructor}}
60 Ambiguity A; // expected-note 2{{copy constructor of 'IsAmbiguous' is implicitly deleted because field 'A' has multiple copy constructors}}
64 IsAmbiguous IAb(IAa); // expected-error{{call to implicitly-deleted copy constructor}
    [all...]
  /external/mockito/src/org/mockito/internal/progress/
IOngoingStubbing.java 9 * Marking interface to be removed when DeprecatedOngoingStubbing gets deleted
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
numsub.sed 5 # The second line should be deleted. ssed 3.55-3.58 do not.
  /external/clang/test/CXX/special/class.ctor/
p5-0x.cpp 5 struct DeletedDefCtor { DeletedDefCtor() = delete; DeletedDefCtor(int); }; // expected-note {{explicitly marked deleted here}}
7 struct DeletedDtor { ~DeletedDtor() = delete; }; // expected-note 4{{explicitly marked deleted here}}
20 // A defaulted default constructor for a class X is defined as deleted if:
24 union Deleted1a { UserProvidedDefCtor u; }; // expected-note {{default constructor of 'Deleted1a' is implicitly deleted because variant field 'u' has a non-trivial default constructor}}
25 Deleted1a d1a; // expected-error {{implicitly-deleted default constructor}}
34 Deleted2a() = default; // expected-note 4{{implicitly deleted here}}
37 Deleted2a d2a; // expected-error {{implicitly-deleted default constructor}}
39 int &&b; // expected-note {{default constructor of 'Deleted2b' is implicitly deleted because field 'b' of reference type 'int &&' would not be initialized}}
41 Deleted2b d2b; // expected-error {{deleted default constructor}}
55 Deleted3a d3a; // expected-error {{implicitly-deleted default constructor}
    [all...]
  /external/clang/test/CXX/special/class.inhctor/
p4.cpp 44 // It is deleted if the corresponding constructor [...] is deleted.
46 G(int) = delete; // expected-note {{function has been explicitly marked deleted here}}
47 template<typename T> G(T*) = delete; // expected-note {{function has been explicitly marked deleted here}}
50 using G::G; // expected-note 2{{deleted constructor was inherited here}}
52 H h1(5); // expected-error {{call to deleted constructor of 'H'}}
53 H h2("foo"); // expected-error {{call to deleted constructor of 'H'}}
56 // Core defect: It is also deleted if multiple base constructors generate the
70 B b1(0, 1); // expected-error {{call to deleted constructor of 'DRnnnn::B'}}
  /external/chromium_org/third_party/skia/src/core/
SkTDynamicHash.h 43 if (Deleted() != candidate && Equal(*candidate, key)) {
80 if (Empty() == candidate || Deleted() == candidate || Equal(*candidate, key)) {
90 // We have two special values to indicate an empty or deleted entry.
92 static T* Deleted() { return reinterpret_cast<T*>(1); } // Also an invalid pointer.
115 if (Empty() != fArray[i] && Deleted() != fArray[i]) {
122 int deleted = 0; local
124 if (Deleted() == fArray[i]) {
125 deleted++;
128 SKTDYNAMICHASH_CHECK(deleted == fDeleted);
132 if (Empty() == fArray[i] || Deleted() == fArray[i])
    [all...]
  /external/skia/src/core/
SkTDynamicHash.h 43 if (Deleted() != candidate && Equal(*candidate, key)) {
80 if (Empty() == candidate || Deleted() == candidate || Equal(*candidate, key)) {
90 // We have two special values to indicate an empty or deleted entry.
92 static T* Deleted() { return reinterpret_cast<T*>(1); } // Also an invalid pointer.
115 if (Empty() != fArray[i] && Deleted() != fArray[i]) {
122 int deleted = 0; local
124 if (Deleted() == fArray[i]) {
125 deleted++;
128 SKTDYNAMICHASH_CHECK(deleted == fDeleted);
132 if (Empty() == fArray[i] || Deleted() == fArray[i])
    [all...]
  /external/chromium/base/
message_loop_proxy_impl_unittest.cc 52 explicit DummyTask(bool* deleted) : deleted_(deleted) { }
112 bool deleted = false; local
114 FROM_HERE, new DummyTask(&deleted));
116 EXPECT_TRUE(deleted);
127 bool deleted = false; local
128 bool ret = message_loop_proxy->PostTask(FROM_HERE, new DummyTask(&deleted));
130 EXPECT_TRUE(deleted);
  /external/chromium_org/content/test/data/npapi/
execute_script_delete_in_npn_evaluate.html 9 plugin_div.innerHTML = "Object Deleted";
23 Tests the case where a plugin instance is deleted in the context
execute_script_delete_in_paint.html 9 plugin_div.innerHTML = "Object Deleted";
23 Tests the case where a plugin instance is deleted in the context
  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrProgramObj.cpp 19 // shaders are automatically detached from a deleted program. They will only be
20 // deleted if they were marked for deletion by a prior call to glDeleteShader
  /external/skia/src/gpu/gl/debug/
GrProgramObj.cpp 19 // shaders are automatically detached from a deleted program. They will only be
20 // deleted if they were marked for deletion by a prior call to glDeleteShader
  /external/chromium_org/third_party/libjingle/source/talk/base/
messagequeue_unittest.cc 59 DeletedLockChecker(MessageQueueTest* test, bool* was_locked, bool* deleted)
60 : test(test), was_locked(was_locked), deleted(deleted) { }
62 *deleted = true;
67 bool* deleted; member in struct:DeletedLockChecker
101 bool deleted = false; local
102 DeletedLockChecker* d = new DeletedLockChecker(this, &was_locked, &deleted);
106 EXPECT_TRUE(deleted);
112 explicit DeletedMessageHandler(bool* deleted) : deleted_(deleted) { }
122 bool deleted = false; local
152 bool deleted = false; local
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.delete/
p4.cpp 8 template<> void func2<int>() = delete; // expected-error {{deleted definition must be first declaration}}
  /external/clang/test/CXX/special/class.temporary/
p1.cpp 9 A(const A&) = delete; // expected-note {{function has been explicitly marked deleted here}}
16 foo(a); // expected-error {{call to deleted constructor of 'test0::A'}}
41 A(const A&) = delete; // expected-note {{marked deleted here}}
55 meta(a); // expected-error {{call to deleted constructor}}
  /external/clang/test/PCH/
cxx0x-default-delete.cpp 33 f.bar(); // expected-error{{deleted function}} expected-note@12{{deleted here}}
36 baz bz; // expected-error{{deleted function}} expected-note@16{{deleted here}}

Completed in 1891 milliseconds

1 2 3 4 5 6 7 8 91011>>