代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/233448/4683205
c 20050122-2.c
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
/* Related to PR 19484. */
extern void foo (void) __attribute__((noreturn));
int n;
void
g (void)
{
__label__
www.eeworm.com/read/233448/4683210
c 951116-1.c
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
f ()
{
long long i;
int j;
long long k = i = j;
int inner () {return j + i;}
return k;
}
www.eeworm.com/read/233448/4684105
c redecl-10.c
/* Test for multiple declarations and composite types. Check we don't
ICE with nested initializers. */
/* Origin: Joseph Myers */
/* { dg-do compile } */
/* { dg-options "
www.eeworm.com/read/233448/4684337
c pr18963-1.c
/* { dg-do run } */
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fnested-functions" } */
static int barf ();
int foo ()
{
auto int barf ();
int j = 4;
int barf () {
ret
www.eeworm.com/read/233448/4685332
c debug-5.c
/* This testcase failed, because scope containing baz was deleted
(spanned 0 basic blocks) and DWARF-2 couldn't find baz origin. */
/* { dg-do compile } */
/* APPLE LOCAL testsuite nested function
www.eeworm.com/read/233448/4685349
c debug-3.c
/* This testcase failed, because scope containing baz was deleted
(spanned 0 basic blocks) and DWARF-2 couldn't find baz origin. */
/* { dg-do compile } */
/* APPLE LOCAL testsuite nested function
www.eeworm.com/read/233448/4685582
c cleanup-7.c
/* { dg-do run } */
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-O2 -g -fnested-functions" } */
/* Verify that the search for function happens in the proper scope. */
extern void e
www.eeworm.com/read/231546/4714820
pm parsewords.pm
package Text::ParseWords;
use vars qw($VERSION @ISA @EXPORT $PERL_SINGLE_QUOTE);
$VERSION = "3.2";
require 5.000;
use Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(shellwords quotewords nested_quotew
www.eeworm.com/read/216502/4891526
c r0.c
#include "r.h"
int swlevel = -1;
int swexit[5];
int nextcase[5];
swcode() {
transfer = 0;
putcom("switch");
swlevel++;
if (swlevel >= 5)
error("Switches nested > 5");
swexit[swlevel] = yyval
www.eeworm.com/read/190666/5172752
c type1.c
// Test for helpful error messages on invalid nested-name-specifiers.
struct A {
template struct B { static int c; };
};
int A::B::c; // { dg-error "parameters" }
int A::C::d; // { d