HomeSort by relevance Sort by last modified time
    Searched refs:SAXException (Results 76 - 100 of 318) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/sax/java/android/sax/
RootElement.java 21 import org.xml.sax.SAXException;
111 Attributes attributes) throws SAXException {
141 throws SAXException {
171 throws SAXException {
179 throws SAXException {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 22 import org.xml.sax.SAXException;
71 * @exception SAXException If the embedded driver
76 throws SAXException
85 SAXException("Cannot find SAX1 driver class " +
89 SAXException("SAX1 driver class " +
94 SAXException("SAX1 driver class " +
99 SAXException("SAX1 driver class " +
104 SAXException("System property org.xml.sax.parser not specified");
371 * @exception SAXException If there is a problem
377 throws IOException, SAXException
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 32 import org.xml.sax.SAXException;
246 throws SAXException {
264 throw new SAXException("Unknown XML element '" + localName + "'!");
278 private void addImportCommand(Attributes attributes) throws SAXException {
283 private void addLibraryCommand(Attributes attributes) throws SAXException {
354 private void addVarCommand(Attributes attributes) throws SAXException {
360 private void beginGraph() throws SAXException {
362 throw new SAXException("Found more than one graph element in XML!");
371 private void beginFilter(Attributes attributes) throws SAXException {
381 private void addFilterInput(Attributes attributes) throws SAXException {
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderTest.java 28 import org.xml.sax.SAXException;
92 public Document parse(InputSource is) throws SAXException, IOException {
160 } catch (SAXException sax) {
161 fail("Unexpected SAXException " + sax.toString());
224 public void testGetBaseURI() throws IOException, SAXException {
253 } catch (SAXException sax) {
254 fail("Unexpected SAXException " + sax.toString());
265 } catch (SAXException sax) {
266 fail("Unexpected SAXException " + sax.toString());
275 } catch (SAXException sax)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 93 throws org.xml.sax.SAXException
142 public void startNonText(StylesheetHandler handler) throws org.xml.sax.SAXException
159 throws org.xml.sax.SAXException
178 throws org.xml.sax.SAXException
199 throws org.xml.sax.SAXException
217 throws org.xml.sax.SAXException
234 throws org.xml.sax.SAXException
248 throws org.xml.sax.SAXException
266 throws org.xml.sax.SAXException
288 throws org.xml.sax.SAXException
    [all...]
XSLTAttributeDef.java 508 * @throws org.xml.sax.SAXException which will wrap a
515 throws org.xml.sax.SAXException
526 throw new org.xml.sax.SAXException(te);
542 * @throws org.xml.sax.SAXException.
546 throws org.xml.sax.SAXException
556 throw new org.xml.sax.SAXException(te);
575 * @throws org.xml.sax.SAXException if the string is not a length of 1.
579 throws org.xml.sax.SAXException
595 throw new org.xml.sax.SAXException(te);
624 throws org.xml.sax.SAXException
    [all...]
ProcessorStylesheetElement.java 61 throws org.xml.sax.SAXException
112 throw new org.xml.sax.SAXException(te);
141 throws org.xml.sax.SAXException
ProcessorCharacters.java 47 public void startNonText(StylesheetHandler handler) throws org.xml.sax.SAXException
71 throw new org.xml.sax.SAXException(te);
105 * @throws org.xml.sax.SAXException Any SAX exception, possibly
111 throws org.xml.sax.SAXException
144 throws org.xml.sax.SAXException
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SceneLoader.java 57 import org.xml.sax.SAXException;
103 private void checkTopNode(String topNode) throws SAXException{
105 throw new SAXException("dotScene parse error: Expected parent node to be " + topNode);
109 private Quaternion parseQuat(Attributes attribs) throws SAXException{
144 private void parseLightNormal(Attributes attribs) throws SAXException {
155 private void parseLightAttenuation(Attributes attribs) throws SAXException {
183 private void parseLightSpotLightRange(Attributes attribs) throws SAXException{
190 throw new SAXException("dotScene parse error: spotLightRange "
199 private void parseLight(Attributes attribs) throws SAXException {
201 throw new SAXException("dotScene parse error: light can only appear under a node")
    [all...]
  /prebuilts/devtools/tools/lib/
dvlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/dvlib/22.2.0/
dvlib-22.2.0.jar 
  /prebuilts/tools/common/m2/internal/xerces/xmlParserAPIs/2.6.2/
xmlParserAPIs-2.6.2.jar 
  /prebuilts/tools/common/m2/internal/xml-apis/xml-apis/1.0.b2/
xml-apis-1.0.b2.jar 
  /prebuilts/tools/common/asm-tools/
asm-xml-4.0.jar 
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DexDepsXmlHandler.java 20 import org.xml.sax.SAXException;
50 throws SAXException {
69 public void endElement(String uri, String localName, String name) throws SAXException {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXScanner.java 32 import org.xml.sax.SAXException;
45 public void scan(Reader r, ScanHandler h) throws IOException, SAXException {
118 public static void main(String[] argv) throws IOException, SAXException {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
ParserAdapterTest.java 32 import org.xml.sax.SAXException;
92 } catch (SAXException e) {
122 } catch (SAXException e) {
194 } catch (SAXException e) {
211 } catch (SAXException e) {
240 } catch (SAXException e) {
252 } catch (SAXException e) {
268 } catch (SAXException e) {
287 } catch (SAXException e) {
300 } catch (SAXException e)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 26 import org.xml.sax.SAXException;
80 public void parse(InputSource input) throws SAXException, IOException {
85 public void parse(String systemId) throws SAXException, IOException {
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 69 public void traverse(int pos) throws org.xml.sax.SAXException
83 * @throws org.xml.sax.SAXException
85 protected void endNode(int node) throws org.xml.sax.SAXException
102 protected void startNode(int node) throws org.xml.sax.SAXException
152 throw new org.xml.sax.SAXException(te);
  /frameworks/base/core/java/android/util/
Xml.java 28 import org.xml.sax.SAXException;
53 throws SAXException {
68 throws IOException, SAXException {
79 ContentHandler contentHandler) throws IOException, SAXException {
  /libcore/dom/src/test/java/org/w3c/domts/
XercesHTML2DocumentBuilderFactory.java 28 import org.xml.sax.SAXException;
100 catch (SAXException ex) {
130 public void startDocument() throws SAXException {
134 public void endDocument() throws SAXException {
142 Attributes attributes) throws SAXException {
148 SAXException {
153 SAXException {
158 SAXException {
163 SAXException {
XercesHTMLDocumentBuilderFactory.java 28 import org.xml.sax.SAXException;
100 catch (SAXException ex) {
130 public void startDocument() throws SAXException {
134 public void endDocument() throws SAXException {
142 Attributes attributes) throws SAXException {
148 SAXException {
153 SAXException {
158 SAXException {
163 SAXException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 27 import org.xml.sax.SAXException;
75 * @throws SAXException
78 public void error(SAXParseException exception) throws SAXException {
85 * @throws SAXException
88 public void fatalError(SAXParseException exception) throws SAXException {
95 * @throws SAXException
98 public void warning(SAXParseException exception) throws SAXException {
  /cts/tests/tests/util/src/android/util/cts/
XmlEncodingTest.java 30 import org.xml.sax.SAXException;
99 } catch (SAXException e) {
131 } catch (SAXException e) {
163 } catch (SAXException e) {
195 } catch (SAXException e) {
206 public void characters(char[] ch, int start, int length) throws SAXException {
212 public void endDocument() throws SAXException {
216 public void endElement(String uri, String localName, String name) throws SAXException {
223 public void endPrefixMapping(String prefix) throws SAXException {
227 public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 27 import org.xml.sax.SAXException;
220 catch(SAXException se)

Completed in 549 milliseconds

1 2 34 5 6 7 8 91011>>