HomeSort by relevance Sort by last modified time
    Searched defs:fromBytes (Results 1 - 25 of 48) sorted by null

1 2

  /external/guava/guava/src/com/google/common/hash/
HashCodes.java 63 * @deprecated Use {@link HashCode#fromBytes} instead. This method is scheduled to be removed in
67 public static HashCode fromBytes(byte[] bytes) {
68 return HashCode.fromBytes(bytes);
HashCode.java 229 public static HashCode fromBytes(byte[] bytes) {
304 * {@link com.google.common.io.BaseEncoding#decode} (and pass the result to {@link #fromBytes}).
  /external/guava/guava-tests/test/com/google/common/hash/
MessageDigestHashFunctionTest.java 99 HashCode.fromBytes(digest.digest(input)),
103 HashCode.fromBytes(Arrays.copyOf(digest.digest(input), bytes)),
HashCodeTest.java 85 HashCode fromBytes = HashCode.fromBytes(expected.bytes);
86 assertExpectedHashCode(expected, fromBytes);
92 HashCode hashCode = HashCode.fromBytes(bytes);
120 HashCode hashCode = HashCode.fromBytes(bytes);
158 assertEquals("7f8005ff0e", HashCode.fromBytes(data).toString());
173 HashCode.fromBytes(BaseEncoding.base16().lowerCase().decode(hash1.toString()));
192 HashCode hashCodeA = HashCode.fromBytes(bytesA);
193 HashCode hashCodeB = HashCode.fromBytes(bytesB);
211 String string = HashCodes.fromBytes(expected.bytes).toString()
    [all...]
HashingTest.java 268 assertEquals(HashCode.fromBytes(new byte[] { (byte) 0x80, 0, 0, 0 }),
270 assertEquals(HashCode.fromBytes(new byte[] { (byte) 0xa0, 0, 0, 0 }),
358 assertEquals(HashCode.fromBytes(combined),
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 45 static <T> T fromBytes(byte[] bytes) {
52 Log.w(TAG, "fromBytes(): " + e);
  /external/deqp/framework/common/
tcuRGBA.hpp 87 static RGBA fromBytes (const deUint8* bytes) { return RGBA(bytes[0], bytes[1], bytes[2], bytes[3]); }
  /external/guava/guava/src/com/google/common/primitives/
Chars.java 313 return fromBytes(bytes[0], bytes[1]);
324 public static char fromBytes(byte b1, byte b2) {
Shorts.java 321 return fromBytes(bytes[0], bytes[1]);
332 public static short fromBytes(byte b1, byte b2) {
Ints.java 323 return fromBytes(bytes[0], bytes[1], bytes[2], bytes[3]);
334 public static int fromBytes(byte b1, byte b2, byte b3, byte b4) {
Longs.java 292 return fromBytes(bytes[0], bytes[1], bytes[2], bytes[3],
303 public static long fromBytes(byte b1, byte b2, byte b3, byte b4,
  /external/glide/library/src/main/java/com/bumptech/glide/
RequestManager.java 504 * @see #fromBytes()
510 return (DrawableTypeRequest<byte[]>) fromBytes().load(model);
524 public DrawableTypeRequest<byte[]> fromBytes() {
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsState.java 628 return fromBytes(Base64.decode(s, Base64.DEFAULT));
646 private static String fromBytes(byte[] bytes) {
  /frameworks/base/media/java/android/media/
ClosedCaptionRenderer.java 434 static PAC fromBytes(byte data1, byte data2) {
902 return PAC.fromBytes(mData1, mData2);
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/misc/common/android-support-test/
espresso-core.jar 
  /prebuilts/misc/common/guava/
guava-15.0.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 381 milliseconds

1 2