HomeSort by relevance Sort by last modified time
    Searched full:deleted (Results 1 - 25 of 2854) 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.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 union 'DeletedNTVariant' is implicitly deleted because 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 union 'DeletedNTVariant2' is implicitly deleted because 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...]
p11.0x.move.cpp 7 // A defaulted move constructor for a class X is defined as deleted if X has:
26 // that is deleted or inaccessible
58 struct Deleted {
60 Deleted(Deleted&&);
62 Deleted::Deleted(Deleted&&) = default; // expected-error{{would delete}}
65 // resolution results in an ambiguity or a function that is deleted or
83 // a destructor that is deleted or inaccessibl
    [all...]
  /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 union 'A1' is implicitly deleted because 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 6 {{built-in candidate}}
12 if(a1==a1) {} // expected-error {{overload resolution selected deleted operator}} expected-note 81 {{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/PCH/
cxx0x-default-delete.cpp 12 void bar() = delete; // expected-note{{deleted here}}
16 ~baz() = delete; // expected-note{{deleted here}}
28 f.bar(); // expected-error{{deleted function}}
31 baz bz; // expected-error{{deleted function}}
  /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 union 'Deleted1a' is implicitly deleted because 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/webkit/LayoutTests/http/tests/cookies/resources/
cookie-utility.php 6 setcookie($name, "deleted", time() - 86400, '/');
11 echo "Deleted all cookies";
  /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/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.
  /external/chromium/chrome/browser/sync/engine/
verify_updates_command.cc 56 if (update.deleted())
83 const bool deleted = entry.has_deleted() && entry.deleted(); local
93 if (name.empty() && !deleted) {
94 LOG(ERROR) << "Zero length name in non-deleted update";
100 result.value = SyncerUtil::VerifyNewEntry(entry, &same_id, deleted);
102 syncable::ModelType placement_type = !deleted ? entry.GetModelType()
111 if (deleted)
119 deleted, is_directory, model_type);
  /external/proguard/src/proguard/classfile/editor/
VariableEditor.java 40 private boolean[] deleted = new boolean[ClassConstants.TYPICAL_VARIABLES_SIZE]; field in class:VariableEditor
54 if (deleted.length < maxLocals)
56 deleted = new boolean[maxLocals];
62 deleted[index] = false;
72 * @param variableIndex the index of the variable to be deleted.
76 deleted[variableIndex] = true;
83 * Returns whether the given variable at the given offset has deleted.
87 return deleted[instructionOffset];
116 variableMap[oldVariableIndex] = deleted[oldVariableIndex] ?
  /external/chromium/chrome/browser/ui/cocoa/content_settings/
collected_cookies_mac_unittest.mm 22 // Create a test tab. SiteInstance will be deleted when tabContents is
23 // deleted.
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p19.cpp 13 decltype(lambda1) lambda2; // expected-error{{call to implicitly-deleted default constructor of 'decltype(lambda1)' (aka '<lambda}}
16 lambda1 = lambda1; // expected-error{{overload resolution selected implicitly-deleted copy assignment operator}}
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
callback-to-deleted-context.js 4 iframe.src = 'resources/callback-to-deleted-context-inner2.html';
16 iframe.src = 'resources/callback-to-deleted-context-inner1.html';
  /external/webkit/LayoutTests/http/tests/appcache/resources/
fail-on-update.php 29 setState("Deleted", $tmpFile);
35 } else if ($state == "Deleted") {
origins-with-appcache-iframe.html 6 applicationCache.onnoupdate = function() { parent.postMessage("FAIL - no update iframe, all caches should have been deleted before this test", "*"); };
  /external/e2fsprogs/tests/f_misstable/
expect.1 11 Entry 'etc' in / (2) has deleted/unused inode 1505. Clear? yes
13 Entry 'cache' in / (2) has deleted/unused inode 1514. Clear? yes
15 Entry 'a' in / (2) has deleted/unused inode 1515. Clear? yes
17 Entry 'b' in / (2) has deleted/unused inode 1516. Clear? yes

Completed in 870 milliseconds

1 2 3 4 5 6 7 8 91011>>