Home
last modified time | relevance | path

Searched refs:int_value (Results 1 – 25 of 26) sorted by relevance

12

/external/clang/test/PCH/
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;
Dcxx_exprs.h21 int int_value; variable
22 typedef __typeof__(double(int_value)) functional_cast_result;
/external/valgrind/main/coregrind/m_gdbserver/
Dserver.c129 int int_value; in handle_gdb_valgrind_command() local
149 int_value = 0; in handle_gdb_valgrind_command()
152 case -2: int_value = 0; break; in handle_gdb_valgrind_command()
153 case -1: int_value = 0; break; in handle_gdb_valgrind_command()
154 case 0: int_value = 1; break; in handle_gdb_valgrind_command()
171 if (int_value) { VG_(gdb_printf) ( in handle_gdb_valgrind_command()
195 int_value = 0; in handle_gdb_valgrind_command()
198 int_value = strtol (wcmd, &endptr, 10); in handle_gdb_valgrind_command()
204 VG_(dyn_vgdb_error), int_value); in handle_gdb_valgrind_command()
205 VG_(dyn_vgdb_error) = int_value; in handle_gdb_valgrind_command()
[all …]
/external/chromium/chrome/browser/extensions/
Dextension_tts_api_util.cc26 int int_value; in ReadNumberByKey() local
27 if (!dict->GetInteger(key, &int_value)) in ReadNumberByKey()
29 *ret_value = int_value; in ReadNumberByKey()
/external/chromium/chrome/browser/sync/
Djs_arg_list_unittest.cc39 FundamentalValue int_value(5); in TEST_F() local
46 vec.push_back(&int_value); in TEST_F()
53 list.Append(int_value.DeepCopy()); in TEST_F()
/external/webkit/Tools/QueueStatusServer/handlers/
Dupdatebase.py37 int_value = int(string_value)
38 return int_value
/external/chromium/chrome/common/
Djson_value_serializer_unittest.cc38 int int_value = 0; in TEST() local
39 ASSERT_TRUE(root_dict->GetInteger("int", &int_value)); in TEST()
40 ASSERT_EQ(42, int_value); in TEST()
276 int int_value = 0; in TEST_F() local
277 ASSERT_TRUE(root_dict->GetInteger("int", &int_value)); in TEST_F()
278 ASSERT_EQ(42, int_value); in TEST_F()
Djson_schema_validator.cc36 int int_value = 0; in GetNumberFromDictionary() local
37 if (value->GetInteger(key, &int_value)) { in GetNumberFromDictionary()
38 *number = int_value; in GetNumberFromDictionary()
/external/chromium/chrome/browser/policy/
Dconfiguration_policy_provider_mac.cc78 int int_value; in Load() local
81 &int_value); in Load()
83 policy->SetInteger(current->name, int_value); in Load()
Dconfiguration_policy_provider_delegate_win.cc77 uint32 int_value; in Load() local
78 if (GetRegistryPolicyInteger(name, &int_value)) { in Load()
79 result->SetInteger(current->name, int_value); in Load()
Duser_policy_cache.cc265 Value* int_value = DecodeIntegerValue(*i); in DecodeValue() local
266 if (int_value) in DecodeValue()
267 list->Append(int_value); in DecodeValue()
/external/chromium/net/proxy/
Dproxy_config_service_mac.cc35 int int_value; in GetBoolFromDictionary() local
36 if (CFNumberGetValue(number, kCFNumberIntType, &int_value)) in GetBoolFromDictionary()
37 return int_value; in GetBoolFromDictionary()
Dproxy_config_service_linux.cc651 int int_value; in AddKDESetting() local
652 base::StringToInt(value, &int_value); in AddKDESetting()
653 switch (int_value) { in AddKDESetting()
684 int int_value; in AddKDESetting() local
685 base::StringToInt(value, &int_value); in AddKDESetting()
686 reversed_bypass_list_ = (value == "true" || int_value); in AddKDESetting()
/external/chromium/chrome/browser/metrics/
Dmetrics_log.cc440 int int_value; in WriteProfileMetrics() local
441 if (value->GetAsInteger(&int_value)) { in WriteProfileMetrics()
444 WriteIntAttribute("value", int_value); in WriteProfileMetrics()
/external/chromium/chrome/browser/importer/
Dfirefox_importer_utils.cc422 int int_value = 0; in ParsePrefFile() local
423 if (base::StringToInt(value, &int_value)) { in ParsePrefFile()
424 prefs->SetInteger(key, int_value); in ParsePrefFile()
/external/chromium/chrome/browser/printing/
Dprint_dialog_cloud.cc106 int int_value = 0; in GetDoubleOrInt() local
107 if (!dictionary.GetInteger(path, &int_value)) in GetDoubleOrInt()
109 *out_value = int_value; in GetDoubleOrInt()
/external/chromium/base/
Dvalues_unittest.cc69 int int_value = 0; in TEST_F() local
75 ASSERT_FALSE(mixed_list->GetInteger(0, &int_value)); in TEST_F()
76 ASSERT_EQ(0, int_value); in TEST_F()
86 ASSERT_TRUE(mixed_list->GetInteger(1, &int_value)); in TEST_F()
87 ASSERT_EQ(42, int_value); in TEST_F()
/external/gtest/scripts/
Dpump.py598 int_value = int(value)
599 if ('%s' % int_value) == value:
600 value = int_value
/external/chromium/testing/gtest/scripts/
Dpump.py598 int_value = int(value)
599 if ('%s' % int_value) == value:
600 value = int_value
/external/v8/src/
Ddeoptimizer.cc1001 uint64_t int_value = BitCast<uint64_t, double>(double_value); in DoOsrTranslateCommand() local
1002 int32_t lower = static_cast<int32_t>(int_value); in DoOsrTranslateCommand()
1003 int32_t upper = static_cast<int32_t>(int_value >> kBitsPerInt); in DoOsrTranslateCommand()
Dobjects.cc11421 int int_value = Smi::cast(value)->value(); in SetValue() local
11422 if (int_value < 0) { in SetValue()
11424 } else if (int_value > 255) { in SetValue()
11427 clamped_value = static_cast<uint8_t>(int_value); in SetValue()
11460 int int_value = Smi::cast(value)->value(); in ExternalArrayIntSetter() local
11461 cast_value = static_cast<ValueType>(int_value); in ExternalArrayIntSetter()
11514 int int_value = Smi::cast(value)->value(); in SetValue() local
11515 cast_value = static_cast<uint32_t>(int_value); in SetValue()
11535 int int_value = Smi::cast(value)->value(); in SetValue() local
11536 cast_value = static_cast<float>(int_value); in SetValue()
[all …]
Dobjects-inl.h822 int int_value = FastD2I(value); in ToSmi() local
823 if (value == FastI2D(int_value) && Smi::IsValid(int_value)) { in ToSmi()
824 return Smi::FromInt(int_value); in ToSmi()
Dheap.cc2868 int int_value = FastD2I(value); in NumberFromDouble() local
2869 if (value == int_value && Smi::IsValid(int_value)) { in NumberFromDouble()
2870 return Smi::FromInt(int_value); in NumberFromDouble()
/external/chromium/chrome/browser/chromeos/
Dpreferences.cc411 config.int_value = value; in SetLanguageConfigInteger()
/external/v8/src/arm/
Dsimulator-arm.cc2894 int32_t int_value = get_sinteger_from_s_register(n); in DecodeVMOVBetweenCoreAndSinglePrecisionRegisters() local
2895 set_register(t, int_value); in DecodeVMOVBetweenCoreAndSinglePrecisionRegisters()

12