/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(); 101 FRIEND_TEST_ALL_PREFIXES(Parser, BinaryOp); 102 FRIEND_TEST_ALL_PREFIXES(Parser, Block); 103 FRIEND_TEST_ALL_PREFIXES(Parser, Condition); 104 FRIEND_TEST_ALL_PREFIXES(Parser, Expression) [all...] |
parser.cc | 5 #include "tools/gn/parser.h" 33 // parser is a Pratt parser. The basic idea there is to have the precedences 36 // expressions_ at the top of parser.cc that describes how each token 45 ParserHelper Parser::expressions_[] = { 47 {&Parser::Literal, NULL, -1}, // INTEGER 48 {&Parser::Literal, NULL, -1}, // STRING 49 {&Parser::Literal, NULL, -1}, // TRUE_TOKEN 50 {&Parser::Literal, NULL, -1}, // FALSE_TOKEN 51 {NULL, &Parser::Assignment, PRECEDENCE_ASSIGNMENT}, // EQUA [all...] |
parser_unittest.cc | 10 #include "tools/gn/parser.h" 29 scoped_ptr<ParseNode> result = Parser::Parse(tokens, &err); 45 scoped_ptr<ParseNode> result = Parser::ParseExpression(tokens, &err); 54 // Expects the tokenizer or parser to identify an error at the given line and 63 scoped_ptr<ParseNode> result = Parser::Parse(tokens, &err); 72 // Expects the tokenizer or parser to identify an error at the given line and 81 scoped_ptr<ParseNode> result = Parser::ParseExpression(tokens, &err); 92 TEST(Parser, Literal) { 97 TEST(Parser, BinaryOp) { 116 TEST(Parser, FunctionCall) [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(),
|
Parser.java | 20 * Defines essential functionality that every parser we implement 26 * parser for escaping purposes. 29 * of the parser to better support conditional processing. 31 public interface Parser { 38 * Tell the parser to process the provided {@code char}. Throws exception 47 * Tell the parser to process the provided {@code String}. Throws exception 56 * Reset the parser back to its initial default state. 61 * Returns the current state of the parser. May be {@link #STATE_ERROR} 62 * if the parser encountered an error. Such an error may be recoverable 66 * @return current state of the parser [all...] |
/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...] |
/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/llvm/lib/Target/Mips/AsmParser/ |
MipsAsmParser.cpp | 64 MCAsmParser &Parser; 200 MipsAsmParser(MCSubtargetInfo &sti, MCAsmParser &parser) 201 : MCTargetAsmParser(), STI(sti), Parser(parser) { 206 MCAsmParser &getParser() const { return Parser; } 207 MCAsmLexer &getLexer() const { return Parser.getLexer(); } 909 const AsmToken &Tok = Parser.getTok(); 924 SMLoc S = Parser.getTok().getLoc(); 932 Parser.getTok().getLoc())); 933 Parser.Lex(); // Eat register token [all...] |
/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
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
__init__.py | 26 'Parser', 41 'parser', 49 # Some convenience routines. Don't import Parser and Message as side-effects 55 Optional _class and strict are passed to the Parser constructor. 57 from email.parser import Parser 58 return Parser(*args, **kws).parsestr(s) 64 Optional _class and strict are passed to the Parser constructor. 66 from email.parser import Parser [all...] |