Searched defs:parse (Results 1 - 25 of 656) sorted by relevance

1234567891011>>

/external/autotest/tko/
H A Dparse4 from autotest_lib.tko import parse namespace
5 parse.main()
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
H A Dauto-ast.rb8 def parse( grammar, rule, input, expect_errors = false ) method in class:TestAutoAST
61 result = parse( <<-'END', :a, 'abc 34' )
73 result = parse( <<-'END', :a, 'abc 34' )
85 result = parse( <<-'END', :a, 'abc 34' )
97 result = parse( <<-'END', :a, '34 abc' )
109 result = parse( <<-'END', :a, 'abc 34 dag 4532' )
122 result = parse( <<-'END', :a, 'a 1 b' )
134 result = parse( <<-'END', :a, 'void foo;' )
146 result = parse( <<-'END', :a, 'void foo;' )
158 result = parse( <<
[all...]
H A Drewrites.rb8 def parse( grammar, rule, input, expect_errors = false ) method in class:TestASTViaRewriteRules
60 result = parse( <<-'END', :a, 'abc 34' )
73 result = parse( <<-'END', :a, 'abc' )
87 result = parse( <<-'END', :a, 'abc' )
101 result = parse( <<-'END', :a, 'abc' )
115 result = parse( <<-'END', :a, 'abc' )
128 result = parse( <<-'END', :a, 'c' )
142 result = parse( <<-'END', :a, 'ick' )
156 result = parse( <<-'END', :a, 'abc' )
171 result = parse( <<
[all...]
H A Dhetero-nodes.rb593 def parse( grammar_name, grammar_rule, input ) method in class:TestHeterogeneousNodeTypes
621 result = parse( :VToken, :a, 'a' )
627 result = parse( :TokenWithQualifiedType, :a, 'a' )
633 result = parse( :TokenWithLabel, :a, 'a' )
639 result = parse( :TokenWithListLabel, :a, 'a' )
645 result = parse( :TokenRoot, :a, 'a' )
651 result = parse( :TokenRootWithListLabel, :a, 'a' )
657 result = parse( :FromString, :a, 'begin' )
663 result = parse( :StringRoot, :a, 'begin' )
669 result = parse(
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/template-output/
H A Dtemplate-output.rb8 def parse( grammar, input, options = nil ) method in class:TestTemplateOutput
29 ANTLR3::Template::Group.parse( source.fixed_indent( 0 ) )
34 text = parse( <<-'END', "abc 34" )
61 text = parse( <<-'END', 'a + b', :templates => templates )
82 text = parse( <<-'END', 'abc 34' )
101 text = parse( <<-'END', "abc def ghi" )
122 text = parse( <<-'END', "abc" )
140 text = parse( <<-'END', 'abc' )
157 # text = parse( <<-'END', 'abc' )
185 text = parse( <<
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.c36 struct tgsi_parse_context parse; local
38 if (tgsi_parse_init( &parse, tokens ) != TGSI_PARSE_OK)
41 ctx->processor = parse.FullHeader.Processor;
47 while (!tgsi_parse_end_of_tokens( &parse )) {
48 tgsi_parse_token( &parse );
50 switch (parse.FullToken.Token.Type) {
53 if (!ctx->iterate_instruction( ctx, &parse.FullToken.FullInstruction ))
59 if (!ctx->iterate_declaration( ctx, &parse.FullToken.FullDeclaration ))
65 if (!ctx->iterate_immediate( ctx, &parse.FullToken.FullImmediate ))
71 if (!ctx->iterate_property( ctx, &parse
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
H A Ddebug-mode.rb66 def parse( grammar, rule, input, options = {} ) method in class:TestDebugGrammars
99 parse( grammar, :a, 'a', :listener => listener )
121 debugger = parse( grammar, :a, 'a' )
151 debugger = parse( grammar, :a, "a b" )
189 debugger = parse( grammar, :a, "a" )
223 debugger = parse( grammar, :a, "a 1 b c 3" )
294 debugger = parse( grammar, :a, "a 1 b c 3" )
364 debugger = parse( grammar, :a, "a" )
403 debugger = parse( grammar, :a, "a 1" )
456 debugger = parse( gramma
[all...]
/external/autotest/server/site_tests/native_Benchmarks/
H A Doctane.py33 return self.parse(log)
35 def parse(self, log): member in class:octane
37 @param log: the log to parse
H A Dvp8.py34 return self.parse(declog, enclog)
36 def parse(self, dec, enc): member in class:vp8
/external/proguard/src/proguard/util/
H A DStringParser.java34 public StringMatcher parse(String regularExpression); method in interface:StringParser
H A DFileNameParser.java40 public StringMatcher parse(String regularExpression) method in class:FileNameParser
58 parse(regularExpression.substring(index + 2)));
72 parse(regularExpression.substring(index + 1)));
86 parse(regularExpression.substring(index + 1)));
108 StringMatcher matcher = parser.parse(args[0]);
H A DNameParser.java39 public StringMatcher parse(String regularExpression) method in class:NameParser
57 parse(regularExpression.substring(index + 1)));
71 parse(regularExpression.substring(index + 1)));
93 StringMatcher matcher = parser.parse(args[0]);
/external/apache-http/src/org/apache/http/io/
H A DHttpMessageParser.java55 HttpMessage parse() method in interface:HttpMessageParser
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DParser.java23 T parse(CharSequence text) throws ParseException; method in interface:Parser
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugMacro.cpp57 void DWARFDebugMacro::parse(DataExtractor data) { function in class:DWARFDebugMacro
/external/selinux/libsemanage/src/
H A Ddatabase_file.h17 /* Fill record structuure based on supplied parse info.
20 int (*parse) (semanage_handle_t * handle, member in struct:record_file_table
/external/smali/smalidea/src/main/java/org/jf/smalidea/
H A DSmaliParser.java44 @NotNull @Override public ASTNode parse(IElementType root, PsiBuilder builder) { method in class:SmaliParser
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
H A DMain.java46 // Recursively parse each directory, and each file on the
51 parse(new File(args[i]));
66 public static void parse(File source) throws Exception method in class:Main
83 parse(new File(source, files[i]));
87 // Else find out if it is an ASP.Net file and parse it if it is
237 // The file we tried to parse does not exist
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicCommentHandler.java48 public void parse(final SetCookie cookie, final String value) method in class:BasicCommentHandler
H A DBasicExpiresHandler.java55 public void parse(final SetCookie cookie, final String value) method in class:BasicExpiresHandler
66 throw new MalformedCookieException("Unable to parse expires attribute: "
H A DBasicMaxAgeHandler.java50 public void parse(final SetCookie cookie, final String value) method in class:BasicMaxAgeHandler
/external/autotest/cli/
H A Dsuite.py81 def parse(self): member in class:suite_create
103 options, leftover = suite.parse(
/external/bison/examples/calc++/
H A Dcalc++-driver.cc17 calcxx_driver::parse (const std::string &f) function in class:calcxx_driver
23 int res = parser.parse ();
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DCommandLineSerializer.java55 public static WorkerSpec parse(String arg) { method in class:CommandLineSerializer
H A DLogMessageParser.java43 @Override public LogMessage parse(CharSequence text) { method in class:LogMessageParser

Completed in 3071 milliseconds

1234567891011>>