代码搜索:syntax
找到约 10,000 项符合「syntax」的源代码
代码结果 10,000
www.eeworm.com/read/454148/1632999
c regshift.c
/* $Revision: 1.21 $ */
/*
* REGSHIFT A Simulink triggered register_buff shift
*
* Syntax: [sys, x0] = regshift(t,x,u,flag,outDelay,tirgThreshold)
* This function has two inputs
www.eeworm.com/read/454148/1633024
c regdown.c
/* $Revision: 1.21 $ */
/*
* REGDOWN A Simulink register down block
*
* Syntax: [sys, x0] = regdown(t, x, u, flag, OutputIndex, Increament, trigThreshold, cycl_flag)
* This block outp
www.eeworm.com/read/250015/4443546
in config.in
#
# For a description of the syntax of this configuration file,
# see scripts/kbuild/config-language.txt.
#
config APP_UDHCPD
bool "udhcp Server (udhcpd)"
default n
help
uDHCPd is a DHCP server
www.eeworm.com/read/243166/4531475
c asn1_dec.c
/**
* @file
* Abstract Syntax Notation One (ISO 8824, 8825) decoding
*
* @todo not optimised (yet), favor correctness over speed, favor speed over size
*/
/*
* Copyright (c) 2006 Axon D
www.eeworm.com/read/243166/4531478
c asn1_enc.c
/**
* @file
* Abstract Syntax Notation One (ISO 8824, 8825) encoding
*
* @todo not optimised (yet), favor correctness over speed, favor speed over size
*/
/*
* Copyright (c) 2006 Axon D
www.eeworm.com/read/240162/4580838
c access10.c
// { dg-do assemble }
// Test that defining a static member of private type with the () syntax works.
class A {
private:
struct B { B(int) {} };
static B b;
};
A::B A::b (1);