代码搜索:same
找到约 10,000 项符合「same」的源代码
代码结果 10,000
www.eeworm.com/read/470917/1442925
h _g_config.h
/* This file is needed by libio to define various configuration parameters.
These are always the same in the GNU C library. */
#ifndef _G_config_h
#define _G_config_h 1
/* Define types for libio
www.eeworm.com/read/470720/1445564
c lookup23.c
// Test for proper handling of type lookup if base class has field with the
// same name as the containing class.
// Build don't link:
struct a { int a; };
struct b : a {};
b x;
void foo ()
{
x.a
www.eeworm.com/read/470720/1446083
c instantiate5.c
// Build don't run:
// Additional sources: instantiate5.cc instantiate5-main.cc
// `global constructors' are given the same name, based on foo(), on
// both translation units, which is wrong, becaus
www.eeworm.com/read/470720/1447105
c nest19.c
// Build don't link:
// GROUPS passed nested-classes
// This is the first line of file ||t3.C||.
// This code demonstrates a variation of the same problem with nested
// types. In C++, nested typed
www.eeworm.com/read/470720/1447211
c p12306a.c
// prms-id: 12306
// a net report of the same problem as 12306
class a {
public:
int i;
};
class g : virtual public a {
};
class b : virtual public a {
int j;
};
class c : public g, public
www.eeworm.com/read/470720/1447777
c access16.c
// Bug: g++ uses the same binfo for the a subobject of c and the a subobject
// of b, so basetype_paths get bashed improperly.
// Build don't link:
class a {
protected:
virtual void foo() { } // get
www.eeworm.com/read/470693/1457510
c lookup23.c
// Test for proper handling of type lookup if base class has field with the
// same name as the containing class.
// Build don't link:
struct a { int a; };
struct b : a {};
b x;
void foo ()
{
x.a
www.eeworm.com/read/470693/1458029
c instantiate5.c
// Build don't run:
// Additional sources: instantiate5.cc instantiate5-main.cc
// `global constructors' are given the same name, based on foo(), on
// both translation units, which is wrong, becaus
www.eeworm.com/read/470693/1459051
c nest19.c
// Build don't link:
// GROUPS passed nested-classes
// This is the first line of file ||t3.C||.
// This code demonstrates a variation of the same problem with nested
// types. In C++, nested typed
www.eeworm.com/read/470693/1459157
c p12306a.c
// prms-id: 12306
// a net report of the same problem as 12306
class a {
public:
int i;
};
class g : virtual public a {
};
class b : virtual public a {
int j;
};
class c : public g, public