OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:sax
(Results
1 - 25
of
105
) sorted by null
1
2
3
4
5
/frameworks/base/sax/java/android/sax/
ElementListener.java
17
package android.
sax
;
EndElementListener.java
17
package android.
sax
;
EndTextElementListener.java
17
package android.
sax
;
StartElementListener.java
17
package android.
sax
;
19
import org.xml.
sax
.Attributes;
TextElementListener.java
17
package android.
sax
;
BadXmlException.java
17
package android.
sax
;
19
import org.xml.
sax
.SAXParseException;
20
import org.xml.
sax
.Locator;
/libcore/luni/src/main/java/org/xml/sax/
SAXNotRecognizedException.java
7
package org.xml.
sax
;
21
* unrecognized feature or property identifier;
SAX
applications and
24
* @since
SAX
2.0
27
* @see org.xml.
sax
.SAXNotSupportedException
SAXNotSupportedException.java
7
package org.xml.
sax
;
24
* @since
SAX
2.0
27
* @see org.xml.
sax
.SAXNotRecognizedException
EntityResolver.java
0
//
SAX
entity resolver.
6
package org.xml.
sax
;
21
* <p>If a
SAX
application needs to implement customized handling
23
* register an instance with the
SAX
driver using the
24
* {@link org.xml.
sax
.XMLReader#setEntityResolver setEntityResolver}
31
* <p>Many
SAX
applications will not need to implement this interface,
41
* import org.xml.
sax
.EntityResolver;
42
* import org.xml.
sax
.InputSource;
63
* @since
SAX
1.0
66
* @see org.xml.
sax
.XMLReader#setEntityResolve
[
all
...]
DTDHandler.java
0
//
SAX
DTD handler.
6
package org.xml.
sax
;
18
* <p>If a
SAX
application needs information about notations and
20
* interface and registers an instance with the
SAX
parser using
29
* <p>The
SAX
parser may report these events in any order, regardless
34
* (If the {@link org.xml.
sax
.ext.LexicalHandler LexicalHandler} is
45
* @since
SAX
1.0
48
* @see org.xml.
sax
.XMLReader#setDTDHandler
63
* If a system identifier is present, and it is a URL, the
SAX
75
* @exception org.xml.
sax
.SAXException Any SAX exception, possibl
[
all
...]
ErrorHandler.java
0
//
SAX
error handler.
6
package org.xml.
sax
;
10
* Basic interface for
SAX
error handlers.
19
* <p>If a
SAX
application needs to implement customized error
22
* {@link org.xml.
sax
.XMLReader#setErrorHandler setErrorHandler}
32
* <p>For XML processing errors, a
SAX
driver must use this interface
37
* {@link #fatalError fatalError}. In other words, a
SAX
driver class
43
* @since
SAX
1.0
46
* @see org.xml.
sax
.XMLReader#setErrorHandler
47
* @see org.xml.
sax
.SAXParseExceptio
[
all
...]
XMLFilter.java
7
package org.xml.
sax
;
26
* for creating SAX2 filters, by passing on all {@link org.xml.
sax
.EntityResolver
27
* EntityResolver}, {@link org.xml.
sax
.DTDHandler DTDHandler},
28
* {@link org.xml.
sax
.ContentHandler ContentHandler} and {@link org.xml.
sax
.ErrorHandler
31
* @since
SAX
2.0
34
* @see org.xml.
sax
.helpers.XMLFilterImpl
AttributeList.java
0
//
SAX
Attribute List Interface.
6
package org.xml.
sax
;
19
* attributes. Unlike the new {@link org.xml.
sax
.Attributes Attributes}
23
* {@link org.xml.
sax
.DocumentHandler#startElement startElement}
28
* {@link org.xml.
sax
.helpers.AttributeListImpl AttributeListImpl}
34
* <p>There are two ways for the
SAX
application to obtain information
64
* {@link org.xml.
sax
.Attributes Attributes}
66
* @since
SAX
1.0
69
* @see org.xml.
sax
.DocumentHandler#startElement startElement
70
* @see org.xml.
sax
.helpers.AttributeListImpl AttributeListImp
[
all
...]
Locator.java
0
//
SAX
locator interface for document events.
6
package org.xml.
sax
;
10
* Interface for associating a
SAX
event with a document location.
19
* <p>If a
SAX
parser provides location information to the
SAX
22
* handler's {@link org.xml.
sax
.ContentHandler#setDocumentLocator
24
* object to obtain the location of any other
SAX
event
32
* <p>
SAX
parsers are not required to supply a locator, but they are
36
* the {@link org.xml.
sax
.ContentHandler#startDocument startDocument}
40
* @since
SAX
1.
[
all
...]
Parser.java
0
//
SAX
parser interface.
6
package org.xml.
sax
;
13
* Basic interface for
SAX
(Simple API for XML) parsers.
23
* been replaced in SAX2 by {@link org.xml.
sax
.XMLReader XMLReader},
40
* {@link org.xml.
sax
.XMLReader XMLReader}
42
* @since
SAX
1.0
45
* @see org.xml.
sax
.EntityResolver
46
* @see org.xml.
sax
.DTDHandler
47
* @see org.xml.
sax
.DocumentHandler
48
* @see org.xml.
sax
.ErrorHandle
[
all
...]
SAXException.java
0
//
SAX
exception class.
6
package org.xml.
sax
;
9
* Encapsulate a general
SAX
error or warning.
21
* functionality.
SAX
handlers may throw this exception or
30
* {@link org.xml.
sax
.SAXParseException SAXParseException} subclass.</p>
32
* @since
SAX
1.0
35
* @see org.xml.
sax
.SAXParseException
/libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2.java
6
package org.xml.
sax
.ext;
8
import org.xml.
sax
.Attributes;
15
* provided in {@link org.xml.
sax
.ContentHandler#startElement
17
* and the <em>http://xml.org/
sax
/features/use-attributes2</em>
35
* @since
SAX
2.0 (extensions 1.1 alpha)
43
* This helps distinguish two kinds of attributes that
SAX
reports
57
* This helps distinguish two kinds of attributes that
SAX
reports
71
* This helps distinguish two kinds of attributes that
SAX
reports
EntityResolver2.java
1
// EntityResolver2.java - Extended
SAX
entity resolver.
6
package org.xml.
sax
.ext;
9
import org.xml.
sax
.EntityResolver;
10
import org.xml.
sax
.InputSource;
11
import org.xml.
sax
.SAXException;
12
import org.xml.
sax
.XMLReader;
22
* method (in this interface) is used <em>instead of</em> the older (
SAX
1.0)
30
* <p>If a
SAX
application requires the customized handling which this
33
* <em>http://xml.org/
sax
/features/use-entity-resolver2</em> feature flag
52
* if the original
SAX
1.0 style entity resolution method is invoked
[
all
...]
Locator2.java
6
package org.xml.
sax
.ext;
8
import org.xml.
sax
.Locator;
15
* provided in {@link org.xml.
sax
.ContentHandler#setDocumentLocator
18
* <em>http://xml.org/
sax
/features/use-locator2</em> feature
29
* @since
SAX
2.0 (extensions 1.1 alpha)
56
* <p>When an {@link org.xml.
sax
.InputSource InputSource} is used
DeclHandler.java
6
package org.xml.
sax
.ext;
8
import org.xml.
sax
.SAXException;
28
* org.xml.
sax
.DTDHandler DTDHandler} interface.</p>
32
* {@link org.xml.
sax
.ext.LexicalHandler#startDTD startDTD} and the
33
* {@link org.xml.
sax
.ext.LexicalHandler#endDTD endDTD} events.</p>
36
* {@link org.xml.
sax
.XMLReader#setProperty setProperty} method
38
* <code>http://xml.org/
sax
/properties/declaration-handler</code>
41
* {@link org.xml.
sax
.SAXNotRecognizedException SAXNotRecognizedException}
44
* @since
SAX
2.0 (extensions 1.0)
116
* @see org.xml.
sax
.DTDHandler#unparsedEntityDec
[
all
...]
/libcore/luni/src/main/java/org/xml/sax/helpers/
ParserFactory.java
0
//
SAX
parser factory.
6
package org.xml.
sax
.helpers;
8
import org.xml.
sax
.Parser;
12
* Java-specific class for dynamically loading
SAX
parsers.
22
* SAX1 {@link org.xml.
sax
.Parser Parser} class. SAX2 applications should use
23
* {@link org.xml.
sax
.helpers.XMLReaderFactory XMLReaderFactory} instead.</p>
26
* of
SAX
; it is an additional convenience class designed
27
* specifically for Java XML application writers.
SAX
applications
28
* can use the static methods in this class to allocate a
SAX
parser
30
* `org.xml.
sax
.parser' system property or on a string containing the clas
[
all
...]
/libcore/luni/src/main/java/javax/xml/transform/sax/
SAXTransformerFactory.java
20
package javax.xml.transform.
sax
;
26
import org.xml.
sax
.XMLFilter;
29
* This class extends TransformerFactory to provide
SAX
-specific
48
"http://javax.xml.transform.
sax
.SAXTransformerFactory/feature";
56
"http://javax.xml.transform.
sax
.SAXTransformerFactory/feature/xmlfilter";
64
* Get a TransformerHandler object that can process
SAX
70
* @return TransformerHandler ready to transform
SAX
events.
79
* Get a TransformerHandler object that can process
SAX
84
* @return TransformerHandler ready to transform
SAX
events.
93
* Get a TransformerHandler object that can process
SAX
[
all
...]
TemplatesHandler.java
20
package javax.xml.transform.
sax
;
23
import org.xml.
sax
.ContentHandler;
26
* A
SAX
ContentHandler that may be used to process
SAX
36
* which the caller can get once the
SAX
events have been completed.
39
* the
SAX
event process, or null if no Templates object has
TransformerHandler.java
20
package javax.xml.transform.
sax
;
24
import org.xml.
sax
.ContentHandler;
25
import org.xml.
sax
.DTDHandler;
26
import org.xml.
sax
.ext.LexicalHandler;
30
* listens for
SAX
ContentHandler parse events and transforms
/cts/tests/tests/sax/src/android/sax/cts/
RootElementTest.java
17
package android.
sax
.cts;
19
import android.
sax
.RootElement;
Completed in 91 milliseconds
1
2
3
4
5