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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/cc/animation/
timing_function_unittest.cc 18 EXPECT_NEAR(function->GetValue(0), 0, epsilon);
19 EXPECT_NEAR(function->GetValue(0.05), 0.01136, epsilon);
20 EXPECT_NEAR(function->GetValue(0.1), 0.03978, epsilon);
21 EXPECT_NEAR(function->GetValue(0.15), 0.079780, epsilon);
22 EXPECT_NEAR(function->GetValue(0.2), 0.12803, epsilon);
23 EXPECT_NEAR(function->GetValue(0.25), 0.18235, epsilon);
24 EXPECT_NEAR(function->GetValue(0.3), 0.24115, epsilon);
25 EXPECT_NEAR(function->GetValue(0.35), 0.30323, epsilon);
26 EXPECT_NEAR(function->GetValue(0.4), 0.36761, epsilon);
27 EXPECT_NEAR(function->GetValue(0.45), 0.43345, epsilon)
    [all...]
keyframed_animation_curve_unittest.cc 30 EXPECT_FLOAT_EQ(2.f, curve->GetValue(-1.f));
31 EXPECT_FLOAT_EQ(2.f, curve->GetValue(0.f));
32 EXPECT_FLOAT_EQ(2.f, curve->GetValue(0.5f));
33 EXPECT_FLOAT_EQ(2.f, curve->GetValue(1.f));
34 EXPECT_FLOAT_EQ(2.f, curve->GetValue(2.f));
45 EXPECT_FLOAT_EQ(2.f, curve->GetValue(-1.f));
46 EXPECT_FLOAT_EQ(2.f, curve->GetValue(0.f));
47 EXPECT_FLOAT_EQ(3.f, curve->GetValue(0.5f));
48 EXPECT_FLOAT_EQ(4.f, curve->GetValue(1.f));
49 EXPECT_FLOAT_EQ(4.f, curve->GetValue(2.f))
    [all...]
animation_curve.h 40 virtual float GetValue(double t) const = 0;
50 virtual gfx::Transform GetValue(double t) const = 0;
60 virtual FilterOperations GetValue(double t) const = 0;
  /external/chromium_org/ui/base/
view_prop_unittest.cc 26 EXPECT_EQ(NULL, ViewProp::GetValue(nv1, kKey1));
31 EXPECT_EQ(data1, ViewProp::GetValue(nv1, kKey1));
35 EXPECT_EQ(NULL, ViewProp::GetValue(nv1, kKey1));
40 EXPECT_EQ(data1, ViewProp::GetValue(nv1, kKey1));
45 EXPECT_EQ(data2, ViewProp::GetValue(nv1, kKey1));
49 EXPECT_EQ(NULL, ViewProp::GetValue(nv1, kKey1));
53 EXPECT_EQ(NULL, ViewProp::GetValue(nv1, kKey1));
59 EXPECT_EQ(data1, ViewProp::GetValue(nv1, kKey1));
60 EXPECT_EQ(data2, ViewProp::GetValue(nv2, kKey2));
63 EXPECT_EQ(NULL, ViewProp::GetValue(nv1, kKey1))
    [all...]
  /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.h 22 bool GetValue(const std::string& property_name, std::string* value);
  /external/chromium_org/chrome/browser/chromeos/extensions/
info_private_api.h 30 base::Value* GetValue(const std::string& property_name);
  /external/chromium/chrome/browser/
plugin_data_remover_helper.h 34 bool GetValue() const { return pref_.GetValue(); }
  /external/chromium/chrome/browser/prefs/
default_pref_store.cc 12 CHECK(GetValue(key, NULL) == READ_NO_VALUE);
18 return GetValue(key, &value) == READ_OK ? value->GetType()
pref_value_map_unittest.cc 15 EXPECT_FALSE(map.GetValue("key", &result));
22 EXPECT_TRUE(map.GetValue("key", &result));
31 EXPECT_TRUE(map.GetValue("key", NULL));
34 EXPECT_FALSE(map.GetValue("key", NULL));
42 EXPECT_TRUE(map.GetValue("key", NULL));
46 EXPECT_FALSE(map.GetValue("key", NULL));
pref_member_unittest.cc 60 value_ = pref_.GetValue();
84 EXPECT_EQ(str_.GetValue(), prefs_->GetString(kStringPref));
107 EXPECT_FALSE(boolean.GetValue());
112 EXPECT_TRUE(boolean.GetValue());
119 EXPECT_FALSE(boolean.GetValue());
128 EXPECT_EQ(0, integer.GetValue());
133 EXPECT_EQ(5, integer.GetValue());
140 EXPECT_EQ(2, integer.GetValue());
149 EXPECT_EQ(0.0, double_member.GetValue());
154 EXPECT_EQ(1.0, double_member.GetValue());
    [all...]
  /external/chromium/app/sql/
meta_table.h 66 bool GetValue(const char* key, std::string* value);
67 bool GetValue(const char* key, int* value);
68 bool GetValue(const char* key, int64* value);
  /external/chromium_org/base/prefs/
