Home
last modified time | relevance | path

Searched refs:XmlPullParserException (Results 1 – 14 of 14) sorted by relevance

/libcore/xml/src/main/java/org/xmlpull/v1/
DXmlPullParser.java421 boolean state) throws XmlPullParserException; in setFeature()
444 Object value) throws XmlPullParserException; in setProperty()
468 void setInput(Reader in) throws XmlPullParserException; in setInput()
490 throws XmlPullParserException; in setInput()
538 String replacementText ) throws XmlPullParserException; in defineEntityReplacementText()
564 int getNamespaceCount(int depth) throws XmlPullParserException; in getNamespaceCount()
576 String getNamespacePrefix(int pos) throws XmlPullParserException; in getNamespacePrefix()
585 String getNamespaceUri(int pos) throws XmlPullParserException; in getNamespaceUri()
691 boolean isWhitespace() throws XmlPullParserException; in isWhitespace()
784 boolean isEmptyElementTag() throws XmlPullParserException; in isEmptyElementTag()
[all …]
DXmlPullParserFactory.java54 public void setFeature(String name, boolean state) throws XmlPullParserException { in setFeature()
126 public XmlPullParser newPullParser() throws XmlPullParserException { in newPullParser()
139 private XmlPullParser getParserInstance() throws XmlPullParserException { in getParserInstance()
163 private XmlSerializer getSerializerInstance() throws XmlPullParserException { in getSerializerInstance()
187 private static XmlPullParserException newInstantiationException(String message, in newInstantiationException()
190 return new XmlPullParserException(message); in newInstantiationException()
192 XmlPullParserException exception = new XmlPullParserException(message); in newInstantiationException()
211 public XmlSerializer newSerializer() throws XmlPullParserException { in newSerializer()
220 public static XmlPullParserFactory newInstance () throws XmlPullParserException { in newInstance()
231 throws XmlPullParserException { in newInstance()
DXmlPullParserException.java11 public class XmlPullParserException extends Exception { class
19 public XmlPullParserException(String s) { in XmlPullParserException() method in XmlPullParserException
36 public XmlPullParserException(String msg, XmlPullParser parser, Throwable chain) { in XmlPullParserException() method in XmlPullParserException
/libcore/luni/src/test/java/libcore/xml/
DXmlPullParserFactoryTest.java35 import org.xmlpull.v1.XmlPullParserException;
65 } catch (XmlPullParserException expected) { in testOverriding_emptyClassList()
71 } catch (XmlPullParserException expected) { in testOverriding_emptyClassList()
253 public void setFeature(String name, boolean state) throws XmlPullParserException { in setFeature()
260 public void setProperty(String name, Object value) throws XmlPullParserException { in setProperty()
267 public void setInput(Reader in) throws XmlPullParserException { in setInput()
271 throws XmlPullParserException { in setInput()
279 throws XmlPullParserException { in defineEntityReplacementText()
282 public int getNamespaceCount(int depth) throws XmlPullParserException { in getNamespaceCount()
286 public String getNamespacePrefix(int pos) throws XmlPullParserException { in getNamespacePrefix()
[all …]
DKxmlPullParserDtdTest.java21 import org.xmlpull.v1.XmlPullParserException;
24 @Override XmlPullParser newPullParser() throws XmlPullParserException { in newPullParser()
DXmlToSax2DriverTest.java35 import org.xmlpull.v1.XmlPullParserException;
62 } catch (XmlPullParserException e) { in testConstructor()
78 } catch (XmlPullParserException e) { in testConstructor_parametrized()
85 } catch (XmlPullParserException e) { in testConstructor_parametrized()
115 public void testGetSetContentHandler() throws XmlPullParserException { in testGetSetContentHandler()
371 public void testParseSubtree() throws XmlPullParserException, IOException { in testParseSubtree()
461 public void testStartElement() throws XmlPullParserException, IOException, SAXException { in testStartElement()
482 public ExtendsDriver(ContentHandler handler) throws XmlPullParserException { in ExtendsDriver()
DXsltXPathConformanceTestSuite.java62 import org.xmlpull.v1.XmlPullParserException;
116 throws ParserConfigurationException, XmlPullParserException { in XsltXPathConformanceTestSuite()
417 XmlPullParserException { in assertNodesAreEquivalent()
471 throws XmlPullParserException, IOException { in nodeToNormalizedString()
DPullParserDtdTest.java23 import org.xmlpull.v1.XmlPullParserException;
522 } catch (XmlPullParserException expected) { in assertParseFailure()
532 private XmlPullParser newPullParser(String xml) throws XmlPullParserException { in newPullParser()
541 abstract XmlPullParser newPullParser() throws XmlPullParserException; in newPullParser()
DPullParserTest.java23 import org.xmlpull.v1.XmlPullParserException;
658 private void checkNamespacesInOne(XmlPullParser parser) throws XmlPullParserException { in checkNamespacesInOne()
674 private void checkNamespacesInTwo(XmlPullParser parser) throws XmlPullParserException { in checkNamespacesInTwo()
810 } catch (XmlPullParserException expected) { in assertParseFailure()
/libcore/xml/src/main/java/com/android/org/kxml2/io/
DKXmlParser.java34 import org.xmlpull.v1.XmlPullParserException;
194 private boolean adjustNsp() throws XmlPullParserException { in adjustNsp()
303 private void checkRelaxed(String errorMessage) throws XmlPullParserException { in checkRelaxed()
305 throw new XmlPullParserException(errorMessage, this, null); in checkRelaxed()
312 public int next() throws XmlPullParserException, IOException { in next()
316 public int nextToken() throws XmlPullParserException, IOException { in nextToken()
320 private int next(boolean justOneToken) throws IOException, XmlPullParserException { in next()
322 throw new XmlPullParserException("setInput() must be called first.", this, null); in next()
423 throw new XmlPullParserException("Unexpected token", this, null); in next()
428 throw new XmlPullParserException("Unexpected token", this, null); in next()
[all …]
/libcore/xml/src/main/java/org/xmlpull/v1/sax2/
DDriver.java34 import org.xmlpull.v1.XmlPullParserException;
79 public Driver() throws XmlPullParserException { in Driver()
85 public Driver(XmlPullParser pp) throws XmlPullParserException { in Driver()
213 } catch(XmlPullParserException ex) { in setFeature()
242 } catch(XmlPullParserException ex) { in setProperty()
309 } catch (XmlPullParserException ex) { in parse()
330 } catch (XmlPullParserException ex) { in parse()
451 } catch (XmlPullParserException ex) { in parseSubTree()
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DDocumentBuilderImpl.java44 import org.xmlpull.v1.XmlPullParserException;
131 } catch (XmlPullParserException ex) { in parse()
179 int endToken) throws XmlPullParserException, IOException { in parse()
/libcore/
Dnon_openjdk_java_files.bp350 "xml/src/main/java/org/xmlpull/v1/XmlPullParserException.java",
/libcore/api/
Dcurrent.txt21862 …blic void defineEntityReplacementText(String, String) throws org.xmlpull.v1.XmlPullParserException;
21872 method public int getEventType() throws org.xmlpull.v1.XmlPullParserException;
21879 method public int getNamespaceCount(int) throws org.xmlpull.v1.XmlPullParserException;
21880 method public String getNamespacePrefix(int) throws org.xmlpull.v1.XmlPullParserException;
21881 method public String getNamespaceUri(int) throws org.xmlpull.v1.XmlPullParserException;
21888 method public boolean isEmptyElementTag() throws org.xmlpull.v1.XmlPullParserException;
21889 method public boolean isWhitespace() throws org.xmlpull.v1.XmlPullParserException;
21890 method public int next() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
21891 method public int nextTag() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
21892 … method public String nextText() throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
[all …]