Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DUtf8.java190 private static int incompleteStateFor(int byte1) { in incompleteStateFor() method in Utf8
195 private static int incompleteStateFor(int byte1, int byte2) { in incompleteStateFor() method in Utf8
201 private static int incompleteStateFor(int byte1, int byte2, int byte3) { in incompleteStateFor() method in Utf8
208 private static int incompleteStateFor(byte[] bytes, int index, int limit) { in incompleteStateFor() method in Utf8
211 case 0: return incompleteStateFor(byte1); in incompleteStateFor()
212 case 1: return incompleteStateFor(byte1, bytes[index]); in incompleteStateFor()
213 case 2: return incompleteStateFor(byte1, bytes[index], bytes[index + 1]); in incompleteStateFor()
218 private static int incompleteStateFor( in incompleteStateFor() method in Utf8
222 return incompleteStateFor(byte1); in incompleteStateFor()
224 return incompleteStateFor(byte1, buffer.get(index)); in incompleteStateFor()
[all …]