HomeSort by relevance Sort by last modified time
    Searched defs:InvalidProtocolBufferNanoException (Results 1 - 2 of 2) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
InvalidProtocolBufferNanoException.java 41 public class InvalidProtocolBufferNanoException extends IOException {
44 public InvalidProtocolBufferNanoException(final String description) {
48 static InvalidProtocolBufferNanoException truncatedMessage() {
49 return new InvalidProtocolBufferNanoException(
56 static InvalidProtocolBufferNanoException negativeSize() {
57 return new InvalidProtocolBufferNanoException(
62 static InvalidProtocolBufferNanoException malformedVarint() {
63 return new InvalidProtocolBufferNanoException(
67 static InvalidProtocolBufferNanoException invalidTag() {
68 return new InvalidProtocolBufferNanoException(
    [all...]
CodedInputByteBufferNano.java 79 throw InvalidProtocolBufferNanoException.invalidTag();
89 * @throws InvalidProtocolBufferNanoException {@code value} does not match the
93 throws InvalidProtocolBufferNanoException {
95 throw InvalidProtocolBufferNanoException.invalidEndTag();
128 throw InvalidProtocolBufferNanoException.invalidWireType();
206 throw InvalidProtocolBufferNanoException.recursionLimitExceeded();
219 throw InvalidProtocolBufferNanoException.recursionLimitExceeded();
310 throw InvalidProtocolBufferNanoException.malformedVarint();
330 throw InvalidProtocolBufferNanoException.malformedVarint();
476 public int pushLimit(int byteLimit) throws InvalidProtocolBufferNanoException {
    [all...]

Completed in 45 milliseconds