/external/libbrillo/brillo/ |
D | key_value_store_unittest.cc | 100 EXPECT_FALSE(store_.GetBoolean("A", &result)); in TEST_F() 103 EXPECT_TRUE(store_.GetBoolean("A", &result)); in TEST_F() 107 EXPECT_TRUE(store_.GetBoolean("A", &result)); in TEST_F() 118 EXPECT_FALSE(store_.GetBoolean("DONT_SHOUT", &value)); in TEST_F() 124 EXPECT_TRUE(store_.GetBoolean(it.first, &value)) << "key: " << it.first; in TEST_F() 142 ASSERT_TRUE(store_.GetBoolean("bar", &value)); in TEST_F()
|
D | key_value_store.h | 59 bool GetBoolean(const std::string& key, bool* value) const;
|
D | key_value_store.cc | 104 bool KeyValueStore::GetBoolean(const string& key, bool* value) const { in GetBoolean() function in brillo::KeyValueStore
|
/external/libweave/third_party/chromium/base/ |
D | values_unittest.cc | 79 ASSERT_FALSE(mixed_list->GetBoolean(1, &bool_value)); in TEST() 85 ASSERT_FALSE(mixed_list->GetBoolean(3, &bool_value)); in TEST() 88 ASSERT_TRUE(mixed_list->GetBoolean(0, &bool_value)); in TEST() 862 EXPECT_TRUE(main_dict.GetBoolean("bool", NULL)); in TEST() 863 EXPECT_FALSE(main_dict.GetBoolean("int", NULL)); in TEST() 864 EXPECT_FALSE(main_dict.GetBoolean("double", NULL)); in TEST() 865 EXPECT_FALSE(main_dict.GetBoolean("string", NULL)); in TEST() 866 EXPECT_FALSE(main_dict.GetBoolean("binary", NULL)); in TEST() 867 EXPECT_FALSE(main_dict.GetBoolean("dict", NULL)); in TEST() 868 EXPECT_FALSE(main_dict.GetBoolean("list", NULL)); in TEST() [all …]
|
D | values.h | 276 bool GetBoolean(const std::string& path, bool* out_value) const; 417 bool GetBoolean(size_t index, bool* out_value) const;
|
D | values.cc | 498 bool DictionaryValue::GetBoolean(const std::string& path, in GetBoolean() function in base::DictionaryValue 899 bool ListValue::GetBoolean(size_t index, bool* bool_value) const { in GetBoolean() function in base::ListValue
|
/external/libchrome/base/ |
D | values_unittest.cc | 79 ASSERT_FALSE(mixed_list->GetBoolean(1, &bool_value)); in TEST() 85 ASSERT_FALSE(mixed_list->GetBoolean(3, &bool_value)); in TEST() 88 ASSERT_TRUE(mixed_list->GetBoolean(0, &bool_value)); in TEST() 902 EXPECT_TRUE(main_dict.GetBoolean("bool", NULL)); in TEST() 903 EXPECT_FALSE(main_dict.GetBoolean("int", NULL)); in TEST() 904 EXPECT_FALSE(main_dict.GetBoolean("double", NULL)); in TEST() 905 EXPECT_FALSE(main_dict.GetBoolean("string", NULL)); in TEST() 906 EXPECT_FALSE(main_dict.GetBoolean("binary", NULL)); in TEST() 907 EXPECT_FALSE(main_dict.GetBoolean("dict", NULL)); in TEST() 908 EXPECT_FALSE(main_dict.GetBoolean("list", NULL)); in TEST() [all …]
|
D | values.h | 285 bool GetBoolean(const std::string& path, bool* out_value) const; 429 bool GetBoolean(size_t index, bool* out_value) const;
|
/external/libweave/src/ |
D | base_api_handler.cc | 140 parameters.GetBoolean("localDiscoveryEnabled", &discovery_enabled); in UpdateBaseConfiguration() 141 parameters.GetBoolean("localPairingEnabled", &pairing_enabled); in UpdateBaseConfiguration()
|
D | config.cc | 216 if (dict->GetBoolean(config_keys::kLocalDiscoveryEnabled, &tmp_bool)) in LoadState() 219 if (dict->GetBoolean(config_keys::kLocalPairingEnabled, &tmp_bool)) in LoadState()
|
/external/pdfium/core/include/fpdfdoc/ |
D | fpdf_doc.h | 229 FX_BOOL GetNewWindow() const { return m_pDict->GetBoolean("NewWindow"); } in GetNewWindow() 233 FX_BOOL GetMouseMap() const { return m_pDict->GetBoolean("IsMap"); } in GetMouseMap() 237 FX_BOOL GetHideStatus() const { return m_pDict->GetBoolean("H", TRUE); } in GetHideStatus() 253 FX_BOOL IsSynchronous() const { return m_pDict->GetBoolean("Synchronous"); } in IsSynchronous() 255 FX_BOOL IsRepeat() const { return m_pDict->GetBoolean("Repeat"); } in IsRepeat() 257 FX_BOOL IsMixPlay() const { return m_pDict->GetBoolean("Mix"); } in IsMixPlay()
|
/external/libchrome/base/trace_event/ |
D | trace_config.cc | 317 if (!dict->GetBoolean(kEnableSamplingParam, &enable_sampling)) in InitializeFromConfigString() 323 if (!dict->GetBoolean(kEnableSystraceParam, &enable_systrace)) in InitializeFromConfigString() 329 if (!dict->GetBoolean(kEnableArgumentFilterParam, &enable_argument_filter)) in InitializeFromConfigString()
|
/external/libweave/examples/daemon/ledflasher/ |
D | ledflasher.cc | 88 params.GetBoolean("_on", &cmd_value)) { in OnFlasherSetCommand()
|
/external/libweave/examples/daemon/speaker/ |
D | speaker.cc | 112 if (params.GetBoolean("isMuted", &isMuted_status)) { in OnVolumeSetConfig()
|
/external/pdfium/xfa/src/fxfa/src/parser/ |
D | xfa_objectacc_imp.cpp | 678 return m_pNode->GetBoolean(XFA_ATTRIBUTE_EmbedPDF); in IsSubmitEmbedPDF() 1253 return m_pNode->GetBoolean(XFA_ATTRIBUTE_Circular); in IsCircular() 1424 return m_pNode ? m_pNode->GetBoolean(XFA_ATTRIBUTE_Inverted) : FALSE; in IsInverted() 1839 return pUIChild->GetBoolean(XFA_ATTRIBUTE_AllowNeutral); in IsAllowNeutral() 2038 return pUIChild->GetBoolean(XFA_ATTRIBUTE_TextEntry); in IsChoiceListAllowTextEntry() 2076 FX_BOOL bItemOneHasSave = pItems[0]->GetBoolean(XFA_ATTRIBUTE_Save); in CountChoiceListItems() 2077 FX_BOOL bItemTwoHasSave = pItems[1]->GetBoolean(XFA_ATTRIBUTE_Save); in CountChoiceListItems() 2108 FX_BOOL bItemOneHasSave = pItemsArray[0]->GetBoolean(XFA_ATTRIBUTE_Save); in GetChoiceListItem() 2109 FX_BOOL bItemTwoHasSave = pItemsArray[1]->GetBoolean(XFA_ATTRIBUTE_Save); in GetChoiceListItem() 2144 FX_BOOL bItemOneHasSave = pItems[0]->GetBoolean(XFA_ATTRIBUTE_Save); in GetChoiceListItems() [all …]
|
D | xfa_locale.cpp | 369 if (pNode->GetBoolean(XFA_ATTRIBUTE_Abbr) == bAbbr) { in GetCalendarSymbol()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | RecognitionException.cs | 174 _approximateLineInfo = info.GetBoolean("ApproximateLineInfo"); in RecognitionException()
|
/external/libchrome/base/json/ |
D | json_value_serializer_unittest.cc | 234 ASSERT_TRUE(root_dict->GetBoolean("bool", &bool_value)); in TEST() 433 ASSERT_TRUE(root_dict->GetBoolean("bool", &bool_value)); in TEST_F()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | RecognitionException.cs | 196 _approximateLineInfo = info.GetBoolean("ApproximateLineInfo"); in RecognitionException()
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | shared_prefs_test.py | 144 self.assertTrue(prefs.GetBoolean('featureEnabled'))
|
D | shared_prefs.py | 289 def GetBoolean(self, key): member in SharedPrefs
|
/external/pdfium/xfa/include/fxjse/ |
D | fxjse.h | 46 FX_BOOL GetBoolean(int32_t index) const;
|
/external/dng_sdk/source/ |
D | dng_xmp.h | 163 bool GetBoolean (const char *ns,
|
/external/pdfium/core/src/fpdfdoc/ |
D | doc_annot.cpp | 21 FX_BOOL bRegenerateAP = pAcroForm && pAcroForm->GetBoolean("NeedAppearances"); in CPDF_AnnotList()
|
/external/opencv3/samples/winrt/ImageManipulations/common/ |
D | suspensionmanager.cpp | 361 writer->WriteBoolean(propertyValue->GetBoolean());
|