代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/470693/1458955
c operators6.c
// Build don't link:
// GROUPS passed operators
class a {
public:
a* operator->() { return this; }
void p();
};
void a::p() {
operator->();
}
www.eeworm.com/read/470693/1458962
c operators8.c
// Build don't link:
// GROUPS passed operators
struct A {
char *p;
operator char *();
};
char foo(A a)
{
return a[0];
}
www.eeworm.com/read/470693/1458997
c operators4.c
// GROUPS passed operators
// Check that the & operator, when applied to a global function
// or member function returns a proper value as long as the context
// in which the result of & is used requi
www.eeworm.com/read/470693/1459047
c operators7.c
// Build don't link:
// GROUPS passed operators
class A {
char *p;
public:
operator const char *() const { return p; }
};
int foo(const A &a)
{
return (a != 0);
}
www.eeworm.com/read/470693/1459090
c operators5.c
// GROUPS passed operators
// Check that operators may be (directly) recursive.
extern "C" int printf (const char *, ...);
struct base {
int i;
};
base base_variable;
base operator+ (const base&
www.eeworm.com/read/470693/1467495
cc map_operators.cc
// 2000-09-07 bgarcia@laurelnetworks.com
// Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you ca
www.eeworm.com/read/470693/1467502
cc deque_operators.cc
// 2002-05-18 Paolo Carlini
// Copyright (C) 2002 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can
www.eeworm.com/read/470693/1467510
cc list_operators.cc
// Copyright (C) 2001 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms
www.eeworm.com/read/470693/1467524
cc valarray_operators.cc
// { dg-do run }
// 2003-02-03 Volker Reichelt
// Copyright (C) 2003 Free Software Foundation
//
// This file is part of the GNU ISO C++ Library. This library is fre
www.eeworm.com/read/240162/4581775
c operators3.c
// { dg-do assemble }
// GROUPS passed operators
// opr-pl file
// Message-Id:
// From: grahamd@zeus.research.otca.oz.au (Graham Dumpleton)
// Subject: F