HomeSort by relevance Sort by last modified time
    Searched refs:bool_value (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium/chrome/browser/sync/
js_arg_list_unittest.cc 38 FundamentalValue bool_value(false);
45 vec.push_back(&bool_value);
52 list.Append(bool_value.DeepCopy());
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 471 template <bool bool_value>
473 typedef bool_constant<bool_value> type;
474 static const bool value = bool_value;
476 template <bool bool_value> const bool bool_constant<bool_value>::value;
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_delegate_win.cc 70 bool bool_value; local
71 if (GetRegistryPolicyBoolean(name, &bool_value)) {
72 result->SetBoolean(current->name, bool_value);
configuration_policy_provider_mac.cc 72 bool bool_value = CFBooleanGetValue((CFBooleanRef)value.get()); local
73 policy->SetBoolean(current->name, bool_value);
user_policy_cache.cc 233 return Value::CreateBooleanValue(value.bool_value());
  /external/chromium/chrome/common/
json_value_serializer_unittest.cc 34 bool bool_value = false; local
35 ASSERT_TRUE(root_dict->GetBoolean("bool", &bool_value));
36 ASSERT_TRUE(bool_value);
272 bool bool_value = false; local
273 ASSERT_TRUE(root_dict->GetBoolean("bool", &bool_value));
274 ASSERT_TRUE(bool_value);
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 812 template <bool bool_value>
814 typedef bool_constant<bool_value> type;
815 static const bool value = bool_value;
817 template <bool bool_value> const bool bool_constant<bool_value>::value;
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 804 template <bool bool_value>
806 typedef bool_constant<bool_value> type;
807 static const bool value = bool_value;
809 template <bool bool_value> const bool bool_constant<bool_value>::value;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_dict_helpers.h 136 dbus_bool_t bool_value; member in union:wpa_dbus_dict_entry::__anon18603
dbus_new_handlers_p2p.c 306 persistent_group = (entry.bool_value == TRUE) ? 1 : 0;
457 persistent_group = (entry.bool_value == TRUE) ? 1 : 0;
460 join = (entry.bool_value == TRUE) ? 1 : 0;
463 authorize_only = (entry.bool_value == TRUE) ? 1 : 0;
930 wpa_s->conf->persistent_reconnect = entry.bool_value;
968 wpa_s->conf->p2p_intra_bss = entry.bool_value;
    [all...]
  /external/chromium/chrome/browser/chromeos/
cros_settings.cc 165 bool* bool_value) const {
171 return value->GetAsBoolean(bool_value);
user_cros_settings_provider.cc 222 bool bool_value = false; local
223 if (in_value->GetAsBoolean(&bool_value)) {
224 OnBooleanPropertyChange(path, bool_value);
225 std::string value = bool_value ? kTrueIncantation : kFalseIncantation;
227 UpdateCacheBool(path, bool_value, USE_VALUE_SUPPLIED);
preferences.cc 401 config.bool_value = value;
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium/chrome/browser/metrics/
metrics_log.cc 430 bool bool_value; local
431 if (value->GetAsBoolean(&bool_value)) {
434 WriteIntAttribute("value", bool_value ? 1 : 0);
  /external/chromium/chrome/browser/ui/webui/options/
core_options_handler.cc 194 bool bool_value; local
195 CHECK(value->GetAsBoolean(&bool_value));
196 metric_string += bool_value ? "_Enable" : "_Disable";
  /external/chromium/base/json/
json_reader_unittest.cc 281 bool bool_value = false; local
282 ASSERT_TRUE(tmp_value->GetAsBoolean(&bool_value));
283 EXPECT_TRUE(bool_value);
351 bool_value = true;
352 ASSERT_TRUE(dict_val->GetBoolean("false", &bool_value));
353 ASSERT_FALSE(bool_value);
  /external/chromium/base/
values_unittest.cc 68 bool bool_value = false; local
81 ASSERT_FALSE(mixed_list->GetBoolean(3, &bool_value));
82 ASSERT_FALSE(bool_value);
84 ASSERT_TRUE(mixed_list->GetBoolean(0, &bool_value));
85 ASSERT_TRUE(bool_value);
values.cc 416 bool* bool_value) const {
421 return value->GetAsBoolean(bool_value);
729 bool ListValue::GetBoolean(size_t index, bool* bool_value) const {
734 return value->GetAsBoolean(bool_value);
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium/net/proxy/
proxy_config_service_linux.cc 326 gboolean bool_value = gconf_value_get_bool(gconf_value); local
327 *result = static_cast<bool>(bool_value);
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_prefs.cc 359 bool bool_value = false; local
360 if (!ext->GetBoolean(pref_key, &bool_value))
363 return bool_value;
    [all...]
  /external/chromium/net/tools/testserver/
device_management.py 292 entry_value.bool_value = value

Completed in 705 milliseconds

1 2