HomeSort by relevance Sort by last modified time
    Searched refs:Parser (Results 1 - 25 of 444) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Exchange/assets/
FolderSyncParserTest3.txt 17 [14:02:28] EAS Parser| <FolderSync>
18 [14:02:28] EAS Parser| <FolderStatus>
19 [14:02:28] EAS Parser| FolderStatus: 1
20 [14:02:28] EAS Parser| </FolderStatus>
21 [14:02:28] EAS Parser| <FolderSyncKey>
22 [14:02:28] EAS Parser| FolderSyncKey: 1
23 [14:02:28] EAS Parser| </FolderSyncKey>
24 [14:02:28] EAS Parser| <Changes>
25 [14:02:28] EAS Parser| <Count>
26 [14:02:28] EAS Parser| Count: 27
    [all...]
FolderSyncParserTest.txt 17 [14:02:28] EAS Parser| <FolderSync>
18 [14:02:28] EAS Parser| <FolderStatus>
19 [14:02:28] EAS Parser| FolderStatus: 1
20 [14:02:28] EAS Parser| </FolderStatus>
21 [14:02:28] EAS Parser| <FolderSyncKey>
22 [14:02:28] EAS Parser| FolderSyncKey: 1
23 [14:02:28] EAS Parser| </FolderSyncKey>
24 [14:02:28] EAS Parser| <Changes>
25 [14:02:28] EAS Parser| <Count>
26 [14:02:28] EAS Parser| Count: 27
    [all...]
FolderSyncParserTest2.txt 17 [14:02:28] EAS Parser| <FolderSync>
18 [14:02:28] EAS Parser| <FolderStatus>
19 [14:02:28] EAS Parser| FolderStatus: 1
20 [14:02:28] EAS Parser| </FolderStatus>
21 [14:02:28] EAS Parser| <FolderSyncKey>
22 [14:02:28] EAS Parser| FolderSyncKey: 1
23 [14:02:28] EAS Parser| </FolderSyncKey>
24 [14:02:28] EAS Parser| <Changes>
25 [14:02:28] EAS Parser| <Count>
26 [14:02:28] EAS Parser| Count: 6
    [all...]
  /external/llvm/lib/MC/MCParser/
