代码搜索:Nested

找到约 7,462 项符合「Nested」的源代码

代码结果 7,462
www.eeworm.com/read/340665/3276104

c 900107_01.c

// g++ 1.36.1 bug 900107_01 // Unlike GCC and Cfront 2.0, the g++ 1.36.1 compiler gives struct, union, // and class declarations which are nested within blocks file scope. // Cfront 2.0 passes this
www.eeworm.com/read/340665/3276133

c template33.c

// Test nested enums in templates. // Build don't link: template class A { public: enum muni {X, Y}; muni e() { return X; }; muni f(); }; template typename A::muni A
www.eeworm.com/read/340665/3276206

c anon3.c

// Bug: g++ dies. // Build don't link: class cl { public: cl(); void set(void *, char *, int); private: union { float vf; struct ff { // ERROR - nested class in anonymous union vo
www.eeworm.com/read/340665/3276253

c 2371.c

# 1 "SetLS.cc" // GROUPS passed templates nested-classes // Special g++ Options: // // The SetLS template test // // Wendell Baker, Berkeley CAD Group, 1993 (wbaker@ic.Berkeley.EDU) // #pragma imple
www.eeworm.com/read/340665/3276459

c scoping13.c

// Build don't link: struct A { typedef int foo; }; struct B: public A { typedef int bar; struct C { void g (B::bar); // gets bogus error - nested type failure void f (B::foo); }; };
www.eeworm.com/read/340665/3280612

c attr-nest.c

/* { dg-do compile } */ #define ATTR_PRINTF __attribute__ ((format (printf, 1, 2))) #define ATTR_USED __attribute__ ((used)) void bar (int, ...); /* gcc would segfault on the nested attribute. */
www.eeworm.com/read/333502/3385581

phpt 067.phpt

--TEST-- function test: nested selects (cursors) --SKIPIF--
www.eeworm.com/read/333502/3385894

phpt 067.phpt

--TEST-- function test: nested selects (cursors) --SKIPIF--
www.eeworm.com/read/268397/4252640

java nestedmodel.java

package dragon.ml.seqmodel.model; import dragon.ml.seqmodel.data.DataSequence; import java.util.*; /** * Nested model graph * Copyright: Copyright (c) 2005 * Company: IS
www.eeworm.com/read/440906/1775342

c access8.c

// Build don't link: // Copyright (C) 2000 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 10 Feb 2000 // Test that access to static members from a nested class of th