/external/chromium/chrome/browser/extensions/ |
extension_tts_api_util.cc | 26 int int_value; local 27 if (!dict->GetInteger(key, &int_value)) 29 *ret_value = int_value;
|
/external/clang/test/PCH/ |
types.c | 9 INT int_value; variable 14 ASInt *as_int_ptr1 = &int_value; // expected-error{{changes address space of pointer}} 24 int_ptr int_value_ptr = &int_value; 66 typeof_17 *t17 = &int_value;
|
cxx_exprs.h | 21 int int_value; variable 22 typedef __typeof__(double(int_value)) functional_cast_result;
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
updatebase.py | 37 int_value = int(string_value) 38 return int_value
|
/external/chromium/chrome/browser/sync/ |
js_arg_list_unittest.cc | 39 FundamentalValue int_value(5); 46 vec.push_back(&int_value); 53 list.Append(int_value.DeepCopy());
|
/external/chromium/chrome/browser/policy/ |
configuration_policy_provider_delegate_win.cc | 77 uint32 int_value; local 78 if (GetRegistryPolicyInteger(name, &int_value)) { 79 result->SetInteger(current->name, int_value);
|
configuration_policy_provider_mac.cc | 78 int int_value; local 81 &int_value); 83 policy->SetInteger(current->name, int_value);
|
user_policy_cache.cc | 265 Value* int_value = DecodeIntegerValue(*i); local 266 if (int_value) 267 list->Append(int_value);
|
/external/chromium/chrome/common/ |
json_value_serializer_unittest.cc | 38 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);
|
json_schema_validator.cc | 36 int int_value = 0; local 37 if (value->GetInteger(key, &int_value)) { 38 *number = int_value;
|
/external/chromium/net/proxy/ |
proxy_config_service_mac.cc | 35 int int_value; local 36 if (CFNumberGetValue(number, kCFNumberIntType, &int_value)) 37 return int_value;
|
proxy_config_service_linux.cc | 651 int int_value; 652 base::StringToInt(value, &int_value); 653 switch (int_value) { 684 int int_value; 685 base::StringToInt(value, &int_value); 686 reversed_bypass_list_ = (value == "true" || int_value); [all...] |
/external/chromium/chrome/browser/importer/ |
firefox_importer_utils.cc | 422 int int_value = 0; local 423 if (base::StringToInt(value, &int_value)) { 424 prefs->SetInteger(key, int_value);
|
/external/chromium/chrome/browser/metrics/ |
metrics_log.cc | 440 int int_value; local 441 if (value->GetAsInteger(&int_value)) { 444 WriteIntAttribute("value", int_value);
|
/external/chromium/chrome/browser/printing/ |
print_dialog_cloud.cc | 106 int int_value = 0; local 107 if (!dictionary.GetInteger(path, &int_value)) 109 *out_value = int_value;
|
/external/chromium/base/ |
values_unittest.cc | 69 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/testing/gtest/scripts/ |
pump.py | 598 int_value = int(value) 599 if ('%s' % int_value) == value: 600 value = int_value
|
/external/bluetooth/glib/glib/ |
gkeyfile.c | 2094 gint int_value; local 3637 gint int_value; local [all...] |
/external/v8/src/ |
deoptimizer.cc | 749 uint64_t int_value = BitCast<uint64_t, double>(double_value); local 750 int32_t lower = static_cast<int32_t>(int_value); 751 int32_t upper = static_cast<int32_t>(int_value >> kBitsPerInt); [all...] |
objects-inl.h | 782 int int_value = FastD2I(value); local 783 if (value == FastI2D(int_value) && Smi::IsValid(int_value)) { 784 return Smi::FromInt(int_value); [all...] |
objects.cc | 9191 int int_value = Smi::cast(value)->value(); local 9230 int int_value = Smi::cast(value)->value(); local 9284 int int_value = Smi::cast(value)->value(); local 9305 int int_value = Smi::cast(value)->value(); local [all...] |
heap.cc | 2316 int int_value = FastD2I(value); local [all...] |
runtime.cc | [all...] |
/external/chromium/chrome/browser/chromeos/ |
preferences.cc | 411 config.int_value = value;
|
/external/v8/src/arm/ |
simulator-arm.cc | 2765 int32_t int_value = get_sinteger_from_s_register(n); local [all...] |