代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/455464/1613863
java hibernatetree.java
package com.ponyjava.common.hibernate3;
/**
* Hibernate实现父子结构tree,使用The Nested Set Model
*
* @author liufang
*
*/
public interface HibernateTree {
public static final String LFT = "l
www.eeworm.com/read/247171/4487400
vb nestedtype2.vb
Partial Class NestedType2
Class Nested
Public Value As Integer
Sub New()
Value = 1
End Sub
End Class
End Class
Partial Class NestedType2
Function Main
www.eeworm.com/read/240162/4579019
c using8.c
// { dg-do compile }
// Origin: Bill Clarke
// PR c++/11097: using declartion for a converter operator to a nested class
// in a base type
template
struct A
{
www.eeworm.com/read/240162/4581371
c nttp1.c
// { dg-do run }
// Test for nested template template parameter feature
template struct C
{
int f();
};
template
www.eeworm.com/read/240162/4582944
c typedef2.c
// { dg-do run }
// PRMS Id: 5367
// Bug: the nested name of C::func gets hosed.
struct C {
typedef int func(int *, int *);
};
int
main()
{
C::func *handler;
}
www.eeworm.com/read/240162/4588432
c nestfunc-6.c
/* Test that the GP gets properly restored, either by the nonlocal
receiver or the nested function. */
#ifndef NO_TRAMPOLINES
typedef __SIZE_TYPE__ size_t;
extern void abort (void);
extern void
www.eeworm.com/read/240162/4588592
c 20020810-1.c
/* PR target/7559
This testcase was miscompiled on x86-64, because classify_argument
wrongly computed the offset of nested structure fields. */
extern void abort (void);
struct A
{
long x;
www.eeworm.com/read/240162/4589541
c 20021204-1.c
/* PR c/7622 */
/* Verify that GCC can handle the mix of
extern inline and nested functions. */
extern inline int t()
{
int q() { return 0; }
return q();
}
int foo()
{
return t();
}
www.eeworm.com/read/240162/4590084
c if-cexp.c
/* { dg-do preprocess } */
/* Test the ? : opearator, for precedence and both true and false. */
#if 1 ? 1 ? 2 : 0 : 0
#error OK /* { dg-error "OK" "nested ? :" } */
#endif
#if ((0) ? (1) ? (2)
www.eeworm.com/read/233448/4671124
c using8.c
// { dg-do compile }
// Origin: Bill Clarke
// PR c++/11097: using declartion for a converter operator to a nested class
// in a base type
template
struct A
{