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

1 2 3 4 5

  /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) {
  /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 $
45 public class ParseException extends RuntimeException {
50 * Creates a {@link ParseException} without details.
52 public ParseException() {
57 * Creates a {@link ParseException} with a detail message.
61 public ParseException(String message) {
Header.java 62 HeaderElement[] getElements() throws ParseException;
  /frameworks/base/core/java/android/net/
ParseException.java 24 public class ParseException extends RuntimeException {
27 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) {
  /dalvik/libcore/text/src/main/java/java/text/
ParseException.java 23 public class ParseException extends Exception {
38 public ParseException(String detailMessage, int location) {
RuleBasedCollator.java 155 * {@code ParseException}.
289 * @throws ParseException
293 public RuleBasedCollator(String rules) throws ParseException {
300 // throw new ParseException(Messages.getString("text.06"), 0); //$NON-NLS-1$
311 if (e instanceof ParseException) {
312 throw (ParseException) e;
315 * -1 means it's not a ParseException. Maybe IOException thrown when
318 throw new ParseException(e.getMessage(), -1);
  /external/apache-http/src/org/apache/http/message/
HeaderValueParser.java 37 import org.apache.http.ParseException;
89 * @throws ParseException in case of a parse error
93 ParserCursor cursor) throws ParseException;
106 * @throws ParseException in case of a parse error
110 ParserCursor cursor) throws ParseException;
192 * @throws ParseException in case of a parse error
196 ParserCursor cursor) throws ParseException;
211 ParserCursor cursor) throws ParseException;
LineParser.java 36 import org.apache.http.ParseException;
73 * @throws ParseException in case of a parse error
77 ParserCursor cursor) throws ParseException;
113 * @throws ParseException in case of a parse error
117 ParserCursor cursor) throws ParseException;
129 * @throws ParseException in case of a parse error
133 ParserCursor cursor) throws ParseException;
149 * @throws ParseException in case of a parse error
152 throws ParseException
BufferedHeader.java 36 import org.apache.http.ParseException;
74 * @throws ParseException in case of a parse error
77 throws ParseException {
86 throw new ParseException
91 throw new ParseException
108 public HeaderElement[] getElements() throws ParseException {
BasicTokenIterator.java 37 import org.apache.http.ParseException;
107 * @throws ParseException if an invalid header value is encountered
110 throws NoSuchElementException, ParseException {
117 // updates currentToken, may trigger ParseException:
131 * @throws ParseException if an invalid header value is encountered
134 throws NoSuchElementException, ParseException {
166 * @throws ParseException if an invalid header value is encountered
169 throws ParseException {
250 throw new ParseException
281 * @throws ParseException
    [all...]
BasicLineParser.java 36 import org.apache.http.ParseException;
110 throws ParseException {
130 throws ParseException {
151 throw new ParseException
165 throw new ParseException
174 throw new ParseException
182 throw new ParseException
196 throw new ParseException(
275 throws ParseException {
299 * @throws ParseException in case of a parse erro
    [all...]
BasicHeader.java 36 import org.apache.http.ParseException;
128 * @throws ParseException in case of a parse error
130 public HeaderElement[] getElements() throws ParseException {
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
ParseExceptionTest.java 25 import java.text.ParseException;
27 @TestTargetClass(ParseException.class)
31 * @tests java.text.ParseException#ParseException(java.lang.String, int)
36 method = "ParseException",
43 fail("ParseException not created/thrown.");
44 } catch (ParseException e) {
50 * @tests java.text.ParseException#getErrorOffset()
62 } catch (ParseException e) {
  /packages/apps/Email/src/org/apache/james/mime4j/field/
AddressListField.java 27 import org.apache.james.mime4j.field.address.parser.ParseException;
31 private ParseException parseException;
33 protected AddressListField(String name, String body, String raw, AddressList addressList, ParseException parseException) {
36 this.parseException = parseException;
43 public ParseException getParseException() {
44 return parseException;
52 ParseException parseException = null;
    [all...]
DateTimeField.java 27 import org.apache.james.mime4j.field.datetime.parser.ParseException;
33 private ParseException parseException;
35 protected DateTimeField(String name, String body, String raw, Date date, ParseException parseException) {
38 this.parseException = parseException;
45 public ParseException getParseException() {
46 return parseException;
54 ParseException parseException = null;
    [all...]
MailboxField.java 29 import org.apache.james.mime4j.field.address.parser.ParseException;
33 private final ParseException parseException;
35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) {
38 this.parseException = parseException;
45 public ParseException getParseException() {
46 return parseException;
54 ParseException parseException = null;
    [all...]
MailboxListField.java 28 import org.apache.james.mime4j.field.address.parser.ParseException;
33 private ParseException parseException;
35 protected MailboxListField(final String name, final String body, final String raw, final MailboxList mailboxList, final ParseException parseException) {
38 this.parseException = parseException;
45 public ParseException getParseException() {
46 return parseException;
54 ParseException parseException = null;
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 81 public static class ParseException extends IllegalArgumentException {
82 ParseException(StreamTokenizer state, String expected) {
138 * @throws ParseException if the input data is malformed
141 static void parse(Reader r, Map<String, Object> map) throws ParseException, IOException {
161 throw new ParseException(st, "type name");
165 throw new ParseException(st, "valid type name");
173 throw new ParseException(st, "'('");
180 throw new ParseException(st, "property name");
184 throw new ParseException(st, "valid property name");
192 throw new ParseException(st, "')'")
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 58 public static void main(String args[]) throws ParseException {
75 public ASTaddress_list parse() throws ParseException {
80 throw new ParseException(tme.getMessage());
133 if (jjte000 instanceof ParseException) {
134 throw (ParseException)jjte000;
170 if (jjte000 instanceof ParseException) {
171 throw (ParseException)jjte000;
207 if (jjte000 instanceof ParseException) {
208 throw (ParseException)jjte000;
241 if (jjte000 instanceof ParseException) {
    [all...]
ParseException.java 1 /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */
28 public class ParseException extends Exception {
40 * ParseException: <result of getMessage>
42 public ParseException(Token currentTokenVal,
64 public ParseException() {
69 public ParseException(String message) {
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 26 public static void main(String args[]) throws ParseException {
115 final public DateTime parseLine() throws ParseException {
131 final public DateTime parseAll() throws ParseException {
139 final public DateTime date_time() throws ParseException {
170 final public String day_of_week() throws ParseException {
196 throw new ParseException();
202 final public Date date() throws ParseException {
211 final public int day() throws ParseException {
218 final public int month() throws ParseException {
271 throw new ParseException();
    [all...]
ParseException.java 1 /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */
28 public class ParseException extends Exception {
40 * ParseException: <result of getMessage>
42 public ParseException(Token currentTokenVal,
64 public ParseException() {
69 public ParseException(String message) {
  /packages/apps/Email/src/com/android/exchange/utility/
Duration.java 18 import java.text.ParseException;
41 public void parse(String str) throws ParseException {
71 throw new ParseException (
100 throw new ParseException (
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ParseException.java 1 /* Generated By:JavaCC: Do not edit this line. ParseException.java Version 3.0 */
28 public class ParseException extends Exception {
40 * ParseException: <result of getMessage>
42 public ParseException(Token currentTokenVal,
64 public ParseException() {
69 public ParseException(String message) {

Completed in 293 milliseconds

1 2 3 4 5