Home
last modified time | relevance | path

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

/external/grpc-grpc-java/core/src/main/java/io/grpc/
DMetadata.java177 if (bytesEqual(key.asciiName(), name(i))) { in containsKey()
192 if (bytesEqual(key.asciiName(), name(i))) { in get()
220 if (bytesEqual(key.asciiName(), name(idx))) { in iterator()
253 if (bytesEqual(key.asciiName(), name(i))) { in getAll()
320 if (!bytesEqual(key.asciiName(), name(i))) { in remove()
349 if (bytesEqual(key.asciiName(), name(readIdx))) { in removeAll()
377 if (bytesEqual(key.asciiName(), name(readIdx))) { in discardAll()
478 private boolean bytesEqual(byte[] left, byte[] right) { in bytesEqual() method
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DIsValidUtf8TestUtil.java266 boolean bytesEqual = Arrays.equals(bytes, bytesReencoded);
268 if (bytesEqual != isRoundTrippable) {
395 boolean bytesEqual = true;
398 bytesEqual = false;
402 bytesEqual = false;
407 if (bytesEqual != isRoundTrippable) {
/external/guava/guava-tests/test/com/google/common/base/
DUtf8Test.java314 boolean bytesEqual = Arrays.equals(bytes, bytesReencoded); in testBytes()
316 if (bytesEqual != isRoundTrippable) { in testBytes()