| /external/antlr/antlr-3.4/runtime/Python/tests/ |
| t059debug.py | 92 parser = parserCls(tStream, dbg=listener, port=port, **parser_args) 93 getattr(parser, grammarEntry)()
|
| /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/ |
| debug-mode.rb | 80 parser = grammar_module::Parser.new( tokens, options ) 81 parser.send( rule ) 90 example 'basic debug-mode parser using a RecordEventListener' do 113 example 'debug-mode parser using a socket proxy to transmit events' do 143 example 'debug-mode parser events triggered by recognition errors' do 180 example 'debug-mode parser events triggered by semantic predicate evaluation' do 213 example 'debug-mode parser events triggered by recognizing a (...)+ block' do 284 example 'debug-mode parser events triggered by recognizing a (...)* block' do 354 example 'debug-mode parser events triggered by a mismatched set error' d [all...] |
| /external/chromium_org/chrome/browser/resources/net_internals/ |
| cros_log_entry.js | 21 // Log input text parser
|
| /external/chromium_org/components/autofill/core/browser/ |
| autofill_download.cc | 316 buzz::XmlParser parser(&parse_handler); 317 parser.Parse(response_body.data(), response_body.length(), true);
|
| /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/ |
| parser.py | 56 """Class for errors from the parser.""" 65 class Parser(object): 317 parser = Parser(lexer, source, filename) 320 yacc.yacc(module=parser, debug=0, write_tables=0)
|
| /external/chromium_org/third_party/markdown/ |
| __init__.py | 175 """ Build the parser from the various parts. """ 177 self.parser = build_block_parser(self) 324 root = self.parser.parseDocument(self.lines).getroot() 433 necessary extensions and runs the parser on the given text.
|
| /external/chromium_org/third_party/protobuf/src/google/protobuf/ |
| text_format.cc | 174 // returning false. Borrowed from parser.cc (Thanks Kenton!). 177 class TextFormat::Parser::ParserImpl { 879 explicit ParserErrorCollector(TextFormat::Parser::ParserImpl* parser) : 880 parser_(parser) { } 894 TextFormat::Parser::ParserImpl* parser_; [all...] |
| /external/chromium_org/v8/test/mjsunit/harmony/regress/ |
| regress-crbug-248025.js | 33 // Test that the pre-parser does not crash when the expected contextual
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-1130.js | 28 // Test that parser errors can be build up correctly even in the presence
|
| regress-1132.js | 28 // Test the case when exception is thrown from the parser when lazy
|
| regress-937896.js | 28 // This used to crash because the label collector in the parser didn't
|
| /external/clang/lib/Tooling/ |
| JSONCompilationDatabase.cpp | 27 /// \brief A parser for escaped strings of command line arguments. 116 CommandLineArgumentParser parser(EscapedCommandLine); 117 return parser.parse();
|
| /external/deqp/framework/platform/android/ |
| tcuTestLogParserJNI.cpp | 360 TestLogParser* parser = (TestLogParser*)nativePointer; local 365 parser->parse(listener, (const char*)logData, (size_t)size);
|
| /external/glide/gradle/wrapper/ |
| gradle-wrapper.jar | |
| /frameworks/av/drm/mediadrm/plugins/clearkey/tests/ |
| InitDataParserUnittest.cpp | 43 InitDataParser parser; local 44 return parser.parse(initData, initDataType, licenseRequest);
|
| /frameworks/base/graphics/java/android/graphics/drawable/ |
| GradientDrawable.java | [all...] |
| /frameworks/support/gradle/wrapper/ |
| gradle-wrapper.jar | |
| /frameworks/testing/espresso/gradle/wrapper/ |
| gradle-wrapper.jar | |
| /packages/apps/Exchange/src/com/android/exchange/adapter/ |
| Parser.java | 39 * Extremely fast and lightweight WBXML parser, implementing only the subset of WBXML that 55 public abstract class Parser { 76 // The input stream for this parser 148 * Generated when the parser comes to EOF prematurely during parsing (i.e. in error) 155 * An EmptyStreamException is an EofException that occurs reading the first byte in the parser's 182 public Parser(final InputStream in) throws IOException { 189 * @param parser an existing, initialized parser 192 public Parser(final Parser parser) throws IOException [all...] |
| /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/ |
| AST.stg | 34 <@super.imports()><if(!TREE_PARSER)><! tree parser would already have imported !> Antlr.Runtime.Tree,<\n><endif> 219 <! if tree parser and rewrite=true !> 229 <! if parser or rewrite!=true, we need to set result !>
|
| /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/ |
| AST.stg | 169 <! if tree parser and rewrite=true !> 179 <! if parser or tree-parser && rewrite!=true, we need to set result !>
|
| /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
| AST.stg | 316 <! if tree parser and rewrite=true !> 326 <! if parser or tree-parser && rewrite!=true, we need to set result !>
|
| /external/chromium_org/ppapi/generators/ |
| idl_parser.py | 6 """ Parser for PPAPI IDL """ 9 # IDL Parser 11 # The parser is uses the PLY yacc library to build a set of parsing rules based 19 # The parser generates a tree by recursively matching sets of items against 122 # IDL Parser 124 # The Parser inherits the from the Lexer to provide PLY with the tokenizing 142 # The parser uses the following conventions: 868 # Parser Errors 870 # p_error is called whenever the parser can not find a pattern match for 873 # p_<type>_error functions defined above are called. This allows the parser [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/inspector/ |
| DOMPatchSupport.cpp | 45 #include "core/html/parser/HTMLDocumentParser.h" 48 #include "core/xml/parser/XMLDocumentParser.h" 94 RefPtrWillBeRawPtr<DocumentParser> parser = nullptr; local 96 parser = HTMLDocumentParser::create(toHTMLDocument(*newDocument), false); 98 parser = XMLDocumentParser::create(*newDocument, 0); 99 parser->insert(markup); // Use insert() so that the parser will not yield. 100 parser->finish(); 101 parser->detach(); 150 continue; // HTML5 parser inserts empty <head> tag whenever it parses <body [all...] |
| /external/chromium_org/third_party/libxslt/libxslt/ |
| numbers.c | 637 xmlXPathParserContextPtr parser; local 650 parser = xmlXPathNewParserContext(NULL, context->xpathCtxt); 651 if (parser) { 655 ancestor = xmlXPathNextAncestor(parser, ancestor)) { 669 xmlXPathNextPrecedingSibling(parser, preceding)) { 691 xmlXPathFreeParserContext(parser); [all...] |