代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/190666/5175599
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/190666/5175805
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/190666/5179683
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/183001/5260302
out rowtypes.out
--
-- ROWTYPES
--
-- Make both a standalone composite type and a table rowtype
create type complex as (r float8, i float8);
create temp table fullname (first text, last text);
-- Nested composite
crea
www.eeworm.com/read/162614/5516052
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 GCC.
GCC is free software; you can
www.eeworm.com/read/162614/5519112
c ttp9.c
// { dg-do compile }
// Origin: David Abrahams
// Wolfgang Bangerth
// PR c++/12170: Deducing template template parameter from nested
// cl
www.eeworm.com/read/162614/5522457
c scoping13.c
// { dg-do assemble }
struct A { typedef int foo; };
struct B: public A {
typedef int bar;
struct C {
void g (B::bar); // { dg-bogus "" } nested type failure
void f (B::foo);
};
};
www.eeworm.com/read/162614/5523239
f90 forall_4.f90
! Program to test nested forall
program forall2
implicit none
integer a(4,4,2)
integer i, j, k, n
a(:,:,1) = reshape((/ 1, 2, 3, 4,&
5, 6, 7, 8,&
www.eeworm.com/read/347796/3162912
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/340665/3273710
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