HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 51 - 75 of 410) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DataFactory.java 46 * Returns the Parser used by this factory to parse the HDF content.
50 Parser getParser();
Parser.java 28 public interface Parser {
HDFDataFactory.java 30 private final Parser hdfParser;
59 hdfParser.parse(reader, output, new Parser.ErrorHandler() {
78 public Parser getParser() {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 36 options.put("--reuse", Boolean.FALSE); // reuse a single Parser
121 private static Parser theParser = null;
131 if (theParser == null) theParser = new Parser();
135 r = new Parser();
138 r.setProperty(Parser.schemaProperty, theSchema);
141 r.setFeature(Parser.CDATAElementsFeature, false);
145 r.setFeature(Parser.namespacesFeature, false);
149 r.setFeature(Parser.ignoreBogonsFeature, true);
153 r.setFeature(Parser.bogonsEmptyFeature, false);
156 r.setFeature(Parser.bogonsEmptyFeature, true)
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
Parser.java 1 // SAX parser interface.
4 // $Id: Parser.java,v 1.6 2002/01/30 21:13:47 dbrownell Exp $
35 * may reuse a parser object (possibly with a different input source)
53 public interface Parser
79 * SAX parser will resolve system identifiers and open connections
84 * in the middle of a parse, and the SAX parser must begin using
98 * events reported by the SAX parser will be silently
103 * handler in the middle of a parse, and the SAX parser must
117 * document events reported by the SAX parser will be silently
122 * middle of a parse, and the SAX parser must begin using the ne
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
SendMailParser.java 6 public class SendMailParser extends Parser {
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.cc 42 #include <google/protobuf/compiler/parser.h>
96 Parser::Parser()
105 Parser::~Parser() {
110 inline bool Parser::LookingAt(const char* text) {
114 inline bool Parser::LookingAtType(io::Tokenizer::TokenType token_type) {
118 inline bool Parser::AtEnd() {
122 bool Parser::TryConsume(const char* text) {
131 bool Parser::Consume(const char* text, const char* error)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Parser.java 32 /** A parser for TokenStreams. "parser grammars" result in a subclass
35 public class Parser extends BaseRecognizer {
38 public Parser(TokenStream input) {
43 public Parser(TokenStream input, RecognizerSharedState state) {
44 super(state); // share the state object with another parser
79 /** Set the token stream and reset the parser */
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 1 //===-- llvm/MC/MCAsmParserExtension.h - Asm Parser Hooks -------*- C++ -*-===//
21 /// which is implemented by target and object file assembly parser
27 MCAsmParser *Parser;
46 /// \brief Initialize the extension for parsing using the given \p Parser.
49 virtual void Initialize(MCAsmParser &Parser);
56 MCAsmParser &getParser() { return *Parser; }
  /frameworks/native/include/input/
KeyLayoutMap.h 90 class Parser {
95 Parser(KeyLayoutMap* map, Tokenizer* tokenizer);
96 ~Parser();
  /system/core/include/utils/
PropertyMap.h 84 class Parser {
89 Parser(PropertyMap* map, Tokenizer* tokenizer);
90 ~Parser();
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
rule-methods.rb 14 @parser::members {
47 parser = Parameters::Parser.new lexer
48 r = parser.a( 'foo', 'bar' )
60 @parser::members {
101 parser = MultipleReturnValues::Parser.new lexer
102 ret = parser.a
128 RuleVisibility::Parser.public_instance_methods.should include( mname[ 'a' ] )
129 RuleVisibility::Parser.protected_instance_methods.should include( mname[ 'c' ]
    [all...]
scopes.rb 31 parser = SimpleScope::Parser.new lexer
32 parser.prog
179 parser = LotsaScopes::Parser.new lexer
180 parser.a
185 parser = LotsaScopes::Parser.new lexer
186 proc { parser.b( false ) }.should raise_error( ANTLR3::RecognitionError )
191 parser = LotsaScopes::Parser.new lexe
    [all...]
basic.rb 11 @parser::init {
16 @parser::members {
36 # to build a parser, this is the standard chain of calls to prepare the input
40 parser = Identifiers::Parser.new( tokens )
42 parser.document
44 parser.reported_errors.should be_empty
45 parser.identifiers.should == %w(blah_de_blah)
52 parser = Identifiers::Parser.new( lexer
    [all...]
  /external/chromium_org/base/test/expectations/
parser_unittest.cc 5 #include "base/test/expectations/parser.h"
13 using test_expectations::Parser;
16 public Parser::Delegate {
38 Parser(this,
56 Parser(this, "BUG [ Win-XP Mac ] OhMy.MeOhMy = Failure").Parse();
77 Parser(this,
100 Parser(this,
126 Parser(this,
157 Parser(this, " BUG [Linux] Weird = Skip ").Parse();
179 Parser(this, kErrors[i]).Parse()
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
toplevel.ml 22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
toplevel.ml 22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
toplevel.ml 22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
toplevel.ml 22 let e = Parser.parse_definition stream in
26 let e = Parser.parse_extern stream in
31 let e = Parser.parse_toplevel stream in
  /system/core/libutils/
PropertyMap.cpp 25 // Enables debug output for the parser.
28 // Enables debug output for parser performance.
134 Parser parser(map, tokenizer);
135 status = parser.parse();
154 // --- PropertyMap::Parser ---
156 PropertyMap::Parser::Parser(PropertyMap* map, Tokenizer* tokenizer) :
160 PropertyMap::Parser::~Parser() {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Parser.cs 37 * A parser for TokenStreams. "parser grammars" result in a subclass
41 public class Parser : BaseRecognizer {
44 public Parser(ITokenStream input)
50 public Parser(ITokenStream input, RecognizerSharedState state)
51 : base(state) // share the state object with another parser
87 /** <summary>Gets or sets the token stream; resets the parser upon a set.</summary> */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 38 * A parser for TokenStreams. "parser grammars" result in a subclass
42 public class Parser : BaseRecognizer
46 public Parser( ITokenStream input )
53 public Parser( ITokenStream input, RecognizerSharedState state )
54 : base(state) // share the state object with another parser
96 /** <summary>Gets or sets the token stream; resets the parser upon a set.</summary> */
  /external/clang/lib/ASTMatchers/Dynamic/
Parser.cpp 1 //===--- Parser.cpp - Matcher expression parser -----*- C++ -*-===//
11 /// \brief Recursive parser implementation for the matcher expression grammar.
18 #include "clang/ASTMatchers/Dynamic/Parser.h"
27 /// \brief Simple structure to hold information for one token from the parser.
28 struct Parser::TokenInfo {
53 const char* const Parser::TokenInfo::ID_Bind = "bind";
55 /// \brief Simple tokenizer for the parser.
56 class Parser::CodeTokenizer {
229 Parser::Sema::~Sema() {
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
SAXParserImpl.java 24 import org.xml.sax.Parser;
32 * A SAX parser based on Expat.
38 private Parser parser; field in class:SAXParserImpl
71 public Parser getParser() {
72 if (parser == null) {
73 parser = new XMLReaderAdapter(reader);
76 return parser;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
UnstructuredField.java 43 public static class Parser implements FieldParser {

Completed in 2055 milliseconds

1 23 4 5 6 7 8 91011>>