HomeSort by relevance Sort by last modified time
    Searched defs:Parser (Results 126 - 150 of 365) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/protobuf/src/google/protobuf/
text_format.h 341 // Interface that TextFormat::Parser can use to find extensions.
384 // Allow the text format parser to record information into the tree.
407 class LIBPROTOBUF_EXPORT Parser {
409 Parser();
410 ~Parser();
427 // Set how parser finds extensions. If NULL (the default), the
428 // parser will use the standard Reflection object associated with
490 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some
  /external/regex-re2/util/
pcre.h 583 typedef bool (*Parser)(const char* str, int n, void* dest);
588 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { } \
609 template <class T> Arg(T*, Parser parser);
620 Parser parser_;
659 // This part of the parser, appropriate only for ints, deals with bases
  /external/testng/src/main/java/org/testng/xml/
Parser.java 20 * <code>Parser</code> is a parser for a TestNG XML test suite file.
22 public class Parser {
40 for (ISuiteParser parser : suiteParserLoader) {
41 PARSERS.add(parser); external variable declarations
45 /** The file name of the xml suite being parsed. This may be null if the Parser
55 * Constructs a <code>Parser</code> to use the inputStream as the source of
60 public Parser(String fileName) {
65 * Creates a parser that will try to find the DEFAULT_FILENAME from the jar.
69 public Parser() throws FileNotFoundException
    [all...]
  /frameworks/base/cmds/appwidget/src/com/android/commands/appwidget/
AppWidget.java 54 private static class Parser {
64 public Parser(String[] args) {
161 Parser parser = new Parser(args); local
162 Runnable command = parser.parseCommand();
  /frameworks/native/include/input/
KeyCharacterMap.h 183 class Parser {
210 Parser(KeyCharacterMap* map, Tokenizer* tokenizer, Format format);
211 ~Parser();
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/
parse.go 5 // Package asm implements the parser and instruction generator for the assembler.
25 type Parser struct {
52 func NewParser(ctxt *obj.Link, ar *arch.Arch, lexer lex.TokenReader) *Parser {
53 return &Parser{
67 func (p *Parser) errorf(format string, args ...interface{}) {
88 func (p *Parser) Parse() (*obj.Prog, bool) {
99 func (p *Parser) line() bool {
199 func (p *Parser) instruction(op obj.As, word, cond string, operands [][]lex.Token) {
216 func (p *Parser) pseudo(word string, operands [][]lex.Token) bool {
234 func (p *Parser) start(operand []lex.Token)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/
parse.go 5 // Package asm implements the parser and instruction generator for the assembler.
25 type Parser struct {
52 func NewParser(ctxt *obj.Link, ar *arch.Arch, lexer lex.TokenReader) *Parser {
53 return &Parser{
67 func (p *Parser) errorf(format string, args ...interface{}) {
88 func (p *Parser) Parse() (*obj.Prog, bool) {
99 func (p *Parser) line() bool {
199 func (p *Parser) instruction(op obj.As, word, cond string, operands [][]lex.Token) {
216 func (p *Parser) pseudo(word string, operands [][]lex.Token) bool {
234 func (p *Parser) start(operand []lex.Token)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
text_format.h 341 // Interface that TextFormat::Parser can use to find extensions.
384 // Allow the text format parser to record information into the tree.
407 class LIBPROTOBUF_EXPORT Parser {
409 Parser();
410 ~Parser();
427 // Set how parser finds extensions. If NULL (the default), the
428 // parser will use the standard Reflection object associated with
490 // the friendship to TextFormat::Parser::ParserImpl, but unfortunately some