HomeSort by relevance Sort by last modified time
    Searched refs:ARG (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/bzip2/
bzdiff 24 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/
basicbenchmark.cpp 15 #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/
macro_paste_bad.c 29 #define XX BL ## ARG
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternLexer.cs 41 public const int ARG = 4;
58 /** <summary>Set when token type is ID or ARG (name mimics Java's StreamTokenizer)</summary> */
121 return ARG;
TreePatternParser.cs 122 // "ID" or "ID[arg]"
132 // check for arg
133 string arg = null;
134 if (ttype == TreePatternLexer.ARG) {
135 arg = tokenizer.sval.ToString();
136 text = arg;
150 if (arg != null && node2.GetType() == typeof(TreeWizard.TreePattern)) {
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternLexer.java 35 public static final int ARG = 4;
52 /** Set when token type is ID or ARG (name mimics Java's StreamTokenizer) */
117 return ARG;
TreePatternParser.java 121 // "ID" or "ID[arg]"
131 // check for arg
132 String arg = null; local
133 if ( ttype == TreePatternLexer.ARG ) {
134 arg = tokenizer.sval.toString();
135 text = arg;
149 if ( arg!=null && node.getClass()==TreeWizard.TreePattern.class ) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.h 21 #define ARG 4
FuzzyLexer.h 35 #define ARG 12
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
FuzzyLexer.h 35 #define ARG 12
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
filter-mode.rb 61 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/
ANTLRv3Tree.g 88 : ^( RULE ID modifier? (^(ARG ARG_ACTION))? (^(RET ARG_ACTION))?
258 : ^(ARG ID ACTION)
ANTLRTreePrinter.g 235 ^(ARG (arg=ARG_ACTION {out("["+$arg.text+"]");} )? )
256 ^(ARG (arg=ARG_ACTION {out("["+$arg.text+"]");} )? )
363 ( ^( ARG arg=ID {out($arg.text+"=");}
ANTLRv3.g 54 ARG;
161 ( arg=ARG_ACTION )?
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)
ActionTranslator.g 665 : '%' ID '(' ( WS? ARG (',' WS? ARG)* WS? )? ')'
686 : '%' '(' ACTION ')' '(' ( WS? ARG (',' WS? ARG)* WS? )? ')'
700 ARG : ID '=' ACTION
ANTLR.g 90 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"] id ACTION
    [all...]
LeftRecursiveRuleWalker.g 118 ^(ARG ARG_ACTION?)
DefineGrammarItemsWalker.g 215 ^( ARG (args=ARG_ACTION)? )
677 ( ^( ARG arg=ID a=ACTION )
TreeToNFAConverter.g 222 ^(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/
main-scripts.rb 180 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/
tcuInterval.hpp 198 //! 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/
netlink-local.h 73 #define NL_DBG(LVL,FMT,ARG...) \
76 fprintf(stderr, "DBG<" #LVL ">: " FMT, ##ARG); \
  /external/openssl/crypto/bio/
b_sock.c 547 int BIO_socket_ioctl(int fd, long type, void *arg)
552 i=ioctlsocket(fd,type,(char *)arg);
556 * VMS ioctl() can't tolerate a 64-bit "void *arg", but we
562 # define ARG arg_32p
569 arg_32 = *((unsigned long *) arg);
571 # define ARG arg
574 # define ARG arg
577 i=ioctlsocket(fd,type,ARG);
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/swingui/parsers/
ANTLRv3.g 55 ARG;
166 ( arg=ARG_ACTION )?
171 -> ^( RULE id {modifier!=null?adaptor.create(modifier):null} ^(ARG $arg)? ^(RET $rt)?
266 | RULE_REF ( arg=ARG_ACTION )? ( (op='^'|op='!') )?
267 -> {$arg!=null&&op!=null}? ^($op RULE_REF $arg)
268 -> {$arg!=null}? ^(RULE_REF $arg)
410 ^(TEMPLATE (ID|ACTION) ^(ARGLIST ^(ARG ID ACTION) ...)
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
treewizard.py 61 ARG = 4
80 ## Set when token type is ID or ARG
145 return ARG
238 # "ID" or "ID[arg]"
249 # check for arg
250 arg = None
251 if self.ttype == ARG:
252 arg = self.tokenizer.sval
253 text = arg
265 if arg is not None and isinstance(node, TreePattern)
    [all...]

Completed in 708 milliseconds

1 2 3