Searched refs:this (Results 1 - 25 of 2237) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/t/source_tests/
H A Dharness_badtap5 ok 1 - this is a test
6 not ok 2 - this is another test
H A Dharness_failure5 ok 1 - this is a test
6 not ok 2 - this is another test
7 # Failed test 'this is another test'
H A Dharness5 ok 1 - this is a test
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/t/subclass_tests/
H A Dperl_source5 ok 1 - this is a test
/openbsd-current/gnu/usr.bin/cvs/vms/
H A Dpipe.c101 struct PIPE *this; local
104 this = phead;
105 while (this)
107 if (this->self != this)
112 if (!this->iosb.status)
114 fflush (this->file);
115 if (this->mode == O_WRONLY)
116 sys$qio (0, this->chan, IO$_WRITEOF, &iosb,
118 fclose (this
142 struct PIPE *this = phead; local
212 struct PIPE *this = phead; local
234 struct PIPE *this = phead; local
284 struct PIPE *this; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dcrash40.C14 (this->*manip)(*this);
16 return *this;
H A Doperators6.C5 a* operator->() { return this; }
/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/lib/autodie/test/au/
H A Dexception.pm12 my ($this) = @_;
14 my $base_str = $this->SUPER::stringify;
16 return "$base_str\n" . $this->time_for_a_beer;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Daccess13.C12 this->A::i = 1; // gets bogus error - access control failure
13 this->A::f(); // gets bogus error - access control failure
H A Dthis.C2 // Bug: g++ fails to build up a const reference to `this'.
15 print (this);
H A Dtredecl2.C4 template<class T> struct Foo { Foo<T> * me() { return this; } };
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp3579.C9 Y () { printf("Y() this: %x\n", this); }
10 ~Y () { printf("~Y() this: %x\n", this); }
17 printf("X() this: %x\n", this);
19 *this = (X) y;
22 X (const Y & yy) { printf("X(const Y&) this: %x\n", this); ++num_x; }
24 printf("X.op=(X&) this
[all...]
H A Derr2.C4 this->*memptr(); // ERROR - wrong
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D970206-1.c10 f (int * const this, struct Rect arect) argument
12 g (*this, arect);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/
H A Dvbase4.C23 check (this, this);
27 check (this, this);
32 if (dynamic_cast <void *> (this) != whole)
34 else if (this != base)
47 check (this, this);
51 check (this, this);
[all...]
H A Dvbase1.C35 printf (" VBase::member %d\n", &this->VBase::member - (int *)this);
57 printf (" VBase::member %d\n", &this->VBase::member - (int *)this);
58 printf (" VDerived::member %d\n", &this->VDerived::member - (int *)this);
67 printf (" VBase::member %d\n", &this->VBase::member - (int *)this);
68 printf (" B::member %d\n", &this->B::member - (int *)this);
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dstatic-mem4.C5 static test& ds = *this; // FIX: static test* ds = this;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dptrmem3.C6 void f() { this->x(); } // ERROR - pointer-to-member
H A Deh4.C8 throw *this; // ERROR - cannot be used in throw-expression
H A Dtemporary1.C7 Foo() { printf("Foo() 0x%08lx\n", (__SIZE_TYPE__)this); ++c; }
8 Foo(Foo const &) { printf("Foo(Foo const &) 0x%08lx\n", (__SIZE_TYPE__)this); }
9 ~Foo() { printf("~Foo() 0x%08lx\n", (__SIZE_TYPE__)this); ++d; }
16 Bar(Foo const & = Foo()) { printf("Bar(Foo const &) 0x%08lx\n", (__SIZE_TYPE__)this); }
/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DSimplifyCFGOptions.h39 return *this;
43 return *this;
47 return *this;
51 return *this;
55 return *this;
59 return *this;
63 return *this;
67 return *this;
71 return *this;
76 return *this;
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DSmallVector.h128 /// Find the address of the first element. For this pointer math to be valid
133 reinterpret_cast<const char *>(this) +
144 /// Return true if this is a smallvector which has not had dynamic
146 bool isSmall() const { return this->BeginX == getFirstEl(); }
148 /// Put this vector in a state of being small.
150 this->BeginX = getFirstEl();
151 this->Size = this->Capacity = 0; // FIXME: Setting Capacity to 0 is suspect.
161 /// Return true if V is an internal reference to this vector.
163 return isReferenceToRange(V, this
[all...]
/openbsd-current/gnu/llvm/clang/lib/Basic/Targets/
H A DPNaCl.h29 this->LongAlign = 32;
30 this->LongWidth = 32;
31 this->PointerAlign = 32;
32 this->PointerWidth = 32;
33 this->IntMaxType = TargetInfo::SignedLongLong;
34 this->Int64Type = TargetInfo::SignedLongLong;
35 this->DoubleAlign = 64;
36 this->LongDoubleWidth = 64;
37 this->LongDoubleAlign = 64;
38 this
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/eh/
H A Dctor2_y.C8 p = this;
13 if (p != this) r = 1;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/init/
H A Dbyval1_y.C8 C::C() { p[i++] = this; }
9 C::~C() { if (p[--i] != this) r = 1; }

Completed in 138 milliseconds

1234567891011>>