pref_value_map_unittest.cc 16 EXPECT_FALSE(map.GetValue("key", &result));
23 EXPECT_TRUE(map.GetValue("key", &result));
45 EXPECT_TRUE(map.GetValue("key", NULL));
48 EXPECT_FALSE(map.GetValue("key", NULL));
56 EXPECT_TRUE(map.GetValue("key", NULL));
60 EXPECT_FALSE(map.GetValue("key", NULL));
105 EXPECT_TRUE(first_map.GetValue("d", NULL));
106 EXPECT_TRUE(first_map.GetValue("e", NULL));
107 EXPECT_TRUE(first_map.GetValue("f", NULL));
109 EXPECT_TRUE(second_map.GetValue("a", NULL))
    [all...]
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);
overlay_user_pref_store_unittest.cc 96 EXPECT_FALSE(overlay_->GetValue(overlay_key, &value));
97 EXPECT_FALSE(underlay_->GetValue(overlay_key, &value));
102 EXPECT_TRUE(overlay_->GetValue(overlay_key, &value));
105 EXPECT_TRUE(underlay_->GetValue(overlay_key, &value));
110 EXPECT_TRUE(overlay_->GetValue(overlay_key, &value));
113 EXPECT_TRUE(underlay_->GetValue(overlay_key, &value));
119 EXPECT_TRUE(overlay_->GetValue(overlay_key, &value));
122 EXPECT_TRUE(underlay_->GetValue(overlay_key, &value));
167 EXPECT_TRUE(overlay_->GetValue(regular_key, &value));
176 EXPECT_TRUE(overlay_->GetValue(regular_key, &value))
    [all...]
  /external/chromium_org/sql/
meta_table.h 67 bool GetValue(const char* key, std::string* value);
68 bool GetValue(const char* key, int* value);
69 bool GetValue(const char* key, int64* value);
  /external/chromium_org/chrome/browser/chromeos/drive/
remove_stale_cache_files.cc 30 (!it->GetValue().is_dirty() &&
31 it->GetValue().md5() != entry.file_specific_info().md5())) {
  /external/chromium_org/chrome/browser/content_settings/
content_settings_origin_identifier_value_map_unittest.cc 18 map.GetValue(GURL("http://www.google.com"),
29 EXPECT_TRUE(expected_value->Equals(map.GetValue(GURL("http://www.google.com"),
35 map.GetValue(GURL("http://www.google.com"),
41 map.GetValue(GURL("http://www.youtube.com"),
47 map.GetValue(GURL("http://www.google.com"),
52 EXPECT_EQ(NULL, map.GetValue(GURL("http://www.google.com"),
61 EXPECT_EQ(NULL, map.GetValue(GURL("http://www.google.com"),
75 EXPECT_TRUE(map.GetValue(GURL("http://www.google.com"),
80 EXPECT_EQ(NULL, map.GetValue(GURL("http://www.google.com"),
90 EXPECT_EQ(NULL, map.GetValue(GURL("http://www.google.com")
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_scrollbar_api.h 19 virtual uint32_t GetValue() = 0;
  /external/chromium_org/ui/views/widget/
child_window_message_processor.cc 25 ui::ViewProp::GetValue(hwnd, kChildWindowKey));
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32regkey.h 134 HRESULT GetValue(const wchar_t* value_name, DWORD* value) const;
137 HRESULT GetValue(const wchar_t* value_name, DWORD64* value) const;
140 HRESULT GetValue(const wchar_t* value_name, wchar_t** value) const;
143 HRESULT GetValue(const wchar_t* value_name, std::wstring* value) const;
146 HRESULT GetValue(const wchar_t* value_name,
150 HRESULT GetValue(const wchar_t* value_name,
155 HRESULT GetValue(const wchar_t* value_name,
213 static HRESULT GetValue(const wchar_t* full_key_name,
221 static HRESULT GetValue(const wchar_t* full_key_name,
226 static HRESULT GetValue(const wchar_t* full_key_name
    [all...]
  /external/chromium_org/chrome/browser/policy/
registry_dict_win_unittest.cc 24 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("one")));
25 EXPECT_FALSE(test_dict.GetValue("two"));
29 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("one")));
30 EXPECT_TRUE(base::Value::Equals(&string_value, test_dict.GetValue("two")));
35 EXPECT_FALSE(test_dict.GetValue("one"));
36 EXPECT_TRUE(base::Value::Equals(&string_value, test_dict.GetValue("two")));
39 EXPECT_FALSE(test_dict.GetValue("one"));
40 EXPECT_FALSE(test_dict.GetValue("two"));
52 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("oNe")));
60 EXPECT_TRUE(base::Value::Equals(&string_value, test_dict.GetValue("one")))
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_handler.cc 143 selected_values.Append(Value::CreateStringValue(standard_font_.GetValue()));
144 selected_values.Append(Value::CreateStringValue(serif_font_.GetValue()));
145 selected_values.Append(Value::CreateStringValue(sans_serif_font_.GetValue()));
146 selected_values.Append(Value::CreateStringValue(fixed_font_.GetValue()));
147 selected_values.Append(Value::CreateStringValue(font_encoding_.GetValue()));
178 StringValue font_value(standard_font_.GetValue());
179 FundamentalValue size_value(default_font_size_.GetValue());
185 StringValue font_value(serif_font_.GetValue());
186 FundamentalValue size_value(default_font_size_.GetValue());
192 StringValue font_value(sans_serif_font_.GetValue());
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
font_settings_handler.cc 199 standard_font_.GetValue())));
201 serif_font_.GetValue())));
203 sans_serif_font_.GetValue())));
205 fixed_font_.GetValue())));
206 selected_values.Append(new base::StringValue(font_encoding_.GetValue()));
214 base::StringValue font_value(standard_font_.GetValue());
215 base::FundamentalValue size_value(default_font_size_.GetValue());
221 base::StringValue font_value(serif_font_.GetValue());
222 base::FundamentalValue size_value(default_font_size_.GetValue());
228 base::StringValue font_value(sans_serif_font_.GetValue());
    [all...]

Completed in 333 milliseconds

1 2 3 4 5 6 7 8 91011>>