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

/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/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);
H A Duser_policy_cache.cc265 Value* int_value = DecodeIntegerValue(*i); local
266 if (int_value)
267 list->Append(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);
H A Djson_schema_validator.cc36 int int_value = 0; local
37 if (value->GetInteger(key, &int_value)) {
38 *number = 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;
/external/chromium/chrome/browser/metrics/
H A Dmetrics_log.cc440 int int_value; local
441 if (value->GetAsInteger(&int_value)) {
444 WriteIntAttribute("value", int_value);
/external/chromium/chrome/browser/importer/
H A Dfirefox_importer_utils.cc422 int int_value = 0; local
423 if (base::StringToInt(value, &int_value)) {
424 prefs->SetInteger(key, int_value);
/external/chromium/base/
H A Dvalues_unittest.cc69 int int_value = 0; local
75 ASSERT_FALSE(mixed_list->GetInteger(0, &int_value));
76 ASSERT_EQ(0, int_value);
86 ASSERT_TRUE(mixed_list->GetInteger(1, &int_value));
87 ASSERT_EQ(42, int_value);
/external/chromium/chrome/browser/printing/
H A Dprint_dialog_cloud.cc106 int int_value = 0; local
107 if (!dictionary.GetInteger(path, &int_value))
109 *out_value = int_value;
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.c131 int int_value; local
151 int_value = 0;
154 case -2: int_value = 0; break;
155 case -1: int_value = 0; break;
156 case 0: int_value = 1; break;
173 if (int_value) { VG_(gdb_printf) (
198 int_value = 0;
201 int_value = strtol (wcmd, &endptr, 10);
207 VG_(dyn_vgdb_error), int_value);
208 VG_(dyn_vgdb_error) = int_value;
[all...]
/external/v8/src/
H A Ddeoptimizer.cc1001 uint64_t int_value = BitCast<uint64_t, double>(double_value); local
1002 int32_t lower = static_cast<int32_t>(int_value);
1003 int32_t upper = static_cast<int32_t>(int_value >> kBitsPerInt);
H A Dheap.cc2868 int int_value = FastD2I(value); local
2869 if (value == int_value && Smi::IsValid(int_value)) {
2870 return Smi::FromInt(int_value);
H A Dobjects-inl.h822 int int_value = FastD2I(value); local
823 if (value == FastI2D(int_value) && Smi::IsValid(int_value)) {
824 return Smi::FromInt(int_value);
H A Dobjects.cc11421 int int_value = Smi::cast(value)->value(); local
11422 if (int_value < 0) {
11424 } else if (int_value > 255) {
11427 clamped_value = static_cast<uint8_t>(int_value);
11460 int int_value = Smi::cast(value)->value(); local
11461 cast_value = static_cast<ValueType>(int_value);
11514 int int_value = Smi::cast(value)->value(); local
11515 cast_value = static_cast<uint32_t>(int_value);
11535 int int_value = Smi::cast(value)->value(); local
11536 cast_value = static_cast<float>(int_value);
11556 int int_value = Smi::cast(value)->value(); local
[all...]
/external/v8/src/arm/
H A Dsimulator-arm.cc2894 int32_t int_value = get_sinteger_from_s_register(n); local
2895 set_register(t, int_value);
/external/valgrind/main/memcheck/
H A Dmc_main.c5205 int int_value; local
5210 int_value = 0;
5213 int_value = VG_(strtoll10) (wcmd, (Char **)&endptr);
5217 else if (int_value > 0)
5218 lcp.max_loss_records_output = (UInt) int_value;
5221 int_value);

Completed in 861 milliseconds