代码搜索:operators

找到约 8,993 项符合「operators」的源代码

代码结果 8,993
www.eeworm.com/read/233448/4674811

c operators34.c

// { dg-do assemble } // GROUPS passed operators class A { public: A() { } }; static class A *A_new_() { return new class A; }
www.eeworm.com/read/233448/4674813

c operators30.c

// { dg-do run } // GROUPS passed operators // opr-mm file // Date: Thu, 2 Jun 94 10:00:29 +0200 // From: chatty@cenatls.cena.dgac.fr (Stephane Chatty) // Message-Id:
www.eeworm.com/read/233448/4674814

c operators18.c

// { dg-do assemble } // GROUPS passed operators // opr-ampr file // From: mecklen@oops.cs.utah.edu (Robert Mecklenburg) // Date: Thu, 8 Oct 92 16:33:08 -0600 // Subject: Type conversion and ove
www.eeworm.com/read/233448/4674835

c operators14.c

// { dg-do assemble } // GROUPS passed operators void foo (int * a, int * b, int * c) {} int main() { int a,b,c; foo (&a, &b, &c); (a = b) = c; }
www.eeworm.com/read/233448/4674837

c operators22.c

// { dg-do assemble } // GROUPS passed operators template class t { public: t() {} }; class m { t c; public: m() : c() {} }; m *p() {return new m;}
www.eeworm.com/read/233448/4674841

c operators11.c

// { dg-do assemble } // GROUPS passed operators // opr-eq file // Message-Id: // From: rowlands@hc.ti.com (Jon Rowlands) // Subject: g++ 2.4.5: assignment operator in base cl
www.eeworm.com/read/233448/4674852

c operators3.c

// { dg-do assemble } // GROUPS passed operators class X { }; void operator->(X& a, X& b) {} // MUST be a member function// { dg-error "" } .*
www.eeworm.com/read/233448/4674926

c operators1.c

// { dg-do assemble } // GROUPS passed operators struct A { int x; }; int operator()(A x,float y) { // MUST be a member function// { dg-error "" } .* return 1; } int main() { A x; x(1.0); // {
www.eeworm.com/read/233448/4674964

c operators2.c

// { dg-do assemble } // GROUPS passed operators class X { }; void operator[](X& a, X& b) {} // MUST be a member function// { dg-error "" } .*
www.eeworm.com/read/233448/4675012

c operators6.c

// { dg-do assemble } // GROUPS passed operators class a { public: a* operator->() { return this; } void p(); }; void a::p() { operator->(); }