HomeSort by relevance Sort by last modified time
    Searched refs:bytesStr (Results 1 - 5 of 5) sorted by null

  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonMessageBuilder.java 497 String bytesStr;
500 bytesStr = new String(Base64.encode(message.getSecret(), charsetName));
503 bytesStr = "";
505 jsonObj.put(SECRET_FIELD_SECRET, bytesStr);
516 String bytesStr;
519 bytesStr = new String(Base64.encode(message.getSecret(), charsetName));
522 bytesStr = "";
524 jsonObj.put(SECRET_ACK_FIELD_SECRET, bytesStr);
  /external/skia/src/core/
SkResourceCache.cpp 157 SkString bytesStr, totalStr;
158 make_size_str(rec->bytesUsed(), &bytesStr);
161 bytesStr.c_str(), rec, rec->getHash(), totalStr.c_str(), fCount);
182 SkString bytesStr, totalStr;
183 make_size_str(used, &bytesStr);
186 bytesStr.c_str(), rec, rec->getHash(), totalStr.c_str(), fCount);
  /external/skqp/src/core/
SkResourceCache.cpp 157 SkString bytesStr, totalStr;
158 make_size_str(rec->bytesUsed(), &bytesStr);
161 bytesStr.c_str(), rec, rec->getHash(), totalStr.c_str(), fCount);
182 SkString bytesStr, totalStr;
183 make_size_str(used, &bytesStr);
186 bytesStr.c_str(), rec, rec->getHash(), totalStr.c_str(), fCount);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/
StringUtilsTests.java 395 final String bytesStr = StringUtils.byteArrayToHexString(bytes);
396 final byte[] bytes2 = StringUtils.hexStringToByteArray(bytesStr);
401 assertTrue(bytesStr.equals(bytesStr2));
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlMessageBuilder.java 563 String bytesStr = PoloUtil.bytesToHexString(message.getSecret());
564 secret.put(SECRET_FIELD_SECRET, bytesStr);

Completed in 471 milliseconds