代码搜索:empty
找到约 10,000 项符合「empty」的源代码
代码结果 10,000
www.eeworm.com/read/472233/1416707
js function-empty.js
function f()
{
}
for (var i = 0; i < 4000000; ++i)
f();
www.eeworm.com/read/470720/1444537
h empty6.h
struct A {};
struct B {
A a;
virtual void f () {}
int i;
};
www.eeworm.com/read/470720/1444607
c empty1.c
// { dg-do run }
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 3 Sept 2001
// Bug 4203. We were bit copying empty bases including th
www.eeworm.com/read/470720/1444705
c empty7.c
// { dg-do run { target i?86-*-* } }
// { dg-options "-fabi-version=0" }
struct S1 {};
struct S2 { virtual void f () {} S1 s1[4]; };
struct S3 : virtual public S2 {};
struct S4 : virtual public S2 {
www.eeworm.com/read/470720/1444706
c empty6.c
// { dg-options "-Wabi" }
struct A {};
struct B {
A a; // { dg-warning "empty" }
virtual void f () {}
};
www.eeworm.com/read/470720/1444719
c empty8.c
// { dg-do run }
// { dg-options "-fabi-version=0" }
struct E1 {};
struct E2 : public E1 {};
struct S1 { int i; };
struct S2 : public S1, E2 {};
S2 s2;
int main () {
if ((char *)(E2*) &s2 != (cha
www.eeworm.com/read/470720/1444732
c empty4.c
// { dg-do run }
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 31 Jul 2001
// Bug 3820. We were bit copying empty bases including th
www.eeworm.com/read/470720/1444736
c empty9.c
// { dg-do run { target i?86-*-* } }
// { dg-options "-w -fabi-version=0" }
struct E1 {};
struct E2 : public E1 {
virtual void f ();
};
struct E3 : virtual public E1 {
};
struct S : public E2, virt