代码搜索:syntax
找到约 10,000 项符合「syntax」的源代码
代码结果 10,000
www.eeworm.com/read/198657/5083849
en_us animalresources.en_us
thanksAndBye=Thank you for using Animal 2.
echoLocation=# {0}location [input line {1}]: {2}
invalidLocation=invalid
echoRule=# Syntax for "{0}" command:\n{1}
echoVisible=# Currently visible objec
www.eeworm.com/read/195013/5115925
in config.in
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/config-language.txt.
#
mainmenu_name "Linux/SuperH Kernel Configuration"
define_bool CONFIG_SUPERH y
define
www.eeworm.com/read/194563/5127595
tex hworld.tex
\section{wxWidgets Hello World sample}\label{helloworld}
As many people have requested a mini-sample to be published here
so that some quick judgment concerning syntax
and basic principles can be mad
www.eeworm.com/read/194357/5132207
conf lg.conf
# configuration file for the looking glass
#
# note: these are perl statements! mind the syntax
#
# adjust the path to find [cfj]login, telnet, ssh, rsh, etc.
#
$ENV{PATH}="/nmis/rancid/bin:/usr/bin:
www.eeworm.com/read/191602/5165031
h asnber.h
/*
* asnper.h
*
* Abstract Syntax Notation Encoding Rules classes
*
* Portable Windows Library
*
*/
#ifdef P_INCLUDE_BER
/** Class for ASN basic Encoding Rules stream.
*/
class P
www.eeworm.com/read/191602/5165033
h asnxer.h
/*
* asnxer.h
*
* Abstract Syntax Notation Encoding Rules classes
*
* Portable Windows Library
*
*/
#ifdef P_INCLUDE_XER
/** Class for ASN XML Encoding Rules stream.
*/
class PXE
www.eeworm.com/read/190666/5172566
c attrib4.c
// Test for syntax support of various attribute permutations.
int
__attribute__((noreturn))
__attribute__((unused))
one(void); // OK
__attribute__((noreturn))
__attribute__((unused))
int
two(void);
www.eeworm.com/read/190666/5175382
c 900207_03.c
// g++ 1.36.1 bug 900207_03
// g++ fails to allow objects of class or struct types to be initialized
// using "constructor syntax" in cases where an implicitly generated copy
// constructor would be
www.eeworm.com/read/190666/5175740
c dtor2.c
// PRMS Id: 5163
// Bug: g++ doesn't accept the explicit destructor call syntax for templates.
template struct A { };
A a;
int main()
{
a.~A(); // gets bogus error
}
www.eeworm.com/read/190666/5175857
c template12.c
// Testcase for 'this is a type' syntax.
// Build don't link:
struct B {
typedef int A;
};
template struct Y {
void f() {
typename T::A *d;
}
};
template class Y;