Searched defs:Deleted (Results 1 - 8 of 8) sorted by relevance

/external/clang/test/SemaCXX/
H A Dcxx98-compat-flags.cpp27 struct Deleted { struct in namespace:CopyCtorIssues
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}}
H A Dcxx98-compat-pedantic.cpp70 struct Deleted { struct in namespace:CopyCtorIssues
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/
H A Dp11.0x.copy.cpp67 struct Deleted { struct
68 IsAmbiguous IA; // expected-note{{copy constructor of 'Deleted' is implicitly deleted because field 'IA' has a deleted copy constructor}}
70 Deleted Da;
71 Deleted Db(Da); // expected-error{{call to implicitly-deleted copy constructor}}
H A Dp11.0x.move.cpp59 struct Deleted { struct
64 Deleted(Deleted&&);
66 Deleted::Deleted(Deleted&&) = default; // expected-error{{would delete}}
/external/skia/src/core/
H A DSkTDynamicHash.h50 } 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) {
161 static T* Deleted() { return reinterpret_cast<T*>(1); } // Also an invalid pointer. function in class:SkTDynamicHash
176 if (Deleted() == fArray[i]) {
191 if (Empty() == fArray[i] || Deleted() == fArray[i]) {
195 if (Empty() == fArray[j] || Deleted() == fArray[j]) {
213 if (Empty() == candidate || Deleted() == candidate) {
214 if (Deleted()
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp570 Value *Deleted = Phi.removeIncomingValue(From, false); local
571 Map[&Phi].push_back(std::make_pair(From, Deleted));
/external/v8/tools/
H A Dgrokdump.py1251 def Deleted(self, value): member in class:DescriptorArray
/external/valgrind/coregrind/
H A Dm_transtab.c174 deletion, hence the Deleted state. */
175 enum { InUse, Deleted, Empty } status; enumerator in enum:__anon16158::__anon16161
229 translation to 'Deleted'.
263 this translation E as Deleted, but the translation itself
267 jump is to be executed. The execution of the Deleted translation
353 /* A list of Empty/Deleted entries, chained by tte->next_empty_tte */
694 if (sec->tt[tteNo].status == Deleted) {
699 inserted for an entry which was changed to Deleted then
823 // or marked Deleted due to translation invalidation.
1211 if (tte->status == Empty || tte->status == Deleted) {
[all...]

Completed in 1535 milliseconds