MCAsmParserExtension.cpp 1 //===-- MCAsmParserExtension.cpp - Asm Parser Hooks -----------------------===//
20 void MCAsmParserExtension::Initialize(MCAsmParser &Parser) {
21 this->Parser = &Parser;
  /external/chromium_org/base/test/expectations/
parser.cc 5 #include "base/test/expectations/parser.h"
11 Parser::Parser(Delegate* delegate, const std::string& input)
20 Parser::~Parser() {
23 void Parser::Parse() {
29 StateFuncPtr state = &Parser::Start;
35 inline bool Parser::HasNext() {
39 Parser::StateFunc Parser::Start()
    [all...]
parser.h 16 // This is the internal parser for test expectations. It parses an input
26 // The parser is implemented as a state machine, with each state returning a
28 class Parser {
30 // The parser will call these methods on its delegate during a Parse()
48 // Creates a new parser for |input| that will send data to |delegate|.
49 Parser(Delegate* delegate, const std::string& input);
50 ~Parser();
52 // Runs the parser of the input string.
63 typedef StateFunc(Parser::*StateFuncPtr)();
75 // The parser state functions. On entry, the parser state is at the beginnin
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
ParserFactory.java 27 Parser newInstance();
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserFactory.java 1 // SAX parser factory.
8 import org.xml.sax.Parser;
22 * SAX1 {@link org.xml.sax.Parser Parser} class. SAX2 applications should use
28 * can use the static methods in this class to allocate a SAX parser
30 * `org.xml.sax.parser' system property or on a string containing the class
33 * <p>Note that the application still requires an XML parser that
37 * {@link org.xml.sax.Parser Parser}
56 * Create a new SAX parser using the `org.xml.sax.parser' system property
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
DefaultFieldParser.java 21 setFieldParser(Field.CONTENT_TRANSFER_ENCODING, new ContentTransferEncodingField.Parser());
22 setFieldParser(Field.CONTENT_TYPE, new ContentTypeField.Parser());
24 final DateTimeField.Parser dateTimeParser = new DateTimeField.Parser();
28 final MailboxListField.Parser mailboxListParser = new MailboxListField.Parser();
32 final MailboxField.Parser mailboxParser = new MailboxField.Parser();
36 final AddressListField.Parser addressListParser = new AddressListField.Parser();
    [all...]
  /external/chromium_org/tools/gn/
parser.h 17 class Parser;
18 typedef scoped_ptr<ParseNode> (Parser::*PrefixFunc)(Token token);
19 typedef scoped_ptr<ParseNode> (Parser::*InfixFunc)(scoped_ptr<ParseNode> left,
31 class Parser {
45 Parser(const std::vector<Token>& tokens, Err* err);
46 ~Parser();
102 FRIEND_TEST_ALL_PREFIXES(Parser, BinaryOp);
103 FRIEND_TEST_ALL_PREFIXES(Parser, Block);
104 FRIEND_TEST_ALL_PREFIXES(Parser, Condition);
105 FRIEND_TEST_ALL_PREFIXES(Parser, Expression)
    [all...]
parser_unittest.cc 10 #include "tools/gn/parser.h"
29 scoped_ptr<ParseNode> result = Parser::Parse(tokens, &err);
47 scoped_ptr<ParseNode> result = Parser::ParseExpression(tokens, &err);
56 // Expects the tokenizer or parser to identify an error at the given line and
65 scoped_ptr<ParseNode> result = Parser::Parse(tokens, &err);
74 // Expects the tokenizer or parser to identify an error at the given line and
83 scoped_ptr<ParseNode> result = Parser::ParseExpression(tokens, &err);
94 TEST(Parser, Literal) {
99 TEST(Parser, BinaryOp) {
118 TEST(Parser, FunctionCall)
    [all...]
parser.cc 5 #include "tools/gn/parser.h"
33 // The top-level for blocks/ifs is recursive descent, the expression parser is
34 // a Pratt parser. The basic idea there is to have the precedences (and
37 // at the top of parser.cc that describes how each token dispatches if it's
46 ParserHelper Parser::expressions_[] = {
48 {&Parser::Literal, NULL, -1}, // INTEGER
49 {&Parser::Literal, NULL, -1}, // STRING
50 {&Parser::Literal, NULL, -1}, // TRUE_TOKEN
51 {&Parser::Literal, NULL, -1}, // FALSE_TOKEN
52 {NULL, &Parser::Assignment, PRECEDENCE_ASSIGNMENT}, // EQUA
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 8 Hashtbl.add Parser.binop_precedence '<' 10;
9 Hashtbl.add Parser.binop_precedence '+' 20;
10 Hashtbl.add Parser.binop_precedence '-' 20;
11 Hashtbl.add Parser.binop_precedence '*' 40; (* highest. *)
  /external/jsilver/src/com/google/streamhtmlparser/
JavascriptParser.java 22 * additional methods on top of {@code Parser} for the time being,
23 * it simply exposes the states in which the Javascript parser may be in.
25 * <p>Note: These are the exact states exposed in the original C++ Parser.
27 public interface JavascriptParser extends Parser {
ParseException.java 22 * @see Parser#parse(String)
33 * from the supplied message and the parser's line and column numbers.
34 * @param parser the {@code Parser} that triggered the exception
37 public ParseException(Parser parser, String msg) {
39 parser.getLineNumber(),
40 parser.getColumnNumber(),
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file.rb 11 require 'antlr3/template/group-file-parser'
17 Parser = GroupFile::Parser
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 10 Hashtbl.add Parser.binop_precedence '<' 10;
11 Hashtbl.add Parser.binop_precedence '+' 20;
12 Hashtbl.add Parser.binop_precedence '-' 20;
13 Hashtbl.add Parser.binop_precedence '*' 40; (* highest. *)
  /frameworks/native/include/input/
VirtualKeyMap.h 60 class Parser {
65 Parser(VirtualKeyMap* map, Tokenizer* tokenizer);
66 ~Parser();
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Parser.js 1 /** A parser for TokenStreams. "parser grammars" result in a subclass
4 org.antlr.runtime.Parser = function(input, state) {
5 org.antlr.runtime.Parser.superclass.constructor.call(this, state);
9 org.antlr.lang.extend(org.antlr.runtime.Parser, org.antlr.runtime.BaseRecognizer, {
12 org.antlr.runtime.Parser.superclass.reset.call(this);
47 /** Set the token stream and reset the parser */
63 org.antlr.runtime.Parser.superclass.traceIn.call(
68 org.antlr.runtime.Parser.superclass.traceOut.call(
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXParserImpl.java 22 import org.ccil.cowan.tagsoup.Parser;
34 final org.ccil.cowan.tagsoup.Parser parser; field in class:SAXParserImpl
39 parser = new org.ccil.cowan.tagsoup.Parser();
45 SAXParserImpl parser = new SAXParserImpl(); local
50 parser.setFeature((String) entry.getKey(), ((Boolean) entry.getValue()).booleanValue());
53 return parser;
62 public org.xml.sax.Parser getParser()
65 return new SAX1ParserAdapter(parser);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.h 43 class Parser;
60 class Parser {
61 WTF_MAKE_NONCOPYABLE(Parser);
64 Parser();
65 ~Parser();
72 static Parser* current() { return currentParser; }
114 static Parser* currentParser;
134 int xpathyyparse(WebCore::XPath::Parser*);
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 28 // Enables debug output for the parser.
31 // Enables debug output for parser performance.
65 Parser parser(map, tokenizer);
66 status = parser.parse();
85 // --- VirtualKeyMap::Parser ---
87 VirtualKeyMap::Parser::Parser(VirtualKeyMap* map, Tokenizer* tokenizer) :
91 VirtualKeyMap::Parser::~Parser() {
    [all...]
  /external/deqp/executor/
xeXMLParser.hpp 23 * \brief XML Parser.
136 class Parser
142 Parser (void);
143 ~Parser (void);
145 void clear (void); //!< Resets parser to initial state.
167 Parser (const Parser& other);
168 Parser& operator= (const Parser& other);
222 inline int Parser::getDataSize (void) cons
    [all...]
xeTestCaseListParser.hpp 23 * \brief Test case list parser.
50 xml::Parser m_xmlParser;
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 9 * The super class of the generated parser. It is extended by the generated
12 * This class contains any helper functions used within the parser
21 extends Parser
25 * Create a new parser instance, pre-supplying the input token stream.
34 * Create a new parser instance, pre-supplying the input token stream

Completed in 475 milliseconds

1 2 3 4 5 6 7 8 91011>>