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

1 2 3

  /packages/apps/UnifiedEmail/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 30 import org.apache.james.mime4j.field.datetime.parser.ParseException;
36 private ParseException parseException;
38 protected DateTimeField(String name, String body, String raw, Date date, ParseException parseException) {
41 this.parseException = parseException;
48 public ParseException getParseException() {
49 return parseException;
57 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...]
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<String, String> parameters, ParseException parseException) {
79 this.parseException = parseException;
86 public ParseException getParseException() {
87 return parseException;
212 ParseException parseException = null
    [all...]
  /packages/services/Telephony/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 30 import org.apache.james.mime4j.field.datetime.parser.ParseException;
36 private ParseException parseException;
38 protected DateTimeField(String name, String body, String raw, Date date, ParseException parseException) {
41 this.parseException = parseException;
48 public ParseException getParseException() {
49 return parseException;
57 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...]
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<String, String> parameters, ParseException parseException) {
79 this.parseException = parseException;
86 public ParseException getParseException() {
87 return parseException;
212 ParseException parseException = null
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
JAXPDOMTestDocumentBuilderFactory.java 87 private SAXException parseException;
91 parseException = null;
98 if (parseException == null) {
99 parseException = ex;
108 if (parseException == null) {
109 parseException = ex;
114 return parseException;
120 Exception parseException = null;
127 parseException = errorHandler.getFirstException();
130 parseException = ex
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DocumentBuilderFactoryTest.java 376 Exception parseException = null;
387 parseException = errorHandler.getFirstException();
393 parseException = ex;
397 if (parseException != null) {
398 fail("Unexpected exception " + parseException.getMessage());
415 parseException = errorHandler.getFirstException();
423 parseException = ex;
427 if (parseException != null) {
428 fail("Unexpected exception " + parseException.getMessage());
439 Exception parseException = null
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMTestCase.java 23 Exception parseException = null;
28 parseException = errorHandler.getFirstException();
30 parseException = ex;
33 if (parseException != null) {
34 // fail("Unexpected exception " + parseException.getMessage());
35 throw new RuntimeException("Unexpected exception " + parseException.getMessage(), parseException);
194 private SAXException parseException;
201 parseException = null;
208 if (parseException == null)
    [all...]
  /external/guava/guava/src/com/google/common/net/
HostSpecifier.java 23 import java.text.ParseException;
116 * @throws ParseException if the specifier is not valid.
119 throws ParseException {
127 ParseException parseException =
128 new ParseException("Invalid host specifier: " + specifier, 0);
129 parseException.initCause(e);
130 throw parseException;
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java 714 * throw a {@link ParseException}.
716 public void consume(final String token) throws ParseException {
718 throw parseException("Expected \"" + token + "\".");
746 * Otherwise, throw a {@link ParseException}.
748 public String consumeIdentifier() throws ParseException {
757 throw parseException(
775 } catch (ParseException e) {
782 * value. Otherwise, throw a {@link ParseException}.
784 public int consumeInt32() throws ParseException {
796 * value. Otherwise, throw a {@link ParseException}
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 29 import com.android.dx.cf.iface.ParseException;
756 } catch (ParseException ex) {
780 } catch (ParseException ex) {
    [all...]
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-alpha4/
perflib-25.2.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-alpha7/
perflib-25.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-beta1/
perflib-25.2.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-beta2/
perflib-25.2.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/perflib/perflib/25.2.0-beta3/
perflib-25.2.0-beta3.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /external/guice/extensions/persist/lib/
dom4j-1.6.1.jar 

Completed in 401 milliseconds

1 2 3