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

1 2 3 4 5 6

  /external/chromium/chrome/browser/
plugin_data_remover_helper.h 34 bool GetValue() const { return pref_.GetValue(); }
  /external/chromium_org/ui/compositor/
float_animation_curve_adapter.cc 33 float FloatAnimationCurveAdapter::GetValue(double t) const {
transform_animation_curve_adapter.cc 38 gfx::Transform TransformAnimationCurveAdapter::GetValue(
71 effective_initial_value_ = base_curve_.GetValue(0.0) * initial_value_;
89 gfx::Transform InverseTransformCurveAdapter::GetValue(
94 gfx::Transform base_transform = base_curve_.GetValue(t);
  /external/chromium_org/base/prefs/
value_map_pref_store.cc 14 bool ValueMapPrefStore::GetValue(const std::string& key,
16 return prefs_.GetValue(key, value);
default_pref_store.cc 12 bool DefaultPrefStore::GetValue(const std::string& key,
14 return prefs_.GetValue(key, result);
31 DCHECK(!GetValue(key, NULL));
38 GetValue(key, &old_value);
pref_value_map.cc 18 bool PrefValueMap::GetValue(const std::string& key,
30 bool PrefValueMap::GetValue(const std::string& key, base::Value** value) {
96 return GetValue(key, &stored_value) && stored_value->GetAsBoolean(value);
106 return GetValue(key, &stored_value) && stored_value->GetAsString(value);
116 return GetValue(key, &stored_value) && stored_value->GetAsInteger(value);
  /external/chromium_org/chrome/common/extensions/docs/server2/
datastore_models.py 34 def GetValue(self):
  /external/chromium_org/content/renderer/
web_ui_extension_data.cc 20 std::string WebUIExtensionData::GetValue(const std::string& key) const {
  /external/chromium_org/v8/test/cctest/
test-platform-tls.cc 42 static void* GetValue(int num) {
52 Thread::SetThreadLocal(keys[i], GetValue(i));
58 CHECK_EQ(GetValue(i), Thread::GetThreadLocal(keys[i]));
59 CHECK_EQ(GetValue(i), Thread::GetExistingThreadLocal(keys[i]));
62 Thread::SetThreadLocal(keys[i], GetValue(kValueCount - i - 1));
68 CHECK_EQ(GetValue(kValueCount - i - 1),
70 CHECK_EQ(GetValue(kValueCount - i - 1),
  /external/v8/test/cctest/
test-platform-tls.cc 17 static void* GetValue(int num) {
26 Thread::SetThreadLocal(keys[i], GetValue(i));
32 CHECK_EQ(GetValue(i), Thread::GetThreadLocal(keys[i]));
33 CHECK_EQ(GetValue(i), Thread::GetExistingThreadLocal(keys[i]));
36 Thread::SetThreadLocal(keys[i], GetValue(kValueCount - i - 1));
42 CHECK_EQ(GetValue(kValueCount - i - 1),
44 CHECK_EQ(GetValue(kValueCount - i - 1),
  /external/chromium/chrome/browser/extensions/
extension_info_private_api_chromeos.cc 39 if (GetValue(property_name, &value))
47 bool GetChromeosInfoFunction::GetValue(const std::string& property_name,
  /external/chromium/chrome/browser/prefs/
pref_value_map.cc 18 bool PrefValueMap::GetValue(const std::string& key, const Value** value) const {
29 bool PrefValueMap::GetValue(const std::string& key, Value** value) {
91 return GetValue(key, &stored_value) && stored_value->GetAsBoolean(value);
97 return GetValue(key, &stored_value) && stored_value->GetAsString(value);
value_map_pref_store.cc 16 PrefStore::ReadResult ValueMapPrefStore::GetValue(const std::string& key,
18 return prefs_.GetValue(key, value) ? READ_OK : READ_NO_VALUE;
  /external/chromium/webkit/glue/
cpp_binding_example.cc 14 virtual bool GetValue(CppVariant* value) {
  /external/chromium_org/cc/animation/
scroll_offset_animation_curve.cc 48 gfx::Vector2dF ScrollOffsetAnimationCurve::GetValue(double t) const {
55 double progress = timing_function_->GetValue(t / duration_);
  /external/chromium_org/ppapi/cpp/dev/
scrollbar_dev.cc 51 uint32_t Scrollbar_Dev::GetValue() {
54 return get_interface<PPB_Scrollbar_Dev>()->GetValue(pp_resource());
  /external/chromium_org/ppapi/thunk/
ppb_scrollbar_thunk.cc 43 uint32_t GetValue(PP_Resource scrollbar) {
47 return enter.object()->GetValue();
81 &GetValue,
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 93 function GetValue: String;
97 property Value: String read GetValue write SetValue;
109 function GetValue: String;
446 function TANTLRString.GetValue: String;
  /external/chromium/app/sql/
meta_table.cc 60 bool MetaTable::GetValue(const char* key, std::string* value) {
78 bool MetaTable::GetValue(const char* key, int* value) {
95 bool MetaTable::GetValue(const char* key, int64* value) {
110 if (!GetValue(kVersionKey, &version))
121 if (!GetValue(kCompatibleVersionKey, &version))
  /external/chromium_org/android_webview/browser/
aw_pref_store.cc 14 bool AwPrefStore::GetValue(const std::string& key,
16 return prefs_.GetValue(key, value);
21 return prefs_.GetValue(key, value);
  /external/chromium_org/chrome/browser/automation/
automation_event_queue.h 30 DictionaryValue* GetValue() { return event_value_.get(); }
  /external/chromium_org/chrome/browser/managed_mode/
supervised_user_pref_store.cc 58 bool SupervisedUserPrefStore::GetValue(const std::string& key,
61 return prefs_->GetValue(key, value);
  /external/chromium_org/components/policy/core/browser/
configuration_policy_pref_store.cc 65 bool ConfigurationPolicyPrefStore::GetValue(const std::string& key,
68 if (!prefs_.get() || !prefs_->GetValue(key, &stored_value))
  /external/chromium_org/ppapi/c/dev/
ppb_scrollbar_dev.h 73 uint32_t (*GetValue)(PP_Resource scrollbar);
  /art/compiler/sea_ir/code_gen/
code_gen.h 53 llvm::Value* GetValue(int instruction_id) {
59 llvm::Value* GetValue(InstructionNode* instruction) {
60 return GetValue(instruction->Id());

Completed in 2309 milliseconds

1 2 3 4 5 6