Searched refs:this (Results 376 - 400 of 2292) sorted by relevance

<<11121314151617181920>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp789a.C16 printf("this %d = %x\n", x, (void *)this);
19 printf("this %d = %x\n", x, (void *)this);
H A Dpmf7.C8 B& dummy(f_ptr cb) { return *this; }
22 return *this;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A Dcrash28.C14 return *reinterpret_cast<const Y<X> *>(this);
34 if (!b) throw bar (static_cast<::N::X*>(this)); // { dg-error "lambda expressions|expected" } parse error
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.pt/
H A Dttp21.C21 return this->f();
27 int h() { return this->g(); }
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/ieee/
H A D20000320-1.x3 # not aware of any system that has this.
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dpr27331.c6 int this, other; member in struct:funny_match
46 = recog_operand[funny_match[funny_match_index].this];
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libgomp/testsuite/libgomp.c++/
H A Dctor-6.C20 assert (this != expected);
23 return *this;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/aix/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
57 while (__low < __high && !this->is(__m, *__low))
66 while (__low < __high && this->is(__m, *__low) != 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/netbsd/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
57 while (__low < __high && !this->is(__m, *__low))
66 while (__low < __high && this->is(__m, *__low) != 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/irix/irix5.2/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
57 while (__low < __high && ! this->is(__m, *__low))
66 while (__low < __high && this->is(__m, *__low))
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/irix/irix6.5/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
57 while (__low < __high && ! this->is(__m, *__low))
66 while (__low < __high && this->is(__m, *__low))
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
58 while (__low < __high && !this->is(__m, *__low))
67 while (__low < __high && this->is(__m, *__low) != 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/newlib/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
57 while (__low < __high && !this->is(__m, *__low))
66 while (__low < __high && this->is(__m, *__low) != 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/config/os/qnx/qnx6.1/
H A Dctype_inline.h21 // a copy of the GCC Runtime Library Exception along with this program;
57 while (__low < __high && !this->is(__m, *__low))
66 while (__low < __high && this->is(__m, *__low) != 0)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/abi/
H A Dcovariant5.C25 B *B::Two() {return this;}
26 B &B::Three() {return *this;}
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/inherit/
H A Dthunk1.C22 C::C () { cp = this; }
25 if (this != cp)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/init/
H A Dctor2.C14 A::A () {a = this;}
26 C::C () : B(this) {}
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/opt/
H A Dtemp1.C9 // If there is more than two calls (one for coping "*this" to "t", and
29 T operator+(T const &v) const { T t = *this; t += v; return t; }
33 return *this;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/parse/
H A Dlookup5.C11 { return B<U>((U)(this->a), (U)(this->b)); }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.law/
H A Dtemps5.C16 C& operator = (const C& c) { val = c.val; return *this; }
18 C& inc(int i) { val += i; return *this; }
H A Dvirtual3.C27 *this << ends;
38 return *this;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp6610a.C10 B::B() { if (g(this)) fail = 0; }
11 int B::f(const B* t) { return t == this; }
H A Dp6610b.C9 int B::f(const B* t) { return t == this; }
12 C::C() { if (g(this)) fail = 0; }
H A Dp789a.C16 printf("this %d = %x\n", x, (void *)this);
19 printf("this %d = %x\n", x, (void *)this);
H A Dpmf7.C8 B& dummy(f_ptr cb) { return *this; };
22 return *this;

Completed in 249 milliseconds

<<11121314151617181920>>