OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:XmlPullParserException
(Results
1 - 25
of
291
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java
77
* import org.xmlpull.v1.<a href="
XmlPullParserException
.html">
XmlPullParserException
</a>;
84
* throws
XmlPullParserException
, IOException
417
* @exception
XmlPullParserException
If the feature is not supported or can not be set
421
boolean state) throws
XmlPullParserException
;
440
* @exception
XmlPullParserException
If the property is not supported or can not be set
444
Object value) throws
XmlPullParserException
;
468
void setInput(Reader in) throws
XmlPullParserException
;
490
throws
XmlPullParserException
;
538
String replacementText ) throws
XmlPullParserException
;
[
all
...]
XmlPullParserException.java
11
public class
XmlPullParserException
extends Exception {
16
/* public
XmlPullParserException
() {
19
public
XmlPullParserException
(String s) {
24
public
XmlPullParserException
(String s, Throwable thrwble) {
29
public
XmlPullParserException
(String s, int row, int column) {
36
public
XmlPullParserException
(String msg, XmlPullParser parser, Throwable chain) {
XmlPullParserFactory.java
88
public void setFeature(String name, boolean state) throws
XmlPullParserException
{
164
* @throws
XmlPullParserException
if a parser cannot be created which satisfies the
168
public XmlPullParser newPullParser() throws
XmlPullParserException
{
170
if (parserClasses == null) throw new
XmlPullParserException
173
if (parserClasses.size() == 0) throw new
XmlPullParserException
197
throw new
XmlPullParserException
("could not create parser: "+issues);
207
* @throws
XmlPullParserException
if a parser cannot be created which satisfies the
211
public XmlSerializer newSerializer() throws
XmlPullParserException
{
214
throw new
XmlPullParserException
218
throw new
XmlPullParserException
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
BasePullParser.java
21
import org.xmlpull.v1.
XmlPullParserException
;
48
public void setFeature(String name, boolean state) throws
XmlPullParserException
{
55
throw new
XmlPullParserException
("Unsupported feature: " + name);
70
public void setProperty(String name, Object value) throws
XmlPullParserException
{
71
throw new
XmlPullParserException
("setProperty() not supported");
80
public void setInput(Reader in) throws
XmlPullParserException
{
81
throw new
XmlPullParserException
("setInput() not supported");
86
throws
XmlPullParserException
{
87
throw new
XmlPullParserException
("setInput() not supported");
92
throws
XmlPullParserException
{
[
all
...]
/libcore/luni/src/test/java/libcore/xml/
KxmlPullParserDtdTest.java
21
import org.xmlpull.v1.
XmlPullParserException
;
24
@Override XmlPullParser newPullParser() throws
XmlPullParserException
{
/frameworks/base/core/java/android/content/pm/
XmlSerializerAndParser.java
21
import org.xmlpull.v1.
XmlPullParserException
;
29
T createFromXml(XmlPullParser parser) throws IOException,
XmlPullParserException
;
/frameworks/base/services/java/com/android/server/firewall/
FilterFactory.java
20
import org.xmlpull.v1.
XmlPullParserException
;
39
throws IOException,
XmlPullParserException
;
CategoryFilter.java
22
import org.xmlpull.v1.
XmlPullParserException
;
49
throws IOException,
XmlPullParserException
{
52
throw new
XmlPullParserException
("Category name must be specified.",
FilterList.java
21
import org.xmlpull.v1.
XmlPullParserException
;
29
public FilterList readFromXml(XmlPullParser parser) throws IOException,
XmlPullParserException
{
37
protected void readChild(XmlPullParser parser) throws IOException,
XmlPullParserException
{
SenderPermissionFilter.java
22
import org.xmlpull.v1.
XmlPullParserException
;
48
throws IOException,
XmlPullParserException
{
51
throw new
XmlPullParserException
("Permission name must be specified.",
PortFilter.java
23
import org.xmlpull.v1.
XmlPullParserException
;
59
throws IOException,
XmlPullParserException
{
69
throw new
XmlPullParserException
("Invalid port value: " + equalsValue,
80
throw new
XmlPullParserException
(
89
throw new
XmlPullParserException
(
99
throw new
XmlPullParserException
(
/prebuilts/devtools/tools/lib/
kxml2-2.3.0.jar
/prebuilts/misc/common/kxml2/
kxml2-2.3.0.jar
/prebuilts/tools/common/kxml2-tools/
kxml2-2.3.0.jar
/prebuilts/tools/common/m2/repository/net/sf/kxml/kxml2/2.3.0/
kxml2-2.3.0.jar
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeXmlBlockParser.java
24
import org.xmlpull.v1.
XmlPullParserException
;
100
throws
XmlPullParserException
{
107
throw new
XmlPullParserException
("Unsupported feature: " + name);
122
public void setProperty(String name, Object value) throws
XmlPullParserException
{
123
throw new
XmlPullParserException
("setProperty() not supported");
132
public void setInput(Reader in) throws
XmlPullParserException
{
138
throws
XmlPullParserException
{
144
String replacementText) throws
XmlPullParserException
{
145
throw new
XmlPullParserException
(
150
public String getNamespacePrefix(int pos) throws
XmlPullParserException
{
[
all
...]
/frameworks/base/core/java/android/preference/
PreferenceInflater.java
25
import org.xmlpull.v1.
XmlPullParserException
;
70
AttributeSet attrs) throws
XmlPullParserException
{
79
XmlPullParserException
ex = new
XmlPullParserException
(
96
XmlPullParserException
ex = new
XmlPullParserException
(
/cts/tests/tests/widget/src/android/widget/cts/
Gallery_LayoutParamsTest.java
22
import org.xmlpull.v1.
XmlPullParserException
;
34
public void testConstructor() throws
XmlPullParserException
, IOException {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
FakeActionBar.java
21
import org.xmlpull.v1.
XmlPullParserException
;
32
throws
XmlPullParserException
{
TitleBar.java
21
import org.xmlpull.v1.
XmlPullParserException
;
32
throws
XmlPullParserException
{
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ParserFactory.java
22
import org.xmlpull.v1.
XmlPullParserException
;
43
throws
XmlPullParserException
, FileNotFoundException {
49
throws
XmlPullParserException
{
54
throws
XmlPullParserException
{
63
private static KXmlParser instantiateParser(String name) throws
XmlPullParserException
{
75
throws
XmlPullParserException
{
78
throw new
XmlPullParserException
("File " + name + " is too big to be parsed");
120
throw new
XmlPullParserException
("Failed to read " + name, null, e);
/frameworks/base/core/java/android/content/res/
XmlBlock.java
23
import org.xmlpull.v1.
XmlPullParserException
;
84
public void setFeature(String name, boolean state) throws
XmlPullParserException
{
91
throw new
XmlPullParserException
("Unsupported feature: " + name);
102
public void setProperty(String name, Object value) throws
XmlPullParserException
{
103
throw new
XmlPullParserException
("setProperty() not supported");
108
public void setInput(Reader in) throws
XmlPullParserException
{
109
throw new
XmlPullParserException
("setInput() not supported");
111
public void setInput(InputStream inputStream, String inputEncoding) throws
XmlPullParserException
{
112
throw new
XmlPullParserException
("setInput() not supported");
114
public void defineEntityReplacementText(String entityName, String replacementText) throws
XmlPullParserException
{
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
XmlParseUtils.java
22
import org.xmlpull.v1.
XmlPullParserException
;
32
public static class ParseException extends
XmlPullParserException
{
68
throws
XmlPullParserException
, IOException {
76
throws
XmlPullParserException
{
/development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java
20
import org.xmlpull.v1.
XmlPullParserException
;
37
public List<Entry> parse(InputStream in) throws
XmlPullParserException
, IOException {
49
private List<Entry> readFeed(XmlPullParser parser) throws
XmlPullParserException
, IOException {
85
private Entry readEntry(XmlPullParser parser) throws
XmlPullParserException
, IOException {
109
private String readTitle(XmlPullParser parser) throws IOException,
XmlPullParserException
{
117
private String readLink(XmlPullParser parser) throws IOException,
XmlPullParserException
{
133
private String readSummary(XmlPullParser parser) throws IOException,
XmlPullParserException
{
141
private String readText(XmlPullParser parser) throws IOException,
XmlPullParserException
{
153
private void skip(XmlPullParser parser) throws
XmlPullParserException
, IOException {
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java
20
import org.xmlpull.v1.
XmlPullParserException
;
37
public List<Entry> parse(InputStream in) throws
XmlPullParserException
, IOException {
49
private List<Entry> readFeed(XmlPullParser parser) throws
XmlPullParserException
, IOException {
85
private Entry readEntry(XmlPullParser parser) throws
XmlPullParserException
, IOException {
109
private String readTitle(XmlPullParser parser) throws IOException,
XmlPullParserException
{
117
private String readLink(XmlPullParser parser) throws IOException,
XmlPullParserException
{
133
private String readSummary(XmlPullParser parser) throws IOException,
XmlPullParserException
{
141
private String readText(XmlPullParser parser) throws IOException,
XmlPullParserException
{
153
private void skip(XmlPullParser parser) throws
XmlPullParserException
, IOException {
Completed in 722 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>