代码搜索:Nested
找到约 7,462 项符合「Nested」的源代码
代码结果 7,462
www.eeworm.com/read/480055/1323130
m runps.m
function [x fval] = runps(a,b,c,x0)
[x, fval] = patternsearch(@nestedfun,x0);
% Nested function that computes the objective function
function y = nestedfun(x)
y = (a - b*x(1)^2 + x(1)
www.eeworm.com/read/475965/1374312
c rows1.c
/* rows1.c -- uses nested loops */
#include
#define ROWS 6
#define CHARS 10
int main(void)
{
int row;
char ch;
for (row = 0; row < ROWS; row++) /* line 10
www.eeworm.com/read/470720/1448036
c scoping4.c
// PRMS Id: 4375
// Bug: g++ fails to keep track of nested typedefs properly.
// Build don't link:
class A {
public:
typedef char * Ptr;
Ptr s;
Ptr get_string();
A(Ptr string); // { s = strin
www.eeworm.com/read/470720/1450424
c nestfunc-3.c
extern long foo (long, long, long (*) (long, long));
extern long use (long (*) (long, long), long, long);
int
main (void)
{
#ifndef NO_TRAMPOLINES
long sum = 0;
long i;
long nested_0 (long a,
www.eeworm.com/read/470693/1459982
c scoping4.c
// PRMS Id: 4375
// Bug: g++ fails to keep track of nested typedefs properly.
// Build don't link:
class A {
public:
typedef char * Ptr;
Ptr s;
Ptr get_string();
A(Ptr string); // { s = strin
www.eeworm.com/read/470693/1462370
c nestfunc-3.c
extern long foo (long, long, long (*) (long, long));
extern long use (long (*) (long, long), long, long);
int
main (void)
{
#ifndef NO_TRAMPOLINES
long sum = 0;
long i;
long nested_0 (long a,
www.eeworm.com/read/250317/4431777
m runps.m
function [x fval] = runps(a,b,c,x0)
[x, fval] = patternsearch(@nestedfun,x0);
% Nested function that computes the objective function
function y = nestedfun(x)
y = (a - b*x(1)^2 + x(1)
www.eeworm.com/read/240162/4580110
c crash7.c
// { dg-do compile }
// Origin: Volker Reichelt
// PR c++/10108: ICE in tsubst_decl for error due to non-existence
// nested type.
template struct A
{
www.eeworm.com/read/240162/4582841
c 900107_01.c
// { dg-do run }
// 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.
// Cfron