HomeSort by relevance Sort by last modified time
    Searched defs:ParseException (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/jsilver/src/com/google/streamhtmlparser/
ParseException.java 24 public class ParseException extends Exception {
27 * Constructs an {@code ParseException} with no detail message.
29 public ParseException() {}
32 * Constructs an {@code ParseException} with a detail message obtained
37 public ParseException(Parser parser, String msg) {
  /external/proguard/src/proguard/
ParseException.java 30 public class ParseException extends Exception {
33 * Constructs a <code>ParseException</code> with <code>null</code>
36 public ParseException() {
41 * Constructs a <code>ParseException</code> with the specified detail
48 public ParseException(String s) {
  /frameworks/base/core/java/android/net/
ParseException.java 23 public class ParseException extends RuntimeException {
26 ParseException(String response) {
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java 24 public class ParseException
26 public ParseException(String message) {
30 public ParseException(Throwable cause) {
34 public ParseException(String message, Throwable cause) {
  /external/apache-http/src/org/apache/http/
ParseException.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/ParseException.java $
50 public class ParseException extends RuntimeException {
55 * Creates a {@link ParseException} without details.
57 public ParseException() {
62 * Creates a {@link ParseException} with a detail message.
66 public ParseException(String message) {
  /libcore/luni/src/main/java/java/text/
ParseException.java 23 public class ParseException extends Exception {
38 public ParseException(String detailMessage, int location) {
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
SecurityClient.java 36 import java.text.ParseException;
66 public void setValue(String value) throws ParseException
68 throw new ParseException(value,0);
SecurityServer.java 37 import java.text.ParseException;
65 public void setValue(String value) throws ParseException
67 throw new ParseException(value,0);
SecurityVerify.java 37 import java.text.ParseException;
66 public void setValue(String value) throws ParseException
68 throw new ParseException(value,0);
PAssertedIdentity.java 33 import java.text.ParseException;
98 public void setValue(String value) throws ParseException {
99 throw new ParseException(value,0);
PAssociatedURI.java 35 import java.text.ParseException;
155 public void setValue(String value) throws ParseException{
157 throw new ParseException(value,0);
PCalledPartyID.java 33 import java.text.ParseException;
85 public void setValue(String value) throws ParseException {
87 throw new ParseException(value,0);
PPreferredIdentity.java 32 import java.text.ParseException;
88 public void setValue(String value) throws ParseException {
89 throw new ParseException (value,0);
PProfileKey.java 27 import java.text.ParseException;
70 public void setValue(String value) throws ParseException {
71 throw new ParseException(value,0);
PUserDatabase.java 27 import java.text.ParseException;
100 public void setValue(String value) throws ParseException {
101 throw new ParseException(value,0);
Path.java 32 import java.text.ParseException;
84 public void setValue(String value) throws ParseException {
85 throw new ParseException(value,0);
ServiceRoute.java 31 import java.text.ParseException;
85 public void setValue(String value) throws ParseException {
86 throw new ParseException (value,0);
PMediaAuthorization.java 35 import java.text.ParseException;
119 public void setValue(String value) throws ParseException {
120 throw new ParseException (value,0);
PVisitedNetworkID.java 32 import java.text.ParseException;
137 public void setValue(String value) throws ParseException {
138 throw new ParseException (value,0);
Privacy.java 35 import java.text.ParseException;
107 public void setPrivacy(String privacy) throws ParseException
122 public void setValue(String value) throws ParseException {
123 throw new ParseException(value,0);
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
MinSE.java 9 import java.text.ParseException;
59 public void setValue(String value) throws ParseException {
61 throw new ParseException(value,0);
ReferredBy.java 8 import java.text.ParseException;
42 public void setValue(String value) throws ParseException {
44 throw new ParseException(value,0);
SessionExpires.java 10 import java.text.ParseException;
74 public void setValue(String value) throws ParseException {
76 throw new ParseException(value,0);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
XmlParseUtils.java 32 public static class ParseException extends XmlPullParserException {
33 public ParseException(final String msg, final XmlPullParser parser) {
39 public static final class IllegalStartTag extends ParseException {
46 public static final class IllegalEndTag extends ParseException {
53 public static final class IllegalAttribute extends ParseException {
61 public static final class NonEmptyTag extends ParseException{
80 throw new ParseException(
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallID.java 31 import java.text.ParseException;
116 public void setCallId(String cid) throws ParseException {
120 throw new ParseException(cid, 0);

Completed in 471 milliseconds

1 2 3 4 5 6