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

1 2 3 4 5 6 78 91011>>

  /external/opencore/protocols/rtp_payload_parser/rfc_3267/src/
amr_payload_parser_factory.cpp 22 // Implementation of AMR payload parser factory.
34 OSCL_EXPORT_REF void AmrPayloadParserFactory::destroyPayloadParser(IPayloadParser* parser)
36 OSCL_DELETE(parser);
  /external/opencore/protocols/rtp_payload_parser/rfc_3984/src/
h264_payload_parser_factory.cpp 22 // Implementation of H.264 payload parser factory.
34 OSCL_EXPORT_REF void H264PayloadParserFactory::destroyPayloadParser(IPayloadParser* parser)
36 OSCL_DELETE(parser);
  /external/skia/src/svg/
SkSVGElements.h 33 virtual void translate(SkSVGParser& parser, bool defState); \
65 virtual bool onEndElement(SkSVGParser& parser);
69 virtual void translate(SkSVGParser& parser, bool defState);
  /packages/apps/Email/src/org/apache/james/mime4j/field/
AddressListField.java 27 import org.apache.james.mime4j.field.address.parser.ParseException;
47 public static class Parser implements FieldParser {
48 private static Log log = LogFactory.getLog(Parser.class);
ContentTypeField.java 32 import org.apache.james.mime4j.field.contenttype.parser.ContentTypeParser;
33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
34 import org.apache.james.mime4j.field.contenttype.parser.TokenMgrError;
207 public static class Parser implements FieldParser {
208 private static Log log = LogFactory.getLog(Parser.class);
215 ContentTypeParser parser = new ContentTypeParser(new StringReader(body)); local
217 parser.parseAll();
233 final String type = parser.getType();
234 final String subType = parser.getSubType();
237 mimeType = (type + "/" + parser.getSubType()).toLowerCase();
    [all...]
DateTimeField.java 27 import org.apache.james.mime4j.field.datetime.parser.ParseException;
49 public static class Parser implements FieldParser {
50 private static Log log = LogFactory.getLog(Parser.class);
  /cts/tests/tests/content/src/android/content/res/cts/
AssetManagerTest.java 128 XmlResourceParser parser = mAssets.openXmlResourceParser("AndroidManifest.xml"); local
129 assertNotNull(parser);
130 XmlUtils.beginDocument(parser, "manifest");
131 parser = mAssets.openXmlResourceParser(0, "AndroidManifest.xml");
132 assertNotNull(parser);
133 beginDocument(parser, "manifest");
186 private void beginDocument(final XmlPullParser parser,final String firstElementName)
189 while ((type = parser.next()) != XmlPullParser.START_TAG) {
194 assertEquals(firstElementName, parser.getName());
  /dalvik/libcore/xml/src/main/java/org/xml/sax/
ErrorHandler.java 23 * method. The parser will then report all errors and warnings
36 * the parser continue to report additional errors after a call to
60 * <p>The SAX parser must continue to provide normal parsing events
82 * parser would use this callback to report the violation of a
86 * <p>The SAX parser must continue to provide normal parsing
89 * If the application cannot do so, then the parser should report
114 * invoked when the parser has reported a fatalError() or thrown
119 * parser would use this callback to report the violation of a
123 * after the parser has invoked this method, and should continue
  /external/icu4c/tools/toolutil/
flagparser.h 16 * Tiny flag file parser using ICU and intended for use in ICU tests and in build tools.
  /external/opencore/nodes/pvdownloadmanagernode/include/
pvmf_downloadmanager_defs.h 26 //This node uses the extended events reported by the download and parser nodes.
28 //See pvmf_mp4ffparser_events.h for parser node events.
46 // PVMFInfoEndOfData: End of track detected by parser node.
54 //None. Port requests must match the format used by the Mp4 Parser node.
  /external/opencore/nodes/pvmp4ffparsernode/
Android.mk 26 $(PV_TOP)/fileformats/mp4/parser/utils/mp4recognizer/include \
  /external/opencore/nodes/pvmp4ffparsernode/build_opencore/make/
local.mk 13 XINCDIRS += ../../../../fileformats/mp4/parser/utils/mp4recognizer/include
  /external/opencore/protocols/sdp/parser/build/cml2/
rules.cml 10 #Derive Parser configuration
  /external/opencore/pvmi/recognizer/plugins/pvmp3ffrecognizer/build/make/
local.mk 14 XINCDIRS = $(VOB_BASE_DIR)/fileformats/mp3/parser/include $(VOB_BASE_DIR)/pvmi/recognizer/include
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
SimpleNode.java 3 package org.apache.james.mime4j.field.address.parser;
5 public class SimpleNode extends org.apache.james.mime4j.field.address.parser.BaseNode implements Node {
9 protected AddressListParser parser; field in class:SimpleNode
17 parser = p;
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
ProvisionParserTests.java 111 ProvisionParser parser = new ProvisionParser(mTestInputStream, getTestService()); local
112 parser.parseProvisionDocXml(mWapProvisioningDoc1);
113 PolicySet ps = parser.getPolicySet();
124 ProvisionParser parser = new ProvisionParser(mTestInputStream, getTestService()); local
125 parser.parseProvisionDocXml(mWapProvisioningDoc2);
126 PolicySet ps = parser.getPolicySet();
133 ProvisionParser parser = new ProvisionParser(mTestInputStream, getTestService()); local
134 parser.parseProvisionDocXml(mWapProvisioningDoc3);
135 PolicySet ps = parser.getPolicySet();
  /system/core/init/
Android.mk 12 parser.c \
  /external/dbus/bus/
bus.c 30 #include "config-parser.h"
262 BusConfigParser *parser,
284 pidfile = bus_config_parser_get_pidfile (parser);
307 auth_mechanisms_list = bus_config_parser_get_mechanisms (parser);
341 addresses = bus_config_parser_get_addresses (parser);
370 context->type = _dbus_strdup (bus_config_parser_get_type (parser));
371 if (bus_config_parser_get_type (parser) != NULL && context->type == NULL)
377 user = bus_config_parser_get_user (parser);
388 context->fork = bus_config_parser_get_fork (parser);
403 BusConfigParser *parser,
537 BusConfigParser *parser; local
809 BusConfigParser *parser; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TableRow_LayoutParamsTest.java 243 XmlResourceParser parser = null; local
246 parser = mTargetContext.getResources()
250 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
253 String nodeName = parser.getName();
257 int outerDepth = parser.getDepth();
258 while ((type = parser.next()) != XmlPullParser.END_DOCUMENT
259 && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
263 nodeName = parser.getName();
265 outerDepth = parser.getDepth();
266 while ((type = parser.next()) != XmlPullParser.END_DOCUMEN
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
DOM2Helper.java 117 * <p>The application can use this method to instruct the SAX parser
122 * progress (they should create a new Parser instead for each
124 * application may reuse the same Parser object, possibly with a
140 // org.apache.xerces.parsers.DOMParser parser
148 DocumentBuilder parser = builderFactory.newDocumentBuilder(); local
154 parser.setFeature("http://apache.org/xml/features/dom/defer-node-expansion", true);
155 parser.setFeature("http://xml.org/sax/features/namespaces", true);
159 parser.setFeature("http://apache.org/xml/features/dom/defer-node-expansion", false);
162 parser.setFeature("http://apache.org/xml/features/allow-java-encodings", true);
165 parser.setErrorHandler
    [all...]
  /dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 12 * This class is used to create implementations of XML Pull Parser defined in XMPULL V1 API.
15 * (no access to system properties or file system) so name of parser class factory to use
17 * must be passed explicitly. If no name of parser factory was passed (or is null)
46 or parser class names (value:
81 * Set the features to be set when XML Pull Parser is created by this factory.
110 * Specifies that the parser produced by this factory will provide
114 * @param awareness true if the parser produced by this code
137 * Specifies that the parser produced by this factory will be validating
162 * Creates a new instance of a XML Pull Parser
165 * @return A new instance of a XML Pull Parser
    [all...]
  /external/srec/srec/Semproc/src/
ExpressionParser.c 29 * These are handlers for tokens. They modify state of the parser
100 ESR_ReturnCode EP_parse(ExpressionParser* parser, LexicalAnalyzer* lexAnalyzer,
111 CHKLOG(rc, handle_NewStatement(parser));
115 CHKLOG(rc, LA_nextToken(lexAnalyzer, parser->ptokenBuf, &tokenLen));
119 switch (parser->ptokenBuf[0])
122 CHKLOG(rc, handle_OpAssign(parser));
125 CHKLOG(rc, handle_OpConcat(parser));
128 CHKLOG(rc, handle_LBracket(parser));
131 CHKLOG(rc, handle_ParamDelim(parser));
134 CHKLOG(rc, handle_RBracket(parser));
    [all...]
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 113 public static ColorStateList createFromXml(Resources r, XmlPullParser parser)
116 AttributeSet attrs = Xml.asAttributeSet(parser);
119 while ((type=parser.next()) != XmlPullParser.START_TAG
127 return createFromXmlInner(r, parser, attrs);
130 /* Create from inside an XML document. Called on a parser positioned at
134 private static ColorStateList createFromXmlInner(Resources r, XmlPullParser parser,
139 final String name = parser.getName();
145 parser.getPositionDescription() + ": invalid drawable tag " + name);
148 colorStateList.inflate(r, parser, attrs);
171 private void inflate(Resources r, XmlPullParser parser, AttributeSet attrs
    [all...]
  /external/bluetooth/hcidump/parser/
parser.h 52 /* Parser flags */
67 /* Parser filter */
106 extern struct parser_t parser;
114 return !(parser.filter & f);
120 parser.state = 0;
124 if (!parser.state) {
125 if (parser.flags & DUMP_TSTAMP) {
126 if (parser.flags & DUMP_VERBOSE) {
137 parser.state = 1;
147 if (parser.flags & DUMP_NOVENDOR)
    [all...]
  /dalvik/libcore/xml/src/main/java/javax/xml/parsers/
SAXParserFactory.java 31 * obtain a SAX based parser to parse XML documents.
104 * @exception ParserConfigurationException if a parser cannot
114 * Specifies that the parser produced by this code will
118 * @param awareness true if the parser produced by this code will
127 * Specifies that the parser produced by this code will
134 * parser</a> as defined in the XML recommendation.
142 * RELAX NG instead of DTD, you can configure your parser to be
143 * a non-validating parser by leaving the {@link #setValidating(boolean)}
145 * method to associate a schema to a parser.
148 * @param validating true if the parser produced by this code wil
    [all...]

Completed in 254 milliseconds

1 2 3 4 5 6 78 91011>>