HomeSort by relevance Sort by last modified time
    Searched full:parser (Results 276 - 300 of 4219) sorted by null

<<11121314151617181920>>

  /external/icu4c/common/unicode/
parseerr.h 40 * some examples of what a parser might produce are the following:
44 * "" "" The parser does not support context
59 * The line on which the error occured. If the parser uses this
70 * this is the offset from the start of the text. If the parser
78 * string if not supported by parser.
85 * Null-terminated. The empty string if not supported by 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;
47 /// Parser. The extension should use the AsmParser interfaces to register its
49 virtual void Initialize(MCAsmParser &Parser);
56 MCAsmParser &getParser() { return *Parser; }
  /external/webkit/Source/JavaScriptCore/icu/unicode/
parseerr.h 36 * some examples of what a parser might produce are the following:
40 * "" "" The parser does not support context
55 * The line on which the error occured. If the parser uses this
66 * this is the offset from the start of the text. If the parser
74 * string if not supported by parser.
81 * Null-terminated. The empty string if not supported by parser.
  /external/webkit/Source/WebCore/icu/unicode/
parseerr.h 36 * some examples of what a parser might produce are the following:
40 * "" "" The parser does not support context
55 * The line on which the error occured. If the parser uses this
66 * this is the offset from the start of the text. If the parser
74 * string if not supported by parser.
81 * Null-terminated. The empty string if not supported by parser.
  /external/webkit/Source/WebKit/mac/icu/unicode/
parseerr.h 36 * some examples of what a parser might produce are the following:
40 * "" "" The parser does not support context
55 * The line on which the error occured. If the parser uses this
66 * this is the offset from the start of the text. If the parser
74 * string if not supported by parser.
81 * Null-terminated. The empty string if not supported by parser.
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.h 21 /* Crash parser descriptor. */
26 * out_handle - Handle to the stream where to print the parser's output.
40 * parser - NdkCrashParser descriptor, created and initialized with a call to
43 void DestroyNdkCrashParser(NdkCrashParser* parser);
47 * parser - NdkCrashParser descriptor, created and initialized with a call to
57 int ParseLine(NdkCrashParser* parser, const char* line);
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorImpl.java 974 final XmlPullParser parser = Xml.newPullParser(); local
975 parser.setInput(fis, "UTF-8");
976 int eventType = parser.getEventType();
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathParser.cpp 53 Parser* Parser::currentParser = 0;
131 bool Parser::isBinaryOperatorContext() const
145 void Parser::skipWS()
151 Token Parser::makeTokenAndAdvance(int code, int advance)
157 Token Parser::makeTokenAndAdvance(int code, NumericOp::Opcode val, int advance)
163 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance)
170 char Parser::peekAheadHelper()
180 char Parser::peekCurHelper()
190 Token Parser::lexString(
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderFactoryTest.java 322 // Expected, since Android doesn't have a validating parser.
377 DocumentBuilder parser = null; local
380 parser = dbf.newDocumentBuilder();
382 parser.setErrorHandler(errorHandler);
384 Document document = parser.parse(getClass().getResourceAsStream(
395 parser.setErrorHandler(null);
408 parser = dbf.newDocumentBuilder();
410 parser.setErrorHandler(errorHandler);
412 Document document = parser.parse(getClass().getResourceAsStream(
425 parser.setErrorHandler(null)
440 DocumentBuilder parser = null; local
543 DocumentBuilder parser = dbf.newDocumentBuilder(); local
566 DocumentBuilder parser = dbf.newDocumentBuilder(); local
592 DocumentBuilder parser = dbf.newDocumentBuilder(); local
611 DocumentBuilder parser = dbf.newDocumentBuilder(); local
635 DocumentBuilder parser = dbf.newDocumentBuilder(); local
654 DocumentBuilder parser = dbf.newDocumentBuilder(); local
    [all...]
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 55 // FIXME: Replace with %parse-param { CSSParser* parser } once we can depend on bison 2.x
56 #define YYPARSE_PARAM parser
57 #define YYLEX_PARAM parser
95 static int cssyylex(YYSTYPE* yylval, void* parser)
97 return static_cast<CSSParser*>(parser)->lex(yylval);
304 static_cast<CSSParser*>(parser)->m_rule = $4;
310 static_cast<CSSParser*>(parser)->m_keyframe = $4;
322 CSSParser* p = static_cast<CSSParser*>(parser);
336 CSSParser* p = static_cast<CSSParser*>(parser);
344 CSSParser* p = static_cast<CSSParser*>(parser);
    [all...]