HomeSort by relevance Sort by last modified time
    Searched full:deleted (Results 1 - 25 of 3061) 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}}
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}}
  /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}}
  /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.inhctor/
p1.cpp 10 using A::A; // expected-warning 3{{inheriting constructor does not inherit ellipsis}} expected-note 4{{candidate}} expected-note 2{{deleted}}
14 // expected-error@-1 {{call to implicitly-deleted default constructor}}
15 // expected-note@9 {{default constructor of 'B' is implicitly deleted because base class 'A' has multiple default constructors}}
18 // FIXME: explain why the inheriting constructor was deleted
19 // expected-error@-2 {{call to implicitly-deleted function of 'B'}}
22 // expected-error@-1 {{call to implicitly-deleted function of 'B'}}
p4.cpp 44 // It is deleted if the corresponding constructor [...] is deleted.
49 using G::G; // expected-note {{marked deleted here}}
51 H h(5); // expected-error {{call to implicitly-deleted function of 'H'}}
54 // Core defect: It is also deleted if multiple base constructors generate the
64 // FIXME: produce notes indicating why it was deleted
69 B b1(0, 1); // expected-error {{call to implicitly-deleted}}
  /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/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/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/webkit/LayoutTests/http/tests/cookies/resources/
cookie-utility.php 6 setcookie($name, "deleted", time() - 86400, '/');
11 echo "Deleted all cookies";
  /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}}
  /external/webkit/LayoutTests/storage/domstorage/localstorage/storagetracker/
storage-tracker-1-prepare-expected.txt 1 Prepare for StorageTracker tests by ensuring that every origin with local storage is deleted.
  /ndk/tests/device/test-stlport_shared-exception/jni/
flow1.cpp 12 int i = 0; // this gets deleted after flow analysis
  /ndk/tests/device/test-stlport_static-exception/jni/
flow1.cpp 12 int i = 0; // this gets deleted after flow analysis
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ItemDeleteEvent.java 20 * Represents an event in which items have been deleted from the node.
30 * items (by id) have been deleted, and that the event matches the listed
35 * @param deletedItemIds The item ids of the items that were deleted.
48 * Get the item id's of the items that have been deleted.
60 return getClass().getName() + " [subscriptions: " + getSubscriptions() + "], [Deleted Items: " + itemIds + ']';

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>