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

1 2 3

  /external/pdfium/xfa/fxfa/parser/
cxfa_submit.cpp 14 return m_pNode->GetBoolean(XFA_ATTRIBUTE_EmbedPDF);
cxfa_stroke.cpp 80 return m_pNode ? m_pNode->GetBoolean(XFA_ATTRIBUTE_Inverted) : false;
cxfa_widgetdata.cpp 524 return pUIChild->GetBoolean(XFA_ATTRIBUTE_AllowNeutral);
721 return pUIChild->GetBoolean(XFA_ATTRIBUTE_TextEntry);
759 bool bItemOneHasSave = pItems[0]->GetBoolean(XFA_ATTRIBUTE_Save);
760 bool bItemTwoHasSave = pItems[1]->GetBoolean(XFA_ATTRIBUTE_Save);
790 bool bItemOneHasSave = pItemsArray[0]->GetBoolean(XFA_ATTRIBUTE_Save);
791 bool bItemTwoHasSave = pItemsArray[1]->GetBoolean(XFA_ATTRIBUTE_Save);
826 bool bItemOneHasSave = pItems[0]->GetBoolean(XFA_ATTRIBUTE_Save);
827 bool bItemTwoHasSave = pItems[1]->GetBoolean(XFA_ATTRIBUTE_Save);
    [all...]
cxfa_box.cpp 109 return m_pNode->GetBoolean(XFA_ATTRIBUTE_Circular);
  /external/libbrillo/brillo/
key_value_store.h 59 bool GetBoolean(const std::string& key, bool* value) const;
key_value_store_unittest.cc 100 EXPECT_FALSE(store_.GetBoolean("A", &result));
103 EXPECT_TRUE(store_.GetBoolean("A", &result));
107 EXPECT_TRUE(store_.GetBoolean("A", &result));
118 EXPECT_FALSE(store_.GetBoolean("DONT_SHOUT", &value));
124 EXPECT_TRUE(store_.GetBoolean(it.first, &value)) << "key: " << it.first;
142 ASSERT_TRUE(store_.GetBoolean("bar", &value));
key_value_store.cc 104 bool KeyValueStore::GetBoolean(const string& key, bool* value) const {
  /external/pdfium/fxjs/
cfxjse_arguments.h 25 bool GetBoolean(int32_t index) const;
cfxjse_arguments.cpp 27 bool CFXJSE_Arguments::GetBoolean(int32_t index) const {
  /system/update_engine/common/
mock_prefs.h 38 MOCK_CONST_METHOD2(GetBoolean, bool(const std::string& key, bool* value));
prefs_interface.h 68 virtual bool GetBoolean(const std::string& key, bool* value) const = 0;
fake_prefs.h 46 bool GetBoolean(const std::string& key, bool* value) const override;
prefs_unittest.cc 205 EXPECT_TRUE(prefs_.GetBoolean(kKey, &value));
213 EXPECT_TRUE(prefs_.GetBoolean(kKey, &value));
221 EXPECT_FALSE(prefs_.GetBoolean(kKey, &value));
228 EXPECT_FALSE(prefs_.GetBoolean(kKey, &value));
233 EXPECT_FALSE(prefs_.GetBoolean("random-key", &value));
fake_prefs.cc 82 bool FakePrefs::GetBoolean(const string& key, bool* value) const {
prefs.h 67 bool GetBoolean(const std::string& key, bool* value) const override;
  /system/update_engine/payload_generator/
payload_generation_config.cc 92 if (!store.GetBoolean("RUN_POSTINSTALL_" + part.name, &run_postinstall) ||
100 store.GetBoolean("POSTINSTALL_OPTIONAL_" + part.name,
  /system/update_engine/update_manager/
evaluation_context_unittest.cc 58 bool GetBoolean(bool* value) {
259 Bind(&GetBoolean, &value));
276 Bind(&GetBoolean, &value));
320 Bind(&GetBoolean, &done));
351 Bind(&GetBoolean, &value));
  /external/libchrome/base/
values_unittest.cc 81 ASSERT_FALSE(mixed_list->GetBoolean(1, &bool_value));
87 ASSERT_FALSE(mixed_list->GetBoolean(3, &bool_value));
90 ASSERT_TRUE(mixed_list->GetBoolean(0, &bool_value));
    [all...]
values.h 284 bool GetBoolean(const std::string& path, bool* out_value) const;
431 bool GetBoolean(size_t index, bool* out_value) const;
  /system/update_engine/
image_properties_android.cc 134 if (!prefs->GetBoolean(kPrefsImgPropPowerwashAllowed,
image_properties_chromeos.cc 131 if (!lsb_release.GetBoolean(kLsbReleaseIsPowerwashAllowedKey,
connection_manager.cc 96 if (!prefs->GetBoolean(kPrefsUpdateOverCellularPermission,
hardware_chromeos.cc 247 if (!store.GetBoolean(kConfigOptsIsOOBEEnabled, &is_oobe_enabled_))
  /external/libchrome/base/trace_event/
trace_config.cc 342 enable_sampling_ = dict.GetBoolean(kEnableSamplingParam, &val) ? val : false;
343 enable_systrace_ = dict.GetBoolean(kEnableSystraceParam, &val) ? val : false;
345 dict.GetBoolean(kEnableArgumentFilterParam, &val) ? val : false;
  /external/libchrome/base/json/
json_value_serializer_unittest.cc 234 ASSERT_TRUE(root_dict->GetBoolean("bool", &bool_value));
433 ASSERT_TRUE(root_dict->GetBoolean("bool", &bool_value));

Completed in 4054 milliseconds

1 2 3