Searched refs:GetHash (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/chrome/tools/profile_reset/
H A Djtl_compiler_unittest.cc21 std::string GetHash(const std::string& input) { function in namespace:__anon6004
22 return jtl_foundation::Hasher(kTestHashSeed).GetHash(input);
45 {"go(\"foo\").", OP_NAVIGATE(GetHash("foo"))},
46 {"go(\"has whitespace\t\").", OP_NAVIGATE(GetHash("has whitespace\t"))},
50 OP_STORE_BOOL(GetHash("name"), VALUE_TRUE)},
52 OP_COMPARE_STORED_BOOL(GetHash("name"), VALUE_TRUE, VALUE_FALSE)},
53 {"store_hash(\"name\", \"" + GetHash("value") + "\").",
54 OP_STORE_HASH(GetHash("name"), GetHash("value"))},
56 OP_STORE_HASH(GetHash("nam
[all...]
H A Djtl_compiler.cc119 target->WriteHash(hasher.GetHash(value));
129 target->WriteHash(hasher.GetHash(value));
/external/chromium_org/chrome/browser/profile_resetter/
H A Djtl_interpreter_unittest.cc20 #define KEY_HASH_1 GetHash("KEY_HASH_1")
21 #define KEY_HASH_2 GetHash("KEY_HASH_2")
22 #define KEY_HASH_3 GetHash("KEY_HASH_3")
23 #define KEY_HASH_4 GetHash("KEY_HASH_4")
25 #define VALUE_HASH_1 GetHash("VALUE_HASH_1")
26 #define VALUE_HASH_2 GetHash("VALUE_HASH_2")
31 std::string GetHash(const std::string& input) { function in namespace:__anon4504
32 return jtl_foundation::Hasher(seed).GetHash(input);
257 { GetHash("1.2"), "{ 'KEY_HASH_1': 1.2 }", true },
258 { GetHash("1.
[all...]
H A Dautomatic_profile_resetter_unittest.cc211 std::string GetHash(const std::string& input) { function in namespace:__anon4501
212 return jtl_foundation::Hasher(kTestHashSeed).GetHash(input);
247 bytecode += OP_STORE_BOOL(GetHash("satisfied_criteria_mask_bit1"),
250 bytecode += OP_STORE_BOOL(GetHash("satisfied_criteria_mask_bit2"),
253 bytecode += OP_STORE_BOOL(GetHash("should_prompt"),
257 bytecode += OP_STORE_BOOL(GetHash("combined_status_mask_bit1"),
261 bytecode += OP_NAVIGATE(GetHash("memento_value_in_prefs"));
262 bytecode += OP_COMPARE_NODE_HASH(GetHash(kTestMementoValue));
263 bytecode += OP_STORE_BOOL(GetHash("combined_status_mask_bit2"), VALUE_TRUE);
264 bytecode += OP_STORE_BOOL(GetHash("had_prompted_alread
[all...]
H A Djtl_foundation.cc20 std::string Hasher::GetHash(const std::string& input) const { function in class:jtl_foundation::Hasher
H A Djtl_foundation.h181 std::string GetHash(const std::string& input) const;
H A Djtl_interpreter.cc67 std::string GetHash(const std::string& input) { function in class:__anon4503::ExecutionContext
68 return hasher_->GetHash(input);
84 *hash = GetHash(value_as_string);
126 if (context->GetHash(i.key()) != hashed_key_)
288 hashed_name_, new base::StringValue(context->GetHash(domain)));
435 if (window_sum == pattern_sum_ && context->GetHash(std::string(
731 jtl_foundation::Hasher(hasher_seed_).GetHash(unhashed_key);
738 jtl_foundation::Hasher(hasher_seed_).GetHash(unhashed_key);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DRetainedDOMInfo.h48 virtual intptr_t GetHash() OVERRIDE;
H A DRetainedDOMInfo.cpp64 intptr_t RetainedDOMInfo::GetHash() function in class:blink::RetainedDOMInfo
/external/chromium_org/chrome/browser/component_updater/
H A Dcld_component_installer.h36 FRIEND_TEST_ALL_PREFIXES(CldComponentInstallerTest, GetHash);
54 virtual void GetHash(std::vector<uint8_t>* hash) const OVERRIDE;
H A Dev_whitelist_component_installer.h38 virtual void GetHash(std::vector<uint8_t>* hash) const OVERRIDE;
H A Dev_whitelist_component_installer.cc106 void EVWhitelistComponentInstallerTraits::GetHash( function in class:component_updater::EVWhitelistComponentInstallerTraits
H A Dcld_component_installer.cc99 void CldComponentInstallerTraits::GetHash(std::vector<uint8_t>* hash) const { function in class:component_updater::CldComponentInstallerTraits
/external/chromium_org/content/browser/download/
H A Dsave_file.cc79 bool SaveFile::GetHash(std::string* hash) { function in class:content::SaveFile
80 return file_.GetHash(hash);
H A Ddownload_file.h71 virtual bool GetHash(std::string* hash) = 0;
H A Dsave_file.h38 bool GetHash(std::string* hash);
H A Dmock_download_file.h45 MOCK_METHOD1(GetHash, bool(std::string* hash));
H A Dbase_file.h98 virtual bool GetHash(std::string* hash);
H A Dbase_file_unittest.cc276 base_file_->GetHash(&hash);
319 EXPECT_FALSE(base_file_->GetHash(&hash));
341 base_file_->GetHash(&hash);
363 EXPECT_FALSE(base_file_->GetHash(&hash));
366 EXPECT_TRUE(base_file_->GetHash(&hash));
417 EXPECT_TRUE(second_file.GetHash(&hash));
H A Ddownload_file_impl.cc235 bool DownloadFileImpl::GetHash(std::string* hash) { function in class:content::DownloadFileImpl
236 return file_.GetHash(hash);
331 if (!GetHash(&hash) || file_.IsEmptyHash(hash))
H A Ddownload_file_impl.h62 virtual bool GetHash(std::string* hash) OVERRIDE;
/external/chromium_org/chrome/browser/component_updater/test/
H A Dcld_component_installer_unittest.cc104 TEST_F(CldComponentInstallerTest, GetHash) {
106 traits_.GetHash(&hash);
/external/chromium_org/net/disk_cache/blockfile/
H A Dentry_impl_v3.h45 uint32 GetHash();
47 uint32 GetHash() const;
/external/chromium_org/components/component_updater/
H A Ddefault_component_installer.h74 virtual void GetHash(std::vector<uint8_t>* hash) const = 0;
/external/chromium_org/content/public/test/
H A Dmock_download_item.h75 MOCK_CONST_METHOD0(GetHash, const std::string&());

Completed in 327 milliseconds

123