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

12 3 4 5

  /external/proguard/src/proguard/
ConfigurationParser.java 92 * @throws ParseException if the any of the configuration settings contains
97 throws ParseException, IOException
112 else if (ConfigurationConstants.RESOURCEJARS_OPTION .startsWith(nextWord)) throw new ParseException("The '-resourcejars' option is no longer supported. Please use the '-injars' option for all input");
170 throw new ParseException("Unknown option " + reader.locationDescription());
190 private long parseIncludeArgument(long lastModified) throws ParseException, IOException
204 private void parseBaseDirectoryArgument() throws ParseException, IOException
217 throws ParseException, IOException
256 throw new ParseException("Expecting separating '" + ConfigurationConstants.ARGUMENT_SEPARATOR_KEYWORD +
295 throw new ParseException("Expecting class path separator '" + ConfigurationConstants.JAR_SEPARATOR_KEYWORD +
303 throws ParseException, IOExceptio
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.java 20 protected JJTAddressListParserState jjtree = new JJTAddressListParserState();public static void main(String args[]) throws ParseException {
37 public ASTaddress_list parse() throws ParseException {
42 throw new ParseException(tme.getMessage());
55 final public void parseLine() throws ParseException {
68 final public void parseAll() throws ParseException {
73 final public void address_list() throws ParseException {
122 if (jjte000 instanceof ParseException) {
123 {if (true) throw (ParseException)jjte000;}
134 final public void address() throws ParseException {
161 throw new ParseException();
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/
ContentTypeField.java 33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
73 private ParseException parseException;
75 protected ContentTypeField(String name, String body, String raw, String mimeType, Map parameters, ParseException parseException) {
79 this.parseException = parseException;
86 public ParseException getParseException() {
87 return parseException;
211 ParseException parseException = null;
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParser.java 33 public static void main(String args[]) throws ParseException {
45 final public void parseLine() throws ParseException {
58 final public void parseAll() throws ParseException {
63 final public void parse() throws ParseException {
86 final public void parameter() throws ParseException {
96 final public String value() throws ParseException {
108 throw new ParseException();
186 final private Token jj_consume_token(int kind) throws ParseException {
228 public ParseException generateParseException() {
258 return new ParseException(token, exptokseq, tokenImage)
    [all...]
  /frameworks/base/core/java/android/net/
WebAddress.java 34 * schemes. It will only throw a ParseException if the input is
65 public WebAddress(String address) throws ParseException {
93 throw new ParseException("Bad port");
109 throw new ParseException("Bad address");
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 20 import com.android.dx.cf.iface.ParseException;
152 } catch (ParseException ex) {
156 ParseException pe = new ParseException(ex);
MemberListParser.java 21 import com.android.dx.cf.iface.ParseException;
226 } catch (ParseException ex) {
231 ParseException pe = new ParseException(ex);
AttributeFactory.java 21 import com.android.dx.cf.iface.ParseException;
98 } catch (ParseException ex) {
DirectClassFile.java 26 import com.android.dx.cf.iface.ParseException;
394 } catch (ParseException ex) {
398 ParseException pe = new ParseException(ex);
441 throw new ParseException("severely truncated class file");
459 throw new ParseException("bad class file magic (" +
507 throw new ParseException("class name (" + thisClassName +
541 throw new ParseException("extra bytes at end of class file, " +
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 42 import org.apache.http.ParseException;
89 throws ParseException {
108 final HttpEntity entity, final String defaultCharset) throws IOException, ParseException {
145 throws IOException, ParseException {
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDraftHeaderParser.java 39 import org.apache.http.ParseException;
60 final ParserCursor cursor) throws ParseException {
  /external/apache-http/src/org/apache/http/impl/io/
HttpRequestParser.java 41 import org.apache.http.ParseException;
68 throws IOException, HttpException, ParseException {
HttpResponseParser.java 41 import org.apache.http.ParseException;
68 throws IOException, HttpException, ParseException {
AbstractMessageParser.java 40 import org.apache.http.ParseException;
161 } catch (ParseException ex) {
169 throws IOException, HttpException, ParseException;
175 } catch (ParseException px) {
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
RuleBasedCollatorTest.java 33 import java.text.ParseException;
54 } catch (java.text.ParseException pe) {
55 fail("java.text.ParseException is thrown for correct string");
61 } catch (java.text.ParseException pe) {
62 fail("java.text.ParseException is thrown for correct string");
68 } catch (java.text.ParseException pe) {
80 // } catch (java.text.ParseException pe) {
81 // fail("java.text.ParseException is thrown for empty string");
86 fail("java.text.ParseException is not thrown for wrong rules");
87 } catch (java.text.ParseException pe)
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/
DateTime.java 23 import org.apache.james.mime4j.field.datetime.parser.ParseException;
119 public static DateTime parse(String dateString) throws ParseException {
124 throw new ParseException(err.getMessage());
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
SimpleWikiHelper.java 101 public static class ParseException extends Exception {
102 public ParseException(String detailMessage, Throwable throwable) {
135 * @throws ParseException If there are problems parsing the response.
138 throws ApiException, ParseException {
156 throw new ParseException("Problem parsing API response", e);
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
SimpleWikiHelper.java 108 public static class ParseException extends Exception {
109 public ParseException(String detailMessage, Throwable throwable) {
142 * @throws ParseException If there are problems parsing the response.
145 throws ApiException, ParseException {
163 throw new ParseException("Problem parsing API response", e);
  /external/emma/lib/internal/
stamptool.jar 
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 40 import org.apache.http.ParseException;
158 } catch (ParseException px) {
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
AddressList.java 23 import org.apache.james.mime4j.field.address.parser.ParseException;
113 public static AddressList parse(String rawAddressList) throws ParseException {
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 19 import com.android.dx.cf.iface.ParseException;
199 ParseException ex =
200 new ParseException("unknown tag byte: " + Hex.u1(tag));
300 } catch (ParseException ex) {
305 ParseException pe = new ParseException(ex);
332 throw new ParseException(ex);
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueParser.java 40 import org.apache.http.ParseException;
95 throws ParseException {
146 throws ParseException {
211 throws ParseException {
281 throws ParseException {
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
HeapSegment.java 22 import java.text.ParseException;
140 * @throws ParseException if the provided data is malformed.
143 throws BufferUnderflowException, ParseException {
156 * @throws ParseException if the provided data is malformed.
159 throws BufferUnderflowException, ParseException {
175 throw new ParseException("State mismatch", data.position());
372 } catch (ParseException ex) {
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
RuleBasedCollator.java 15 import java.text.ParseException;
138 * a <code>ParseException</code>.
257 * @exception ParseException thrown if rules are empty or a Runtime error
261 public RuleBasedCollator(String rules) throws ParseException
268 // throw new ParseException("Build rules empty.", 0);
281 * @exception ParseException thrown if rules are empty or a Runtime error
290 public RuleBasedCollator(String rules, int strength) throws ParseException
297 // throw new ParseException("Build rules empty.", 0);

Completed in 4306 milliseconds

12 3 4 5