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

  /external/chromium_org/base/prefs/
testing_pref_store.cc 125 const base::Value* stored_value; local
126 if (!prefs_.GetValue(key, &stored_value) || !stored_value)
129 return stored_value->GetAsString(value);
133 const base::Value* stored_value; local
134 if (!prefs_.GetValue(key, &stored_value) || !stored_value)
137 return stored_value->GetAsInteger(value);
141 const base::Value* stored_value; local
142 if (!prefs_.GetValue(key, &stored_value) || !stored_value
    [all...]
pref_value_map.cc 95 const base::Value* stored_value = NULL; local
96 return GetValue(key, &stored_value) && stored_value->GetAsBoolean(value);
105 const base::Value* stored_value = NULL; local
106 return GetValue(key, &stored_value) && stored_value->GetAsString(value);
115 const base::Value* stored_value = NULL; local
116 return GetValue(key, &stored_value) && stored_value->GetAsInteger(value);
  /external/chromium_org/components/policy/core/browser/
configuration_policy_pref_store.cc 67 const base::Value* stored_value = NULL; local
68 if (!prefs_.get() || !prefs_->GetValue(key, &stored_value))
72 *value = stored_value;
  /external/chromium_org/chrome/browser/prefs/
pref_hash_filter_unittest.cc 145 ValuePtrStrategyPair stored_value(const std::string& path) const { function in class:MockPrefHashStore
494 MockPrefHashStore::ValuePtrStrategyPair stored_value = local
495 mock_pref_hash_store_->stored_value(kAtomicPref);
496 ASSERT_EQ(string_value, stored_value.first);
497 ASSERT_EQ(PrefHashFilter::TRACKING_STRATEGY_ATOMIC, stored_value.second);
554 MockPrefHashStore::ValuePtrStrategyPair stored_value = local
555 mock_pref_hash_store_->stored_value(kSplitPref);
556 ASSERT_EQ(dict_value, stored_value.first);
557 ASSERT_EQ(PrefHashFilter::TRACKING_STRATEGY_SPLIT, stored_value.second);
611 mock_pref_hash_store_->stored_value(kAtomicPref)
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_interpreter_unittest.cc 344 std::string stored_value; member in struct:__anon9129::TestCase
371 if (cases[i].stored_value == VALUE_TRUE ||
372 cases[i].stored_value == VALUE_FALSE)
373 store_op = OP_STORE_BOOL(VAR_HASH_1, cases[i].stored_value);
374 else if (!cases[i].stored_value.empty())
375 store_op = OP_STORE_HASH(VAR_HASH_1, cases[i].stored_value);
429 std::string stored_value; member in struct:__anon9129::TestCase
476 if (cases[i].stored_value == VALUE_TRUE ||
477 cases[i].stored_value == VALUE_FALSE)
478 store_op = OP_STORE_BOOL(VAR_HASH_1, cases[i].stored_value);
    [all...]
jtl_interpreter.cc 387 const base::Value* stored_value = NULL; variable
388 if (!context->working_memory()->Get(hashed_name_, &stored_value))
392 !context->current_node()->Equals(stored_value))
398 !stored_value->GetAsString(&stored_hash) ||
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
types_traits.hpp 78 struct stored_value struct in namespace:__gnu_pbds::detail
96 : public stored_value<_Tv>, public stored_hash<_Th>
102 : public stored_value<_Tv>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/
types_traits.hpp 78 struct stored_value struct in namespace:__gnu_pbds::detail
96 : public stored_value<_Tv>, public stored_hash<_Th>
102 : public stored_value<_Tv>
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/
types_traits.hpp 78 struct stored_value struct in namespace:__gnu_pbds::detail
96 : public stored_value<_Tv>, public stored_hash<_Th>
102 : public stored_value<_Tv>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/
types_traits.hpp 78 struct stored_value struct in namespace:__gnu_pbds::detail
96 : public stored_value<_Tv>, public stored_hash<_Th>
102 : public stored_value<_Tv>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/
types_traits.hpp 78 struct stored_value struct in namespace:__gnu_pbds::detail
96 : public stored_value<_Tv>, public stored_hash<_Th>
102 : public stored_value<_Tv>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/
types_traits.hpp 78 struct stored_value struct in namespace:__gnu_pbds::detail
96 : public stored_value<_Tv>, public stored_hash<_Th>
102 : public stored_value<_Tv>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 145 : stored_value(*x)
155 return this->stored_value;
158 mutable value_type stored_value; member in class:boost::detail::postfix_increment_proxy
171 : stored_value(*x)
188 return stored_value;
214 mutable value_type stored_value; member in class:boost::detail::writable_postfix_increment_proxy
  /external/chromium_org/chrome/browser/extensions/api/file_system/
file_system_apitest.cc 131 base::FilePath stored_value = local
134 EXPECT_TRUE(stored_value.empty());
137 base::MakeAbsoluteFilePath(stored_value));
  /art/compiler/dex/
local_value_numbering.cc 65 uint16_t store_ref_set_id, uint16_t stored_value) {
67 store_ref_set_id, stored_value);
116 uint16_t store_ref_set_id, uint16_t stored_value) {
118 store_ref_set_id, stored_value);
157 uint16_t store_ref_set_id, uint16_t stored_value) {
159 store_ref_set_id, stored_value);
    [all...]
  /external/chromium_org/v8/src/
objects.cc 4549 Object* stored_value = local
    [all...]

Completed in 488 milliseconds