Home
last modified time | relevance | path

Searched refs:parseException (Results 1 – 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/net/
DHostSpecifier.java127 ParseException parseException = in from()
129 parseException.initCause(e); in from()
130 throw parseException; in from()
/external/mockito/src/test/java/org/mockito/internal/handler/
DInvocationNotifierHandlerTest.java90 ParseException parseException = new ParseException("", 0); in should_notify_all_listeners_when_called_delegate_handler_throws_exception_and_rethrow_it() local
91 given(mockHandler.handle(invocation)).willThrow(parseException); in should_notify_all_listeners_when_called_delegate_handler_throws_exception_and_rethrow_it()
99 …verify(listener1).reportInvocation(new NotifiedMethodInvocationReport(invocation, parseException)); in should_notify_all_listeners_when_called_delegate_handler_throws_exception_and_rethrow_it()
100 …verify(listener2).reportInvocation(new NotifiedMethodInvocationReport(invocation, parseException)); in should_notify_all_listeners_when_called_delegate_handler_throws_exception_and_rethrow_it()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java742 throw parseException("Expected \"" + token + "\"."); in consume()
781 throw parseException( in consumeIdentifier()
980 throw parseException("Expected \"true\" or \"false\"."); in consumeBoolean()
1031 throw parseException("Expected string."); in consumeByteString()
1036 throw parseException("String missing ending quote."); in consumeByteString()
1046 throw parseException(e.getMessage()); in consumeByteString()
1054 public ParseException parseException(final String description) { in parseException() method in TextFormat.Tokenizer
1077 return parseException("Couldn't parse integer: " + e.getMessage()); in integerParseException()
1085 return parseException("Couldn't parse number: " + e.getMessage()); in floatParseException()
1596 throw tokenizer.parseException( in consumeFieldValue()
[all …]