Home
last modified time | relevance | path

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

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DUtf8.java193 private static int incompleteStateFor(int byte1) { in incompleteStateFor() method in Utf8
198 private static int incompleteStateFor(int byte1, int byte2) { in incompleteStateFor() method in Utf8
204 private static int incompleteStateFor(int byte1, int byte2, int byte3) { in incompleteStateFor() method in Utf8
211 private static int incompleteStateFor(byte[] bytes, int index, int limit) { in incompleteStateFor() method in Utf8
214 case 0: return incompleteStateFor(byte1); in incompleteStateFor()
215 case 1: return incompleteStateFor(byte1, bytes[index]); in incompleteStateFor()
216 case 2: return incompleteStateFor(byte1, bytes[index], bytes[index + 1]); in incompleteStateFor()
221 private static int incompleteStateFor( in incompleteStateFor() method in Utf8
225 return incompleteStateFor(byte1); in incompleteStateFor()
227 return incompleteStateFor(byte1, buffer.get(index)); in incompleteStateFor()
[all …]