代码搜索:same
找到约 10,000 项符合「same」的源代码
代码结果 10,000
www.eeworm.com/read/162614/5519152
c non-dependent3.c
//PR c++/11071
// Used to ICE
// Origin: bangerth@dealii.org and rwgk@yahoo.com
template struct X {
template
static int* execute(T* x) { return x; }
};
template
www.eeworm.com/read/162614/5519426
c non-dependent2.c
//PR c++/11070
// Used to ICE
// Origin: bangerth@dealii.org and rwgk@yahoo.com
template struct X {
template
static int* execute(int* x) { return x; }
};
template
www.eeworm.com/read/162614/5522117
c 900330_02.c
// { dg-do assemble }
// g++ 1.37.1 bug 900330_02
// The C++ Reference Manual says in section 13.1:
// "Two function declarations of the same name refer to the same function
// if they are in the s
www.eeworm.com/read/162614/5526493
f90 gnu_logical_2.f90
! Testcases for the AND, OR and XOR functions (GNU intrinsics).
! { dg-do compile }
integer i
logical l
real r
complex c
print *, and(i,i)
print *, and(l,l)
print *, and(i,r) ! { dg-err
www.eeworm.com/read/162614/5527302
c 20030828-2.c
struct rtx_def
{
int code;
};
main()
{
int tmp[2];
struct rtx_def *r, s;
int *p, *q;
/* The alias analyzer was creating the same memory tag for r, p and q
because 'struct rtx_def *' i
www.eeworm.com/read/161438/5553148
cpp over_ptr.cpp
#include
class sample {
public:
int i;
sample *operator->(void) {return this;}
};
void main(void)
{
sample obj;
obj->i = 10; // Same as obj.i
cout
www.eeworm.com/read/159030/5588683
legal-4
class Program {
boolean a, b, c;
int g (int J, boolean K) {
boolean a, b, c; // same name and type, different scope
}
int main () {
boolean d, e, f;
}
int f () {
g();
www.eeworm.com/read/155586/5620577
c gpif.c
// This program configures the General Programmable Interface (GPIF) for FX2.
// Parts of this program are automatically generated using the GPIF Tool V2.40 [700].
// Please do n
www.eeworm.com/read/155586/5620584
lst gpif.lst
C51 COMPILER V7.07 GPIF 09/09/2004 19:22:27 PAGE 1
C51 COMPILER V7.07, COMPILATION OF MODULE GPIF
OBJECT MODULE PLACED IN GP
www.eeworm.com/read/174065/6783518
c ch21-13.c
#include
void main()
{
char a[ ]= "fprogram",b[ ]= "fortran";
char *p,*q;
p=a;
q=b;
while(*p&&*q)
{
if(*p==*q)
printf("The two letters are the same: