/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
StreamService.java | 25 import com.google.caliper.util.Parser; 93 private final Parser<LogMessage> logMessageParser; 113 Parser<LogMessage> logMessageParser,
|
/external/javassist/src/main/javassist/bytecode/ |
AnnotationsAttribute.java | 226 return new Parser(info, constPool).parseAnnotations(); 562 static class Parser extends Walker { 570 * Constructs a parser. This parser constructs a parse tree of 576 Parser(byte[] info, ConstPool cp) {
|
/frameworks/base/core/java/android/content/res/ |
XmlBlock.java | 71 return new Parser(nativeCreateParseState(mNative), this); 77 /*package*/ final class Parser implements XmlResourceParser { 78 Parser(long parseState, XmlBlock block) { 277 + ": parser must be on START_TAG to read next text", this, null); 294 + ": parser must be on START_TAG or TEXT to read text", this, null);
|
/prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.maven.repository/0.18.1/ |
org.eclipse.tycho.p2.maven.repository-0.18.1.jar | |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/ |
profile-mode.rb | 128 parser = SimpleC::Parser.new( tokens ) 129 parser.program 131 profile_data = parser.profile
|
/external/clang/tools/driver/ |
cc1as_main.cpp | 284 // Get the target specific parser. 300 // Tell SrcMgr about this buffer, which is what the parser will pick up. 410 std::unique_ptr<MCAsmParser> Parser( 416 TheTarget->createMCAsmParser(*STI, *Parser, *MCII, Options)); 421 Parser->setTargetParser(*TAP.get()); 422 Failed = Parser->Run(Opts.NoInitialTextSection);
|
/external/lzma/CS/7zip/Common/ |
CommandLineParser.cs | 58 public class Parser
63 public Parser(int numSwitches)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
HeaderParser.java | 26 package gov.nist.javax.sip.parser; 33 * Generic header parser class. The parsers for various headers extend this 34 * class. To create a parser for a new header, extend this class and change 43 public class HeaderParser extends Parser {
|
/external/parameter-framework/upstream/tools/xmlGenerator/ |
domainGenerator.py | 135 root = EddParser.Parser().parse(edd_file)
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
UnknownFieldSet.java | 972 * Parser to implement MessageLite interface. 974 public static final class Parser extends AbstractParser<UnknownFieldSet> { [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/ |
SAX1ParserAdapter.java | 29 implements org.xml.sax.Parser
|
/external/v8/test/cctest/compiler/ |
test-loop-assignment-analysis.cc | 7 #include "src/parsing/parser.h" 36 CHECK(Parser::ParseStatic(&parse_info));
|
function-tester.h | 17 #include "src/parsing/parser.h" 172 CHECK(Parser::ParseStatic(info.parse_info())); 233 CHECK(Parser::ParseStatic(info.parse_info()));
|
/frameworks/base/cmds/content/src/com/android/commands/content/ |
Content.java | 129 private static class Parser { 156 public Parser(String[] args) { 620 Parser parser = new Parser(args); local 621 Command command = parser.parseCommand();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/ |
parse.py | 4 """Parser engine for the grammar tables generated by pgen. 8 See Parser/parser.c in the Python distribution for additional info on 17 """Exception to signal the parser is stuck.""" 27 class Parser(object): 28 """Parser engine. 32 p = Parser(grammar, [converter]) # create instance 39 A Parser instance may be reused by calling setup() repeatedly. 41 A Parser instance contains state pertaining to the current token 51 the ParseError exception. There is no error recovery; the parser [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/ |
parse.py | 4 """Parser engine for the grammar tables generated by pgen. 8 See Parser/parser.c in the Python distribution for additional info on 17 """Exception to signal the parser is stuck.""" 27 class Parser(object): 28 """Parser engine. 32 p = Parser(grammar, [converter]) # create instance 39 A Parser instance may be reused by calling setup() repeatedly. 41 A Parser instance contains state pertaining to the current token 51 the ParseError exception. There is no error recovery; the parser [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
parse.py | 4 """Parser engine for the grammar tables generated by pgen. 8 See Parser/parser.c in the Python distribution for additional info on 17 """Exception to signal the parser is stuck.""" 27 class Parser(object): 28 """Parser engine. 32 p = Parser(grammar, [converter]) # create instance 39 A Parser instance may be reused by calling setup() repeatedly. 41 A Parser instance contains state pertaining to the current token 51 the ParseError exception. There is no error recovery; the parser [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
parse.py | 4 """Parser engine for the grammar tables generated by pgen. 8 See Parser/parser.c in the Python distribution for additional info on 17 """Exception to signal the parser is stuck.""" 27 class Parser(object): 28 """Parser engine. 32 p = Parser(grammar, [converter]) # create instance 39 A Parser instance may be reused by calling setup() repeatedly. 41 A Parser instance contains state pertaining to the current token 51 the ParseError exception. There is no error recovery; the parser [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
batch.py | 8 import email.parser as email_parser 340 parser = email_parser.Parser() 341 msg = parser.parsestr(payload) 415 # Prepend with a content-type header so Parser can handle it. 418 parser = email_parser.Parser() 419 mime_response = parser.parsestr(header + response.content)
|
/external/deqp/executor/tools/ |
xeTestLogCompare.cpp | 76 static void registerOptions (de::cmdline::Parser& parser) 97 parser << Option<OutFormat> ("f", "format", "Output format", s_outputFormats, "csv") 181 xe::TestLogParser parser (&resultHandler); 193 parser.parse(&buf[0], numRead); 369 de::cmdline::Parser parser; local 374 opt::registerOptions(parser); 376 if (!parser.parse(argc-1, &argv[1], &opts, std::cerr) || 380 parser.help(std::cout) [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
LazyMessageLiteTest.java | 50 private Parser<LazyInnerMessageLite> originalLazyInnerMessageLiteParser; 56 originalLazyInnerMessageLiteParser = LazyInnerMessageLite.PARSER; 61 LazyInnerMessageLite.PARSER = originalLazyInnerMessageLiteParser; 307 // The parser for inner / oneofInner message shouldn't be used if 309 LazyInnerMessageLite.PARSER = EasyMock.createStrictMock(Parser.class); 311 EasyMock.replay(LazyInnerMessageLite.PARSER); 317 EasyMock.verify(LazyInnerMessageLite.PARSER);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
ParserAdapterTest.java | 35 import org.xml.sax.Parser; 62 private Parser parser = new MockParser(logger); field in class:ParserAdapterTest 64 private ParserAdapter adapter = new ParserAdapter(parser); 86 System.setProperty("org.xml.sax.parser", 99 ParserAdapter adapter = new ParserAdapter(parser);
|
/prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-module-fml/1.0/ |
doxia-module-fml-1.0.jar | |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/ |
auto-ast.rb | 15 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors ) 16 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput ) 19 parser = grammar_module::Parser.new( lexer ) 21 r = parser.send( rule ) 22 parser.reported_errors.should be_empty unless expect_errors 29 return( expect_errors ? [ result, parser.reported_errors ] : result ) 43 grammar_module::Parser.send( :include, ANTLR3::Test::CollectErrors ) 44 grammar_module::Parser.send( :include, ANTLR3::Test::CaptureOutput ) 49 parser = grammar.module::Parser.new( lexer [all...] |
/external/testng/src/main/java/org/testng/ |
TestNG.java | 56 import org.testng.xml.Parser; 363 Parser parser = getParser(jf.getInputStream(je)); local 364 Collection<XmlSuite> suites = parser.parse(); 403 private Parser getParser(String path) { 404 Parser result = new Parser(path); 409 private Parser getParser(InputStream is) { 410 Parser result = new Parser(is) [all...] |