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

1 2 3

  /external/chromium_org/chromeos/dbus/
nfc_property_set.cc 15 : dbus::PropertySet(object_proxy, interface, callback) {
25 base::Bind(&dbus::PropertySet::ChangedReceived, GetWeakPtr()),
26 base::Bind(&dbus::PropertySet::ChangedConnected, GetWeakPtr()));
44 base::Bind(&dbus::PropertySet::OnGetAll,
55 dbus::PropertySet::OnGetAll(response);
72 base::Bind(&dbus::PropertySet::OnSet,
fake_nfc_manager_client.h 26 // dbus::PropertySet overrides.
28 dbus::PropertySet::GetCallback callback) OVERRIDE;
31 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_bluetooth_adapter_client.h 30 // dbus::PropertySet override
32 dbus::PropertySet::GetCallback callback) OVERRIDE;
35 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_bluetooth_gatt_service_client.h 31 // dbus::PropertySet override
33 dbus::PropertySet::GetCallback callback) OVERRIDE;
36 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_bluetooth_input_client.h 27 // dbus::PropertySet override
29 dbus::PropertySet::GetCallback callback) OVERRIDE;
32 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_nfc_device_client.h 31 // dbus::PropertySet overrides.
33 dbus::PropertySet::GetCallback callback) OVERRIDE;
36 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_nfc_record_client.h 32 // dbus::PropertySet overrides.
34 dbus::PropertySet::GetCallback callback) OVERRIDE;
37 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_nfc_tag_client.h 29 // dbus::PropertySet overrides.
31 dbus::PropertySet::GetCallback callback) OVERRIDE;
34 dbus::PropertySet::SetCallback callback) OVERRIDE;
bluetooth_gatt_service_client.cc 20 : dbus::PropertySet(object_proxy, interface_name, callback) {
78 virtual dbus::PropertySet* CreateProperties(
88 return static_cast<dbus::PropertySet*>(properties);
119 // Called by dbus::PropertySet when a property value is changed, either by
bluetooth_input_client.cc 24 : dbus::PropertySet(object_proxy, interface_name, callback) {
59 virtual dbus::PropertySet* CreateProperties(
69 return static_cast<dbus::PropertySet*>(properties);
bluetooth_input_client.h 25 struct Properties : public dbus::PropertySet {
nfc_property_set.h 19 // class customizes dbus::PropertySet to generate the correct method call to
21 class NfcPropertySet : public dbus::PropertySet {
35 // dbus::PropertySet overrides
fake_bluetooth_gatt_descriptor_client.h 29 // dbus::PropertySet override
31 dbus::PropertySet::GetCallback callback) OVERRIDE;
34 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_nfc_adapter_client.h 31 // dbus::PropertySet overrides.
33 dbus::PropertySet::GetCallback callback) OVERRIDE;
36 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_bluetooth_gatt_characteristic_client.h 32 // dbus::PropertySet override
34 dbus::PropertySet::GetCallback callback) OVERRIDE;
37 dbus::PropertySet::SetCallback callback) OVERRIDE;
fake_bluetooth_input_client.cc 34 dbus::PropertySet::GetCallback callback) {
45 dbus::PropertySet::SetCallback callback) {
fake_nfc_manager_client.cc 26 dbus::PropertySet::GetCallback callback) {
37 dbus::PropertySet::SetCallback callback) {
bluetooth_gatt_descriptor_client.h 24 struct Properties : public dbus::PropertySet {
  /external/chromium_org/dbus/
property.cc 21 void PropertyBase::Init(PropertySet* property_set, const std::string& name) {
29 // PropertySet implementation.
32 PropertySet::PropertySet(
41 PropertySet::~PropertySet() {
44 void PropertySet::RegisterProperty(const std::string& name,
50 void PropertySet::ConnectSignals() {
55 base::Bind(&PropertySet::ChangedReceived,
57 base::Bind(&PropertySet::ChangedConnected
    [all...]
property.h 26 // from the PropertySet class defined here. This structure should contain a
29 // to the PropertySet constructor, and then call RegisterProperty() for each
35 // struct Properties : public dbus::PropertySet {
43 // : dbus::PropertySet(object_proxy, "com.example.DBus", callback) {
127 class PropertySet;
131 // associated PropertySet, property name, and the type-unsafe parts
132 // used by PropertySet.
139 // PropertySet::RegisterProperty() passing |this| for |property_set| so
143 void Init(PropertySet* property_set, const std::string& name);
157 // Method used by PropertySet to retrieve the value from a MessageReader
    [all...]
mock_object_manager.h 32 MOCK_METHOD2(GetProperties, PropertySet*(const ObjectPath&,
object_manager.h 37 // struct Properties : public dbus::PropertySet {
45 // : dbus::PropertySet(object_proxy, kExampleInterface, callback) {
80 // dbus::PropertySet* CreateProperties(dbus::ObjectProxy* object_proxy,
88 // return static_cast<dbus::PropertySet*>(properties);
150 // subclass of dbus::PropertySet; ObjectManager will then connect signals
152 virtual PropertySet* CreateProperties(
189 // method will be used to create instances of dbus::PropertySet* when
213 // Returns a PropertySet* pointer for the given |object_path| and
218 PropertySet* GetProperties(const ObjectPath& object_path,
253 // the correct PropertySet
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
Keyframe.h 15 typedef HashSet<CSSPropertyID> PropertySet;
38 virtual PropertySet properties() const = 0;
KeyframeEffectModel.cpp 42 PropertySet KeyframeEffectModelBase::properties() const
44 PropertySet result;
50 PropertySet extras = m_keyframes[i]->properties();
51 for (PropertySet::const_iterator it = extras.begin(); it != extras.end(); ++it) {
120 PropertySet keyframeProperties = keyframe->properties();
121 for (PropertySet::const_iterator propertyIter = keyframeProperties.begin(); propertyIter != keyframeProperties.end(); ++propertyIter) {
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableValueKeyframe.cpp 19 PropertySet AnimatableValueKeyframe::properties() const
23 PropertySet properties;

Completed in 247 milliseconds

1 2 3