Searched refs:PropertyBase (Results 1 – 6 of 6) sorted by relevance
/external/libchrome/dbus/ |
D | property.h | 137 class CHROME_DBUS_EXPORT PropertyBase { 139 PropertyBase(); 140 virtual ~PropertyBase(); 198 DISALLOW_COPY_AND_ASSIGN(PropertyBase); 235 void RegisterProperty(const std::string& name, PropertyBase* property); 260 virtual void Get(PropertyBase* property, GetCallback callback); 261 virtual void OnGet(PropertyBase* property, GetCallback callback, 266 virtual bool GetAndBlock(PropertyBase* property); 284 virtual void Set(PropertyBase* property, SetCallback callback); 285 virtual void OnSet(PropertyBase* property, SetCallback callback, [all …]
|
D | property.cc | 24 PropertyBase::PropertyBase() : property_set_(nullptr), is_valid_(false) {} in PropertyBase() function in dbus::PropertyBase 26 PropertyBase::~PropertyBase() = default; 28 void PropertyBase::Init(PropertySet* property_set, const std::string& name) { in Init() 51 PropertyBase* property) { in RegisterProperty() 101 void PropertySet::Get(PropertyBase* property, GetCallback callback) { in Get() 116 void PropertySet::OnGet(PropertyBase* property, GetCallback callback, in OnGet() 138 bool PropertySet::GetAndBlock(PropertyBase* property) { in GetAndBlock() 191 void PropertySet::Set(PropertyBase* property, SetCallback callback) { in Set() 207 bool PropertySet::SetAndBlock(PropertyBase* property) { in SetAndBlock() 222 void PropertySet::OnSet(PropertyBase* property, in OnSet() [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_property.py | 8 class PropertyBase(Exception): class 11 class PropertyGet(PropertyBase): 14 class PropertySet(PropertyBase): 17 class PropertyDel(PropertyBase):
|
/external/python/cpython3/Lib/test/ |
D | test_property.py | 8 class PropertyBase(Exception): class 11 class PropertyGet(PropertyBase): 14 class PropertySet(PropertyBase): 17 class PropertyDel(PropertyBase):
|
D | test_dynamicclassattribute.py | 9 class PropertyBase(Exception): class 12 class PropertyGet(PropertyBase): 15 class PropertySet(PropertyBase): 18 class PropertyDel(PropertyBase):
|
/external/libbrillo/brillo/dbus/ |
D | dbus_property.h | 20 class Property : public dbus::PropertyBase {
|