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

1 2

  /external/chromium_org/chrome/browser/profile_resetter/
jtl_foundation.cc 20 std::string Hasher::GetHash(const std::string& input) const {
jtl_interpreter_unittest.cc 20 #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) {
32 return jtl_foundation::Hasher(seed).GetHash(input);
257 { GetHash("1.2"), "{ 'KEY_HASH_1': 1.2 }", true },
258 { GetHash("1.2"), "{ 'KEY_HASH_1': 'VALUE_HASH_1' }", false }
    [all...]
automatic_profile_resetter_unittest.cc 211 std::string GetHash(const std::string& input) {
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_already"), VALUE_TRUE)
    [all...]
jtl_interpreter.cc 66 std::string GetHash(const std::string& input) {
67 return hasher_->GetHash(input);
83 *hash = GetHash(value_as_string);
125 if (context->GetHash(i.key()) != hashed_key_)
284 hashed_name_, new StringValue(context->GetHash(effective_sld)));
430 if (window_sum == pattern_sum_ && context->GetHash(std::string(
724 jtl_foundation::Hasher(hasher_seed_).GetHash(unhashed_key);
731 jtl_foundation::Hasher(hasher_seed_).GetHash(unhashed_key);
  /external/chromium_org/chrome/tools/profile_reset/
jtl_compiler_unittest.cc 21 std::string GetHash(const std::string& input) {
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("name"), GetHash("value"))}
    [all...]
  /external/chromium_org/content/browser/download/
save_file.cc 80 bool SaveFile::GetHash(std::string* hash) {
81 return file_.GetHash(hash);
base_file.cc 225 bool BaseFile::GetHash(std::string* hash) {
download_file_impl.cc 195 bool DownloadFileImpl::GetHash(std::string* hash) {
196 return file_.GetHash(hash);
291 if (!GetHash(&hash) || file_.IsEmptyHash(hash))
download_item_impl.cc 605 const std::string& DownloadItemImpl::GetHash() const {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
RetainedDOMInfo.cpp 64 intptr_t RetainedDOMInfo::GetHash()
  /external/chromium_org/tools/telemetry/telemetry/page/
cloud_storage.py 141 if os.path.exists(file_path) and GetHash(file_path) == expected_hash:
151 def GetHash(file_path):
  /external/skia/tests/
DynamicHashTest.cpp 20 uint32_t GetHash(const int& key) { return key; }
23 class Hash : public SkTDynamicHash<Entry, int, GetKey, GetHash, AreEqual> {
33 typedef SkTDynamicHash<Entry, int, GetKey, GetHash, AreEqual> INHERITED;
  /external/chromium_org/v8/test/cctest/
test-global-handles.cc 67 virtual intptr_t GetHash() { return 0; }
test-mark-compact.cc 377 virtual intptr_t GetHash() { return 0; }
test-heap-profiler.cc     [all...]
  /external/chromium_org/chrome/browser/component_updater/
widevine_cdm_component_installer.cc 260 virtual void GetHash(std::vector<uint8>* hash) const OVERRIDE;
319 void WidevineCdmComponentInstallerTraits::GetHash(
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 115 def GetHash(self, file_path):
  /external/v8/test/cctest/
test-mark-compact.cc 430 virtual intptr_t GetHash() { return 0; }
test-heap-profiler.cc 788 return GetHash() == other->GetHash();
790 virtual intptr_t GetHash() { return hash_; }
    [all...]
  /external/chromium/net/disk_cache/
entry_impl.cc 399 uint32 EntryImpl::GetHash() {
    [all...]
  /external/chromium_org/net/disk_cache/
entry_impl.cc 399 uint32 EntryImpl::GetHash() {
    [all...]
  /external/chromium_org/net/disk_cache/v3/
entry_impl_v3.cc 297 uint32 EntryImpl::GetHash() {
    [all...]
  /external/chromium_org/v8/src/
heap-snapshot-generator.cc 703 SnapshotObjectId id = static_cast<SnapshotObjectId>(info->GetHash());
    [all...]
  /external/v8/src/
profile-generator.cc     [all...]
objects-inl.h     [all...]

Completed in 2154 milliseconds

1 2