代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/233448/4683079
c 20050119-1.c
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
void write_char(char);
int len(char*);
void f(char *a)
{
int col = 0;
int i;
void wchar(char c)
{
if
www.eeworm.com/read/233448/4684647
c pr18596-2.c
/* { dg-do compile } */
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-funit-at-a-time -fnested-functions" } */
int f(int i)
{
static int g(); /* { dg-error "invalid storage class"
www.eeworm.com/read/233448/4685333
c debug-6.c
/* Verify that bb-reorder re-inserts nested scopes properly. */
/* { dg-do compile } */
/* { dg-options "-dA" } */
/* { dg-final { scan-assembler "xyzzy" } } */
extern void abort (void);
struct A {
www.eeworm.com/read/211182/4945881
txt 21-7.txt
/* 范例:21-7 嵌套例外处理(Nested Try) */
#include
int f()
{
throw runtime_error("RunTime_Error");
}
void main()
{
try
{
try
{
try
{
throw("测试嵌套例外
www.eeworm.com/read/190666/5172077
asm vms_tramp.asm
/* VMS trampoline for nested functions
Copyright (C) 2001 Free Software Foundation, Inc.
Contributed by Douglas B. Rupp (rupp@gnat.com).
This file is part of GNU CC.
GNU CC is free software; y
www.eeworm.com/read/190666/5174730
c nest11.c
// Build don't link:
// GROUPS passed nested-classes
class A {
int x;
struct B {
int x;
};
struct C;
friend struct C;
struct C {
int bug (A::B &y);
};
};
int
A::C::bug (A::B &
www.eeworm.com/read/190666/5174917
c nest17.c
// Build don't link:
// GROUPS passed nested-classes
class T {
public:
typedef int I;
class Y {int y;};
typedef Y Z;
};
T::I i;
T::Y y;
T::Z z;
www.eeworm.com/read/190666/5179659
c debug-6.c
/* Verify that bb-reorder re-inserts nested scopes properly. */
/* { dg-do compile } */
/* { dg-options "-dA" } */
/* { dg-final { scan-assembler "xyzzy" } } */
extern void abort (void);
struct A {