Searched refs:ARG (Results 1 - 25 of 78) sorted by relevance

1234

/external/bzip2/
H A Dbzdiff24 for ARG
26 case "$ARG" in
27 -*) OPTIONS="$OPTIONS $ARG";;
28 *) if test -f "$ARG"; then
29 FILES="$FILES $ARG"
31 echo "${prog}: $ARG not found or not a regular file"
/external/eigen/bench/
H A Dbasicbenchmark.cpp15 #define _GENERATE_HEADER(R,ARG,EL) << BOOST_PP_STRINGIZE(BOOST_PP_SEQ_HEAD(EL)) << "-" \
23 #define _RUN_BENCH(R,ARG,EL) \
24 std::cout << ARG( \
/external/clang/test/Preprocessor/
H A Dmacro_paste_bad.c29 #define XX BL ## ARG
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreePatternLexer.cs41 public const int ARG = 4; field in class:Antlr.Runtime.Tree.TreePatternLexer
58 /** <summary>Set when token type is ID or ARG (name mimics Java's StreamTokenizer)</summary> */
121 return ARG;
H A DTreePatternParser.cs134 if (ttype == TreePatternLexer.ARG) {
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreePatternLexer.java35 public static final int ARG = 4; field in class:TreePatternLexer
52 /** Set when token type is ID or ARG (name mimics Java's StreamTokenizer) */
117 return ARG;
H A DTreePatternParser.java133 if ( ttype == TreePatternLexer.ARG ) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
H A DFuzzy.h21 #define ARG 4 macro
H A DFuzzyLexer.h35 #define ARG 12 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
H A DFuzzyLexer.h35 #define ARG 12 macro
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dfilter-mode.rb61 ARG : TYPE WS ID
129 : TYPE WS name=ID WS? '(' ( ARG WS? (',' WS? ARG WS?)* )? ')' WS?
195 ARG : TYPE WS ID
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLRv3Tree.g88 : ^( RULE ID modifier? (^(ARG ARG_ACTION))? (^(RET ARG_ACTION))?
258 : ^(ARG ID ACTION)
H A DANTLRTreePrinter.g235 ^(ARG (arg=ARG_ACTION {out("["+$arg.text+"]");} )? )
256 ^(ARG (arg=ARG_ACTION {out("["+$arg.text+"]");} )? )
363 ( ^( ARG arg=ID {out($arg.text+"=");}
H A DANTLRv3.g54 ARG;
166 -> ^( RULE id {modifier!=null?adaptor.create(modifier):null} ^(ARG[$arg] $arg)? ^('returns' $rt)?
414 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) )
459 : id '=' ACTION -> ^(ARG[$id.start] id ACTION)
H A DActionTranslator.g665 : '%' ID '(' ( WS? ARG (',' WS? ARG)* WS? )? ')'
686 : '%' '(' ACTION ')' '(' ( WS? ARG (',' WS? ARG)* WS? )? ')'
700 ARG : ID '=' ACTION
H A DANTLR.g90 ARG;
388 * ^(RULE[block,"rule"] ID["name"] {modifier} ARG["ARG"] RET["RET"] SCOPE["scope"] {block} EOR[EOBAST,"<end-of-rule>"])
395 adaptor.addChild( rule, adaptor.create( ARG, "ARG" ) );
592 ^(ARG["ARG"] $aa?)
982 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) )
1039 -> ^(ARG[$a,"ARG"] i
[all...]
H A DLeftRecursiveRuleWalker.g118 ^(ARG ARG_ACTION?)
H A DDefineGrammarItemsWalker.g215 ^( ARG (args=ARG_ACTION)? )
677 ( ^( ARG arg=ID a=ACTION )
H A DTreeToNFAConverter.g222 ^(ARG (ARG_ACTION)?)
679 : ^( RULE id=ID (modifier)? ARG RET ( ^(OPTIONS .*) )? ( ruleScopeSpec )?
816 : ^( RULE id=ID (modifier)? ARG RET ( ^(OPTIONS .*) )? ( ruleScopeSpec )?
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
H A Dmain-scripts.rb180 tokens { ARG; }
181 r: ^(OP a=ID b=ID) -> ^(OP ^(ARG ID) ^(ARG ID));
193 output.should == '(+ (ARG a) (ARG b))'
/external/deqp/framework/common/
H A DtcuInterval.hpp198 //! Set the interval DST to the image of BODY on ARG, assuming that BODY on
199 //! ARG is a monotone function. In practice, BODY is evaluated on both the
200 //! upper and lower bound of ARG, and DST is set to the union of these
201 //! results. While evaluating BODY, PARAM is bound to the bound of ARG, and
203 #define TCU_INTERVAL_APPLY_MONOTONE1(DST, PARAM, ARG, VAR, BODY) do \
205 const ::tcu::Interval& VAR##_arg_ = (ARG); \
/external/libnl/include/
H A Dnetlink-local.h73 #define NL_DBG(LVL,FMT,ARG...) \
76 fprintf(stderr, "DBG<" #LVL ">: " FMT, ##ARG); \
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtreewizard.py61 ARG = 4 variable
80 ## Set when token type is ID or ARG
145 return ARG
251 if self.ttype == ARG:
/external/openssl/crypto/bio/
H A Db_sock.c562 # define ARG arg_32p macro
571 # define ARG arg macro
574 # define ARG arg macro
577 i=ioctlsocket(fd,type,ARG);
/external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
H A DANTLRv3.g55 ARG;
171 -> ^( RULE id {modifier!=null?adaptor.create(modifier):null} ^(ARG $arg)? ^(RET $rt)?
410 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...) )
455 : id '=' ACTION -> ^(ARG[$id.start] id ACTION)

Completed in 1586 milliseconds

1234