Searched refs:int_value (Results 1 - 25 of 81) sorted by relevance

1234

/external/chromium_org/base/
H A Dsys_info.cc22 int int_value = 0; local
26 StringToInt(string_value, &int_value);
28 if (int_value == 1)
30 if (int_value != 2)
H A Dvalue_conversions.cc41 int64 int_value; local
42 if (!value.GetAsString(&str) || !base::StringToInt64(str, &int_value))
45 *time = TimeDelta::FromInternalValue(int_value);
/external/chromium_org/chrome/browser/profiles/
H A Dincognito_mode_policy_handler.cc26 int int_value = IncognitoModePrefs::ENABLED; local
31 if (availability->GetAsInteger(&int_value)) {
33 if (!IncognitoModePrefs::IntToAvailability(int_value,
37 base::IntToString(int_value));
67 int int_value = IncognitoModePrefs::ENABLED; local
69 if (availability->GetAsInteger(&int_value) &&
70 IncognitoModePrefs::IntToAvailability(int_value,
/external/clang/test/PCH/
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;
H A Dcxx_exprs.h21 int int_value; variable
22 typedef __typeof__(double(int_value)) functional_cast_result;
/external/chromium_org/components/policy/core/common/
H A Dregistry_dict_win_unittest.cc19 base::FundamentalValue int_value(42);
22 test_dict.SetValue("one", scoped_ptr<base::Value>(int_value.DeepCopy()));
24 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("one")));
29 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("one")));
34 EXPECT_TRUE(base::Value::Equals(&int_value, one.get()));
47 base::FundamentalValue int_value(42);
50 test_dict.SetValue("One", scoped_ptr<base::Value>(int_value.DeepCopy()));
52 EXPECT_TRUE(base::Value::Equals(&int_value, test_dict.GetValue("oNe")));
70 base::FundamentalValue int_value(42);
74 subdict->SetValue("one", scoped_ptr<base::Value>(int_value
[all...]
H A Dmac_util.cc65 int int_value = 0; local
66 if (CFNumberGetValue(number, kCFNumberIntType, &int_value)) {
67 return scoped_ptr<base::Value>(new base::FundamentalValue(int_value));
/external/lldb/tools/lldb-perf/common/stepping/
H A Dstepping-testcase.cpp8 int_value(in_int),
19 int int_value; member in struct:struct_for_copying
/external/chromium_org/media/cast/test/utility/
H A Dinput_builder.cc61 int int_value; local
62 CHECK(base::StringToInt(string_input, &int_value));
63 return int_value;
/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/device/serial/
H A Dserial_device_enumerator_linux.cc86 uint32 int_value; local
87 if (vendor_id && base::HexStringToUInt(vendor_id, &int_value)) {
88 info->vendor_id = int_value;
91 if (product_id && base::HexStringToUInt(product_id, &int_value)) {
92 info->product_id = int_value;
/external/chromium_org/chrome/browser/content_settings/
H A Dcontent_settings_provider_unittest.cc35 int int_value = -1; local
36 value_ptr->GetAsInteger(&int_value);
37 EXPECT_EQ(CONTENT_SETTING_BLOCK, IntToContentSetting(int_value));
H A Dcontent_settings_utils.cc164 int int_value = -1; local
165 if (!value->GetAsInteger(&int_value))
167 *setting = IntToContentSetting(int_value);
/external/chromium_org/chrome/browser/ui/webui/
H A Dmetrics_handler.cc62 int int_value = static_cast<int>(value); local
65 int_value > int_boundary_value ||
66 int_value < 0) {
82 counter->Add(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/chrome/browser/chromeos/login/enrollment/
H A Dauto_enrollment_controller.cc31 int int_value; local
32 if (!base::StringToInt(value, &int_value)) {
37 if (int_value < 0) {
42 if (int_value > policy::AutoEnrollmentClient::kMaximumPower) {
48 return int_value;
/external/chromium_org/google_apis/drive/
H A Dbase_requests_unittest.cc100 int int_value = 0; local
101 ASSERT_TRUE(root_dict->GetInteger("test", &int_value));
102 EXPECT_EQ(123, int_value);
/external/chromium_org/content/child/
H A Dplugin_param_traits.cc23 int_value(0),
44 WriteParam(m, p.int_value);
76 result = ReadParam(m, iter, &r->int_value);
101 LogParam(p.int_value, l);
H A Dplugin_param_traits.h51 int int_value; member in struct:content::NPVariant_Param
/external/chromium_org/tools/gn/
H A Doperators.cc190 left->int_value() += right.int_value();
196 base::Int64ToString(left->int_value()) + right.string_value());
210 left->string_value().append(base::Int64ToString(right.int_value()));
283 left->int_value() -= right.int_value();
397 return Value(op_node, left.int_value() <= right.int_value());
407 return Value(op_node, left.int_value() >= right.int_value());
[all...]
H A Dvalue.h67 int64& int_value() { function in class:Value
71 const int64& int_value() const { function in class:Value
/external/chromium_org/tools/metrics/histograms/
H A Dextract_histograms.py200 int_value = int(int_tag.getAttribute('value'))
201 if last_int_value is not None and int_value < last_int_value:
203 name, last_int_value, int_value)
205 last_int_value = int_value
206 if int_value in enum_dict['values']:
207 logging.error('Duplicate enum value %d for enum %s', int_value, name)
212 enum_dict['values'][int_value] = value_dict
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_program_unittest.cc79 GLint int_value = 0; local
82 glGetUniformiv(program, location_sx, &int_value);
83 EXPECT_EQ(3, int_value);
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.c192 int int_value; local
213 int_value = 0;
216 case -2: int_value = 0; break;
217 case -1: int_value = 0; break;
218 case 0: int_value = 1; break;
238 if (int_value) { VG_(gdb_printf) (
270 int_value = 0;
274 int_value = strtol (wcmd, &the_end, 10);
281 VG_(dyn_vgdb_error), int_value);
282 VG_(dyn_vgdb_error) = int_value;
[all...]
/external/chromium_org/chrome/browser/prefs/
H A Dpref_hash_calculator_unittest.cc83 scoped_ptr<base::Value> int_value(new base::FundamentalValue(1234567890));
118 ASSERT_EQ(base::Value::TYPE_INTEGER, int_value->GetType());
142 "pref.path", int_value.get(), kExpectedIntegerValue));
172 everything.Set("int", int_value.release());

Completed in 537 milliseconds

1234