Searched defs:int_value (Results 1 - 25 of 71) sorted by relevance

123

/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_provider_unittest.cc36 int int_value = -1; local
37 value_ptr->GetAsInteger(&int_value);
38 EXPECT_EQ(CONTENT_SETTING_BLOCK, IntToContentSetting(int_value));
H A Dcontent_settings_policy_provider_unittest.cc182 int int_value = -1; local
183 value_ptr->GetAsInteger(&int_value);
184 EXPECT_EQ(CONTENT_SETTING_BLOCK, IntToContentSetting(int_value));
H A Dcontent_settings_default_provider.cc318 int int_value = CONTENT_SETTING_DEFAULT; local
319 bool is_integer = i.value().GetAsInteger(&int_value);
322 Value::CreateIntegerValue(int_value));
/external/chromium/chrome/browser/extensions/
H A Dextension_tts_api_util.cc26 int int_value; local
27 if (!dict->GetInteger(key, &int_value))
29 *ret_value = int_value;
/external/chromium_org/base/prefs/
H A Dpref_value_map_unittest.cc31 int int_value = 0; local
32 EXPECT_TRUE(map.GetInteger("key", &int_value));
33 EXPECT_EQ(5, int_value);
36 EXPECT_TRUE(map.GetInteger("key", &int_value));
37 EXPECT_EQ(-14, int_value);
/external/chromium_org/base/
H A Dvalue_conversions.cc38 int64 int_value; local
39 if (!value.GetAsString(&str) || !base::StringToInt64(str, &int_value))
42 *time = TimeDelta::FromInternalValue(int_value);
/external/chromium_org/chromeos/ime/
H A Dinput_method_config.cc16 int_value(0),
31 stream << ", int_value=" << int_value; local
H A Dinput_method_config.h36 int int_value; member in struct:chromeos::input_method::InputMethodConfigValue
/external/chromium_org/net/proxy/
H A Dproxy_config_service_ios.cc32 int int_value; local
33 if (CFNumberGetValue(number, kCFNumberIntType, &int_value))
34 return int_value;
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dcodec_unittest.cc263 int int_value = 0; local
264 EXPECT_TRUE(codec.GetParam("a", &int_value));
265 EXPECT_EQ(1, int_value);
266 EXPECT_FALSE(codec.GetParam("b", &int_value));
267 EXPECT_FALSE(codec.GetParam("c", &int_value));
/external/chromium_org/chrome/browser/google_apis/
H A Dbase_requests_unittest.cc67 int int_value = 0; local
68 ASSERT_TRUE(root_dict->GetInteger("test", &int_value));
69 EXPECT_EQ(123, int_value);
/external/chromium_org/tools/gn/
H A Dvalue.h40 int64& int_value() { function in class:Value
44 const int64& int_value() const { function in class:Value
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_provider_delegate_win.cc77 uint32 int_value; local
78 if (GetRegistryPolicyInteger(name, &int_value)) {
79 result->SetInteger(current->name, int_value);
H A Dconfiguration_policy_provider_mac.cc78 int int_value; local
81 &int_value);
83 policy->SetInteger(current->name, int_value);
/external/chromium_org/chrome/browser/prefs/
H A Dcommand_line_pref_store.cc123 int int_value = 0; local
124 if (!base::StringToInt(str_value, &int_value)) {
130 Value* value = Value::CreateIntegerValue(int_value);
/external/chromium_org/chrome/browser/ui/webui/
H A Dmetrics_handler.cc61 int int_value = static_cast<int>(value); local
64 int_value > int_boundary_value ||
65 int_value < 0) {
81 counter->Add(int_value);
/external/chromium_org/content/browser/aura/
H A Dbrowser_compositor_output_surface.cc35 int int_value; local
36 if (base::StringToInt(string_value, &int_value))
37 capabilities_.max_frames_pending = int_value;
/external/chromium_org/content/browser/media/
H A Dwebrtc_internals_unittest.cc86 int int_value; local
87 EXPECT_TRUE(dict->GetInteger("pid", &int_value));
88 EXPECT_EQ(1, int_value);
89 EXPECT_TRUE(dict->GetInteger("lid", &int_value));
90 EXPECT_EQ(2, int_value);
116 int int_value; local
117 EXPECT_TRUE(dict->GetInteger("pid", &int_value));
118 EXPECT_EQ(1, int_value);
119 EXPECT_TRUE(dict->GetInteger("lid", &int_value));
120 EXPECT_EQ(2, int_value);
142 int int_value; local
[all...]
/external/chromium_org/content/child/
H A Dplugin_param_traits.h51 int int_value; member in struct:content::NPVariant_Param
/external/chromium_org/dbus/
H A Dvalues_util.cc222 int int_value = 0; local
223 bool success = value.GetAsInteger(&int_value);
225 writer->AppendInt32(int_value);
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_program_unittests.cc79 GLint int_value = 0; local
82 glGetUniformiv(program, location_sx, &int_value);
83 EXPECT_EQ(3, int_value);
/external/clang/test/PCH/
H A Dcxx_exprs.h21 int int_value; variable
22 typedef __typeof__(double(int_value)) functional_cast_result;
H A Dtypes.c9 INT int_value; variable
14 ASInt *as_int_ptr1 = &int_value; // expected-error{{changes address space of pointer}}
26 int_ptr int_value_ptr = &int_value;
68 typeof_17 *t17 = &int_value;
/external/chromium/chrome/common/
H A Djson_value_serializer_unittest.cc38 int int_value = 0; local
39 ASSERT_TRUE(root_dict->GetInteger("int", &int_value));
40 ASSERT_EQ(42, int_value);
276 int int_value = 0; local
277 ASSERT_TRUE(root_dict->GetInteger("int", &int_value));
278 ASSERT_EQ(42, int_value);
/external/chromium/net/proxy/
H A Dproxy_config_service_mac.cc35 int int_value; local
36 if (CFNumberGetValue(number, kCFNumberIntType, &int_value))
37 return int_value;

Completed in 675 milliseconds

123