Searched refs:ARG_DEF (Results 1 - 21 of 21) sorted by relevance

/external/libvpx/libvpx/
H A Dvpxenc.c127 ARG_DEF("D", "debug", 0, "Debug mode (makes output deterministic)");
129 ARG_DEF("o", "output", 1, "Output filename");
131 ARG_DEF(NULL, "yv12", 0, "Input file is YV12 ");
133 ARG_DEF(NULL, "i420", 0, "Input file is I420 (default)");
135 ARG_DEF(NULL, "i422", 0, "Input file is I422");
137 ARG_DEF(NULL, "i444", 0, "Input file is I444");
139 ARG_DEF(NULL, "i440", 0, "Input file is I440");
140 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use");
142 ARG_DEF("p", "passes", 1, "Number of passes (1/2)");
144 ARG_DEF(NUL
[all...]
H A Dvpxdec.c51 ARG_DEF(NULL, "loops", 1, "Number of times to decode the file");
52 static const arg_def_t codecarg = ARG_DEF(NULL, "codec", 1, "Codec to use");
54 ARG_DEF(NULL, "yv12", 0, "Output raw YV12 frames");
56 ARG_DEF(NULL, "i420", 0, "Output raw I420 frames");
58 ARG_DEF(NULL, "flipuv", 0, "Flip the chroma planes in the output");
60 ARG_DEF(NULL, "rawvideo", 0, "Output raw YUV frames");
62 ARG_DEF(NULL, "noblit", 0, "Don't process the decoded frames");
64 ARG_DEF(NULL, "progress", 0, "Show progress after each frame decodes");
66 ARG_DEF(NULL, "limit", 1, "Stop decoding after n frames");
68 ARG_DEF(NUL
[all...]
H A Dargs.h41 #define ARG_DEF(s, l, v, d) \ macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.h21 #define ARG_DEF 4 macro
H A DSimpleCTP.h30 #define ARG_DEF 4 macro
H A DSimpleCTP.java10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
28 public static final int ARG_DEF=5; field in class:SimpleCTP
286 if ( (LA3_0==ARG_DEF) ) {
331 // SimpleCTP.g:30:1: formalParameter : ^( ARG_DEF type declarator ) ;
334 // SimpleCTP.g:31:5: ( ^( ARG_DEF type declarator ) )
335 // SimpleCTP.g:31:9: ^( ARG_DEF type declarator )
337 match(input,ARG_DEF,FOLLOW_ARG_DEF_in_formalParameter186);
H A DSimpleCLexer.java25 public static final int ARG_DEF=5; field in class:SimpleCLexer
H A DSimpleCParser.h39 #define ARG_DEF 4 macro
H A DSimpleCTP.m232 @"ARG_DEF", @"BLOCK", @"FUNC_DECL", @"FUNC_DEF", @"FUNC_HDR", @"K_CHAR",
574 if ( (LA3_0==ARG_DEF) ) {
629 * SimpleCTP.g:35:1: formalParameter : ^( ARG_DEF type declarator ) ;
637 // SimpleCTP.g:36:5: ( ^( ARG_DEF type declarator ) ) // ruleBlockSingleAlt
638 // SimpleCTP.g:36:9: ^( ARG_DEF type declarator ) // alt
640 [self match:input TokenType:ARG_DEF Follow:FOLLOW_ARG_DEF_in_formalParameter199];
H A DSimpleCParser.java13 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
31 public static final int ARG_DEF=5; field in class:SimpleCParser
609 // SimpleC.g:39:1: formalParameter : type declarator -> ^( ARG_DEF type declarator ) ;
624 // SimpleC.g:40:5: ( type declarator -> ^( ARG_DEF type declarator ) )
652 // 40:25: -> ^( ARG_DEF type declarator )
654 // SimpleC.g:40:28: ^( ARG_DEF type declarator )
657 root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ARG_DEF, "ARG_DEF"), root_1);
H A DSimpleCParser.m913 @"ARG_DEF", @"BLOCK", @"FUNC_DECL", @"FUNC_DEF", @"FUNC_HDR", @"K_CHAR",
1690 * SimpleC.g:39:1: formalParameter : type declarator -> ^( ARG_DEF type declarator ) ;
1717 // SimpleC.g:40:5: ( type declarator -> ^( ARG_DEF type declarator ) ) // ruleBlockSingleAlt
1753 // 40:25: -> ^( ARG_DEF type declarator )
1755 // SimpleC.g:40:28: ^( ARG_DEF type declarator )
1759 [treeAdaptor createTree:ARG_DEF Text:@"ARG_DEF"]
/external/libvpx/libvpx/examples/
H A Dvp9_spatial_svc_encoder.c36 ARG_DEF("s", "skip-frames", 1, "input frames to skip");
38 ARG_DEF("f", "frames", 1, "number of frames to encode");
40 ARG_DEF("th", "threads", 1, "number of threads to use");
43 ARG_DEF("rcstat", "output_rc_stats", 1, "output rc stats");
45 static const arg_def_t width_arg = ARG_DEF("w", "width", 1, "source width");
46 static const arg_def_t height_arg = ARG_DEF("h", "height", 1, "source height");
48 ARG_DEF("t", "timebase", 1, "timebase (num/den)");
49 static const arg_def_t bitrate_arg = ARG_DEF(
52 ARG_DEF("sl", "spatial-layers", 1, "number of spatial SVC layers");
54 ARG_DEF("t
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCLexer.h40 #define ARG_DEF 5 macro
H A DSimpleCTP.h28 #define ARG_DEF 5 macro
H A DSimpleCTP.java10 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
28 public static final int ARG_DEF=5; field in class:SimpleCTP
286 if ( (LA3_0==ARG_DEF) ) {
331 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:30:1: formalParameter : ^( ARG_DEF type declarator ) ;
334 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:31:5: ( ^( ARG_DEF type declarator ) )
335 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:31:9: ^( ARG_DEF type declarator )
337 match(input,ARG_DEF,FOLLOW_ARG_DEF_in_formalParameter186);
H A DSimpleCLexer.java25 public static final int ARG_DEF=5; field in class:SimpleCLexer
H A DSimpleCParser.h36 #define ARG_DEF 5 macro
H A DSimpleCTP.m237 @"VAR_DEF", @"ARG_DEF", @"FUNC_HDR", @"FUNC_DECL", @"FUNC_DEF", @"BLOCK",
519 if ( (LA3_0==ARG_DEF) ) {
565 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:35:1: formalParameter : ^( ARG_DEF type declarator ) ;
572 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:36:5: ( ^( ARG_DEF type declarator ) ) // ruleBlockSingleAlt
573 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:36:9: ^( ARG_DEF type declarator ) // alt
575 [self match:input TokenType:ARG_DEF Follow:FOLLOW_ARG_DEF_in_formalParameter199]; /* element() */
H A DSimpleCParser.java13 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VAR_DEF", "ARG_DEF", "FUNC_HDR", "FUNC_DECL", "FUNC_DEF", "BLOCK", "ID", "EQ", "INT", "FOR", "INT_TYPE", "CHAR", "VOID", "EQEQ", "LT", "PLUS", "WS", "';'", "'('", "','", "')'", "'{'", "'}'"
31 public static final int ARG_DEF=5; field in class:SimpleCParser
609 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:39:1: formalParameter : type declarator -> ^( ARG_DEF type declarator ) ;
624 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:40:5: ( type declarator -> ^( ARG_DEF type declarator ) )
652 // 40:25: -> ^( ARG_DEF type declarator )
654 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:40:28: ^( ARG_DEF type declarator )
657 root_1 = (Object)adaptor.becomeRoot((Object)adaptor.create(ARG_DEF, "ARG_DEF"), root_1);
H A DSimpleCParser.m803 @"VAR_DEF", @"ARG_DEF", @"FUNC_HDR", @"FUNC_DECL", @"FUNC_DEF", @"BLOCK",
1496 * /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:39:1: formalParameter : type declarator -> ^( ARG_DEF type declarator ) ;
1521 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:40:5: ( type declarator -> ^( ARG_DEF type declarator ) ) // ruleBlockSingleAlt
1556 // 40:25: -> ^( ARG_DEF type declarator )
1558 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:40:28: ^( ARG_DEF type declarator )
1561 root_1 = (ANTLRCommonTree *)[treeAdaptor becomeRoot:[[treeAdaptor createTree:(NSInteger)ARG_DEF Text:[[ANTLRBaseRecognizer getTokenNames] objectAtIndex:(NSUInteger)ARG_DEF]] retain]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
H A Dbasic.rb474 ARG_DEF;
505 : type declarator -> ^(ARG_DEF type declarator)
628 : ^(ARG_DEF type declarator)
688 (FUNC_DECL (FUNC_HDR void bar (ARG_DEF int x)))
690 (FUNC_HDR int foo (ARG_DEF int y) (ARG_DEF char d))

Completed in 287 milliseconds