/external/clang/test/PCH/ |
D | types.c | 9 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;
|
D | cxx_exprs.h | 21 int int_value; variable 22 typedef __typeof__(double(int_value)) functional_cast_result;
|
/external/valgrind/main/coregrind/m_gdbserver/ |
D | server.c | 129 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/ |
D | extension_tts_api_util.cc | 26 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/ |
D | js_arg_list_unittest.cc | 39 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/ |
D | updatebase.py | 37 int_value = int(string_value) 38 return int_value
|
/external/chromium/chrome/common/ |
D | json_value_serializer_unittest.cc | 38 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()
|
D | json_schema_validator.cc | 36 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/ |
D | configuration_policy_provider_mac.cc | 78 int int_value; in Load() local 81 &int_value); in Load() 83 policy->SetInteger(current->name, int_value); in Load()
|
D | configuration_policy_provider_delegate_win.cc | 77 uint32 int_value; in Load() local 78 if (GetRegistryPolicyInteger(name, &int_value)) { in Load() 79 result->SetInteger(current->name, int_value); in Load()
|
D | user_policy_cache.cc | 265 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/ |
D | proxy_config_service_mac.cc | 35 int int_value; in GetBoolFromDictionary() local 36 if (CFNumberGetValue(number, kCFNumberIntType, &int_value)) in GetBoolFromDictionary() 37 return int_value; in GetBoolFromDictionary()
|
D | proxy_config_service_linux.cc | 651 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/ |
D | metrics_log.cc | 440 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/ |
D | firefox_importer_utils.cc | 422 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/ |
D | print_dialog_cloud.cc | 106 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/ |
D | values_unittest.cc | 69 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/ |
D | pump.py | 598 int_value = int(value) 599 if ('%s' % int_value) == value: 600 value = int_value
|
/external/chromium/testing/gtest/scripts/ |
D | pump.py | 598 int_value = int(value) 599 if ('%s' % int_value) == value: 600 value = int_value
|
/external/v8/src/ |
D | deoptimizer.cc | 1001 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()
|
D | objects.cc | 11421 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 …]
|
D | objects-inl.h | 822 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()
|
D | heap.cc | 2868 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/ |
D | preferences.cc | 411 config.int_value = value; in SetLanguageConfigInteger()
|
/external/v8/src/arm/ |
D | simulator-arm.cc | 2894 int32_t int_value = get_sinteger_from_s_register(n); in DecodeVMOVBetweenCoreAndSinglePrecisionRegisters() local 2895 set_register(t, int_value); in DecodeVMOVBetweenCoreAndSinglePrecisionRegisters()
|