HomeSort by relevance Sort by last modified time
    Searched full:parser (Results 101 - 125 of 2830) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/preference/
GenericInflater.java 232 * @param parser XML dom node containing the description of the
239 public T inflate(XmlPullParser parser, P root) {
240 return inflate(parser, root, root != null);
261 XmlResourceParser parser = getContext().getResources().getXml(resource); local
263 return inflate(parser, root, attachToRoot);
265 parser.close();
278 * @param parser XML dom node containing the description of the
290 public T inflate(XmlPullParser parser, P root,
293 final AttributeSet attrs = Xml.asAttributeSet(parser);
300 while ((type = parser.next()) != parser.START_TA
    [all...]
  /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/webkit/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/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/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.
  /dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderFactoryTest.java 411 // Expected, since Android doesn't have a validating parser.
472 DocumentBuilder parser = null; local
475 parser = dbf.newDocumentBuilder();
477 parser.setErrorHandler(errorHandler);
479 Document document = parser.parse(getClass().getResourceAsStream(
490 parser.setErrorHandler(null);
503 parser = dbf.newDocumentBuilder();
505 parser.setErrorHandler(errorHandler);
507 Document document = parser.parse(getClass().getResourceAsStream(
520 parser.setErrorHandler(null)
541 DocumentBuilder parser = null; local
664 DocumentBuilder parser = dbf.newDocumentBuilder(); local
687 DocumentBuilder parser = dbf.newDocumentBuilder(); local
719 DocumentBuilder parser = dbf.newDocumentBuilder(); local
738 DocumentBuilder parser = dbf.newDocumentBuilder(); local
768 DocumentBuilder parser = dbf.newDocumentBuilder(); local
787 DocumentBuilder parser = dbf.newDocumentBuilder(); local
    [all...]
  /external/bison/doc/
bison.1 3 bison \- GNU Project parser generator (yacc replacement)
29 .B \-\-no-parser
69 is a parser generator in the style of
90 would produce the generated parser in a file named
142 If the parser output file is named
206 preprocessor commands in the parser file.
209 puts them in the parser file so that the C compiler
212 parser file, treating it an independent source file in its own right.
218 .B \-\-no-parser
219 Do not generate the parser code into the output; generate onl
    [all...]
  /packages/apps/IM/libwbxml/test/
imps_parser_test.cpp 444 WbxmlParser parser(0);
445 ASSERT_EQUAL_INT(WBXML_STATUS_OK, parser.parse(simple_wbxml,
451 WbxmlParser parser(0);
453 parser.setContentHandler(&handler);
454 ASSERT_EQUAL_INT(WBXML_STATUS_OK, parser.parse(simple_wbxml,
461 WbxmlParser parser(0);
463 parser.setContentHandler(&handler);
464 ASSERT_EQUAL_INT(WBXML_STATUS_OK, parser.parse(simple_wbxml,
471 WbxmlParser parser(0);
473 parser.setContentHandler(&handler)
    [all...]
  /external/freetype/src/cff/
cffparse.c 5 /* CFF token stream parser (body) */
41 cff_parser_init( CFF_Parser parser,
46 FT_MEM_ZERO( parser, sizeof ( *parser ) );
48 parser->top = parser->stack;
49 parser->object_code = code;
50 parser->object = object;
51 parser->library = library;
443 cff_parse_font_matrix( CFF_Parser parser )
    [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/helpers/
ParserFactoryTest.java 50 System.clearProperty("org.xml.sax.parser");
61 System.setProperty("org.xml.sax.parser", "foo.bar.SAXParser");
71 System.setProperty("org.xml.sax.parser",
82 System.setProperty("org.xml.sax.parser",
92 // Non-Parser class
93 System.setProperty("org.xml.sax.parser",
104 System.setProperty("org.xml.sax.parser",
152 // Non-Parser class
  /external/opencore/android/
Android.mk 17 $(PV_TOP)/fileformats/mp4/parser/include \
24 $(PV_TOP)/fileformats/pvx/parser/include \
  /external/skia/src/svg/
SkSVGDefs.cpp 30 void SkSVGDefs::translate(SkSVGParser& parser, bool defState) {
31 INHERITED::translate(parser, defState);
SkSVGFeColorMatrix.cpp 30 void SkSVGFeColorMatrix::translate(SkSVGParser& parser, bool defState) {
31 INHERITED::translate(parser, defState);
SkSVGFilter.cpp 31 void SkSVGFilter::translate(SkSVGParser& parser, bool defState) {
32 // INHERITED::translate(parser, defState);
SkSVGG.cpp 22 void SkSVGG::translate(SkSVGParser& parser, bool defState) {
23 INHERITED::translate(parser, defState);
SkSVGMask.cpp 39 void SkSVGMask::translate(SkSVGParser& parser, bool defState) {
40 INHERITED::translate(parser, defState);
SkSVGSymbol.cpp 27 void SkSVGSymbol::translate(SkSVGParser& parser, bool defState) {
28 INHERITED::translate(parser, defState);
  /external/webkit/WebCore/xml/
XPathParser.cpp 53 Parser* Parser::currentParser = 0;
131 bool Parser::isOperatorContext() const
147 void Parser::skipWS()
153 Token Parser::makeTokenAndAdvance(int code, int advance)
159 Token Parser::makeTokenAndAdvance(int code, NumericOp::Opcode val, int advance)
165 Token Parser::makeTokenAndAdvance(int code, EqTestOp::Opcode val, int advance)
172 char Parser::peekAheadHelper()
182 char Parser::peekCurHelper()
192 Token Parser::lexString(
    [all...]
  /external/webkit/WebKitTools/BuildSlaveSupport/
test-result-archive 33 parser = optparse.OptionParser("usage: %prog [options] [action]")
34 parser.add_option("--platform", dest="platform")
35 parser.add_option("--debug", action="store_const", const="debug", dest="configuration")
36 parser.add_option("--release", action="store_const", const="release", dest="configuration")
38 options, (action, ) = parser.parse_args()
40 parser.error("Platform is required")
42 parser.error("Configuration is required")
44 parser.error("Action is required")
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyParser.c 35 * \brief KEY parser module implementation.
42 * MODULE: KEY parser *
43 * PURPOSE: KEY parser implementation *
60 * Function - Init KEY Parser module.
80 /* allocate key parser context memory */
94 * Function - Init KEY Parser module.
112 /* free key parser context memory */
120 * Function - Init KEY Parser module.
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTreeConstants.java 1 /* Generated By:JJTree: Do not edit this line. /Users/jason/Projects/apache-mime4j-0.3/target/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser/AddressListParserTreeConstants.java */
3 package org.apache.james.mime4j.field.address.parser;
AddressListParserVisitor.java 1 /* Generated By:JJTree: Do not edit this line. /Users/jason/Projects/apache-mime4j-0.3/target/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser/AddressListParserVisitor.java */
3 package org.apache.james.mime4j.field.address.parser;
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
keyParser.c 35 * \brief KEY parser module implementation.
42 * MODULE: KEY parser *
43 * PURPOSE: KEY parser implementation *
60 * Function - Init KEY Parser module.
80 /* allocate key parser context memory */
94 * Function - Init KEY Parser module.
112 /* free key parser context memory */
120 * Function - Init KEY Parser module.
  /external/bluetooth/bluez/rfcomm/
Android.mk 7 parser.c \
  /external/icu4c/tools/genrb/
parse.h 26 /* One time parser initalisation */

Completed in 228 milliseconds

1 2 3 45 6 7 8 91011>>