OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:xmlreader
(Results
51 - 75
of
208
) sorted by null
1
2
3
4
5
6
7
8
9
/external/chromium_org/chrome/utility/media_galleries/
iphoto_library_parser.cc
35
bool GetPhotoInfoFromDict(
XmlReader
* reader, PhotoInfo* result) {
88
bool ReadStringArray(
XmlReader
* reader, std::set<uint64>* photo_ids) {
113
bool GetAlbumInfoFromDict(
XmlReader
* reader, AlbumInfo* result) {
183
bool ParseAllPhotos(
XmlReader
* reader,
235
XmlReader
reader;
itunes_library_parser.cc
33
bool GetTrackInfoFromDict(
XmlReader
* reader, TrackInfo* result) {
124
XmlReader
reader;
/libcore/luni/src/main/java/javax/xml/parsers/
SAXParser.java
32
import org.xml.sax.
XMLReader
;
37
* Defines the API that wraps an {@link org.xml.sax.
XMLReader
}
40
* replaced by the {@link org.xml.sax.
XMLReader
}. For ease
383
XMLReader
reader = this.getXMLReader();
405
* Returns the {@link org.xml.sax.
XMLReader
} that is encapsulated by the
408
* @return The
XMLReader
that is encapsulated by the
414
public abstract org.xml.sax.
XMLReader
getXMLReader() throws SAXException;
438
* {@link org.xml.sax.
XMLReader
}.
446
* @throws SAXNotRecognizedException When the underlying
XMLReader
does
448
* @throws SAXNotSupportedException When the underlying
XMLReader
[
all
...]
SAXParserFactory.java
183
* org.xml.sax.
XMLReader
.
208
* @exception SAXNotRecognizedException When the underlying
XMLReader
does
210
* @exception SAXNotSupportedException When the underlying
XMLReader
215
* @see org.xml.sax.
XMLReader
#setFeature
224
* implementation of org.xml.sax.
XMLReader
.</p>
231
* @exception SAXNotRecognizedException When the underlying
XMLReader
does not recognize the property name.
232
* @exception SAXNotSupportedException When the underlying
XMLReader
recognizes the property name but doesn't support the property.
234
* @see org.xml.sax.
XMLReader
#getProperty
/external/doclava/src/com/google/doclava/apicheck/
XmlApiFile.java
32
import org.xml.sax.
XMLReader
;
50
XMLReader
xmlreader
= XMLReaderFactory.createXMLReader();
local
52
xmlreader
.setContentHandler(handler);
53
xmlreader
.setErrorHandler(handler);
54
xmlreader
.parse(new InputSource(xmlStream));
/external/chromium_org/third_party/libxml/src/
testReader.c
35
#include <libxml/
xmlreader
.h>
142
printf("%s :
xmlReader
parser support not compiled in\n", argv[0]);
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py
16
xmlreader
-- Base classes and constants which define the SAX 2 API for
22
from
xmlreader
import InputSource
_exceptions.py
108
An
XMLReader
will raise this exception when it is confronted with an
118
An
XMLReader
will raise this exception when a service it cannot
128
An
XMLReader
module (driver) should raise this exception when it
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py
16
xmlreader
-- Base classes and constants which define the SAX 2 API for
22
from
xmlreader
import InputSource
_exceptions.py
108
An
XMLReader
will raise this exception when it is confronted with an
118
An
XMLReader
will raise this exception when a service it cannot
128
An
XMLReader
module (driver) should raise this exception when it
/libcore/luni/src/main/java/org/xml/sax/
Parser.java
23
* been replaced in SAX2 by {@link org.xml.sax.
XMLReader
XMLReader
},
40
* {@link org.xml.sax.
XMLReader
XMLReader
}
EntityResolver.java
24
* {@link org.xml.sax.
XMLReader
#setEntityResolver setEntityResolver}
66
* @see org.xml.sax.
XMLReader
#setEntityResolver
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMManagerDefault.java
53
import org.xml.sax.
XMLReader
;
112
* The cache for
XMLReader
objects to be used if the user did not
113
* supply an
XMLReader
for a SAXSource or supplied a StreamSource.
273
XMLReader
reader = null;
588
* After use of the parser is completed, the releaseXMLReader(
XMLReader
)
592
* @return a SAX2
XMLReader
to use to resolve the inputSource argument.
594
* @return non-null
XMLReader
reference ready to parse.
596
synchronized public
XMLReader
getXMLReader(Source inputSource)
601
XMLReader
reader = (inputSource instanceof SAXSource)
621
* Indicates that the
XMLReader
object is no longer in use for the transform
[
all
...]
IncrementalSAXSource_Filter.java
40
import org.xml.sax.
XMLReader
;
92
private
XMLReader
fXMLReader=null;
137
/** Bind our input streams to an
XMLReader
.
142
public void setXMLReader(
XMLReader
eventsource)
544
* from an
XMLReader
passed to our startReader() method), we can do so
591
// Convenience: Run an
XMLReader
in a thread
594
/** Launch a thread that will run an
XMLReader
's parse() operation within
608
throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_XMLRDR_NOT_BEFORE_STARTPARSE, null)); //"
XMLReader
not before startParse request");
744
org.xml.sax.
XMLReader
theSAXParser=
IncrementalSAXSource.java
79
/** Launch an
XMLReader
's parsing operation, feeding events to this
81
* thread which runs the previously supplied
XMLReader
's parse() operation.
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java
33
import org.xml.sax.
XMLReader
;
456
XMLReader
reader = getReaderForCommandStack(commandStack);
466
XMLReader
reader = getReaderForCommandStack(commandStack);
473
private
XMLReader
getReaderForCommandStack(CommandStack commandStack) throws IOException {
476
XMLReader
reader = parser.getXMLReader();
483
throw new IOException("Error creating
XMLReader
for graph parsing!", e);
/external/chromium_org/third_party/libxml/src/include/libxml/
xmlreader.h
2
* Summary: the
XMLReader
implementation
97
* Structure for an
xmlReader
context.
104
* Pointer to an
xmlReader
context.
/external/libxml2/include/libxml/
xmlreader.h
2
* Summary: the
XMLReader
implementation
97
* Structure for an
xmlReader
context.
104
* Pointer to an
xmlReader
context.
/libcore/luni/src/test/java/libcore/xml/
SaxTest.java
30
import org.xml.sax.
XMLReader
;
188
XMLReader
reader = parser.getXMLReader();
206
XMLReader
reader = parser.getXMLReader();
/external/apache-xml/src/main/java/org/apache/xpath/
SourceTreeManager.java
36
import org.xml.sax.
XMLReader
;
336
* @return a SAX2
XMLReader
to use to resolve the inputSource argument.
341
public static
XMLReader
getXMLReader(Source inputSource, SourceLocator locator)
347
XMLReader
reader = (inputSource instanceof SAXSource)
/external/libxml2/
Android.mk
39
xmlreader
.c \
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXParserImpl.java
68
public
XMLReader
getXMLReader() { return parser; }
/external/chromium_org/tools/gn/secondary/third_party/libxml/
BUILD.gn
72
"src/include/libxml/
xmlreader
.h",
129
"src/
xmlreader
.c",
/external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidator.java
21
import org.xml.sax.
XMLReader
;
141
XMLReader
reader;
/libcore/luni/src/main/java/javax/xml/transform/sax/
SAXTransformerFactory.java
35
* for an
XMLReader
used during a transformation, it should use a URIResolver
37
* the
XMLReader
.</p>
Completed in 5033 milliseconds
1
2
3
4
5
6
7
8
9