Home
last modified time | relevance | path

Searched refs:isDefaultAttribute (Results 1 – 9 of 9) sorted by relevance

/dports/security/keepassx-devel/keepassx-55869e8/src/core/
H A DEntryAttributes.cpp49 if (!isDefaultAttribute(key)) { in customKeys()
72 bool defaultAttribute = isDefaultAttribute(key); in set()
110 Q_ASSERT(!isDefaultAttribute(key)); in remove()
128 Q_ASSERT(!isDefaultAttribute(oldKey)); in rename()
129 Q_ASSERT(!isDefaultAttribute(newKey)); in rename()
168 if (!isDefaultAttribute(key)) { in copyCustomKeysFrom()
176 if (!isDefaultAttribute(key)) { in copyCustomKeysFrom()
197 if (isDefaultAttribute(key)) { in areCustomKeysDifferent()
261 bool EntryAttributes::isDefaultAttribute(const QString& key) in isDefaultAttribute() function in EntryAttributes
H A DEntryAttributes.h54 static bool isDefaultAttribute(const QString& key);
/dports/security/keepassxc/keepassxc-2.6.6/src/core/
H A DEntryAttributes.cpp58 if (!isDefaultAttribute(key)) { in customKeys()
111 bool defaultAttribute = isDefaultAttribute(key); in set()
146 Q_ASSERT(!isDefaultAttribute(key)); in remove()
163 Q_ASSERT(!isDefaultAttribute(oldKey)); in rename()
164 Q_ASSERT(!isDefaultAttribute(newKey)); in rename()
203 if (!isDefaultAttribute(key)) { in copyCustomKeysFrom()
211 if (!isDefaultAttribute(key)) { in copyCustomKeysFrom()
232 if (isDefaultAttribute(key)) { in areCustomKeysDifferent()
318 bool EntryAttributes::isDefaultAttribute(const QString& key) in isDefaultAttribute() function in EntryAttributes
H A DEntryAttributes.h65 static bool isDefaultAttribute(const QString& key);
H A DEntry.cpp609 Q_ASSERT(EntryAttributes::isDefaultAttribute(attribute)); in setDefaultAttribute()
611 if (!EntryAttributes::isDefaultAttribute(attribute)) { in setDefaultAttribute()
/dports/security/keepassxc/keepassxc-2.6.6/src/gui/entry/
H A DEntryURLModel.cpp97 …if (EntryAttributes::isDefaultAttribute(key) || m_entryAttributes->containsValue(value.toString())… in setData()
140 if (!EntryAttributes::isDefaultAttribute(key) && key.contains("KP2A_URL")) { in updateAttributes()
H A DEntryAttributesModel.cpp108 if (EntryAttributes::isDefaultAttribute(newKey) || m_entryAttributes->keys().contains(newKey)) { in setData()
234 if (!EntryAttributes::isDefaultAttribute(key)) { in updateAttributes()
/dports/security/keepassx-devel/keepassx-55869e8/src/gui/entry/
H A DEntryAttributesModel.cpp105 if (EntryAttributes::isDefaultAttribute(newKey) in setData()
237 if (!EntryAttributes::isDefaultAttribute(key)) { in updateAttributes()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/settings/lib/
H A DSettingsManager.cpp1094 auto isDefaultAttribute = settingElement->Attribute(SETTING_XML_ELM_DEFAULT); in LoadSetting() local
1095 …bool isDefault = isDefaultAttribute != nullptr && StringUtils::EqualsNoCase(isDefaultAttribute, "t… in LoadSetting()