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

  /external/skia/tools/
image_expectations.h 34 * Create an ImageDigest using a hashType/hashValue pair.
36 * @param hashType the algorithm used to generate the hash; for now, only
40 explicit ImageDigest(const SkString &hashType, uint64_t hashValue);
104 * Expect an image, passed as hashType/hashValue.
106 explicit Expectation(const SkString &hashType, uint64_t hashValue,
image_expectations.cpp 60 ImageDigest::ImageDigest(const SkString &hashType, uint64_t hashValue) :
62 if (!hashType.equals(kJsonValue_Image_ChecksumAlgorithm_Bitmap64bitMD5)) {
63 SkDebugf("unsupported hashType '%s'\n", hashType.c_str());
64 SkFAIL("unsupported hashType (see above)");
70 // and other always have hashType kJsonKey_Hashtype_Bitmap_64bitMD5
108 Expectation::Expectation(const SkString &hashType, uint64_t hashValue, bool ignoreFailure) :
109 fIsEmpty(false), fIgnoreFailure(ignoreFailure), fImageDigest(hashType, hashValue) {}
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 64 typedef hash_multimap<int, int> hashType;
67 void check_keys( hashType& h, mapType& m );
199 void HashTest::check_keys( HashTest::hashType& h, HashTest::mapType& m )
209 pair<hashType::iterator,hashType::iterator> range = h.equal_range( i->first );
210 for ( hashType::iterator j = range.first; j != range.second; ++j ) {
230 pair<hashType::iterator,hashType::iterator> range = h.equal_range(mIter->first);
232 for (hashType::iterator h = range.first; h != range.second; h++) {
251 hashType h
    [all...]
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 64 typedef hash_multimap<int, int> hashType;
67 void check_keys( hashType& h, mapType& m );
199 void HashTest::check_keys( HashTest::hashType& h, HashTest::mapType& m )
209 pair<hashType::iterator,hashType::iterator> range = h.equal_range( i->first );
210 for ( hashType::iterator j = range.first; j != range.second; ++j ) {
230 pair<hashType::iterator,hashType::iterator> range = h.equal_range(mIter->first);
232 for (hashType::iterator h = range.first; h != range.second; h++) {
251 hashType h
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
DownloadPackageTask.java 276 private byte[] computeHashOfFile(String fileLocation, String hashType) {
281 md = MessageDigest.getInstance(hashType);
283 ProvisionLogger.loge("Hashing algorithm " + hashType + " not supported.", e);
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 492 TokenType hashType = consumeHash();
493 if (hashType != null) {
494 type = hashType;
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 

Completed in 1165 milliseconds