Symbol: Property
src/apps/haikudepot/model/ValidationFailure.cpp
194
if (item->Property() == property)
src/apps/haikudepot/model/ValidationFailure.h
27
const BString& Property() const;
src/apps/haikudepot/ui/UserLoginWindow.cpp
1125
alertMessage << _CreateAlertTextFromValidationFailure(failure->Property(),
src/apps/haikudepot/ui/UserLoginWindow.cpp
1152
output << failure->Property();
src/apps/icon-o-matic/generic/property/Property.cpp
105
: Property(other),
src/apps/icon-o-matic/generic/property/Property.cpp
114
: Property(archive),
src/apps/icon-o-matic/generic/property/Property.cpp
139
status_t ret = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/Property.cpp
166
Property*
src/apps/icon-o-matic/generic/property/Property.cpp
181
IntProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/Property.cpp
199
IntProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/Property.cpp
23
Property::Property(uint32 identifier)
src/apps/icon-o-matic/generic/property/Property.cpp
231
: Property(identifier),
src/apps/icon-o-matic/generic/property/Property.cpp
240
: Property(other),
src/apps/icon-o-matic/generic/property/Property.cpp
249
: Property(archive),
src/apps/icon-o-matic/generic/property/Property.cpp
274
status_t ret = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/Property.cpp
30
Property::Property(const Property& other)
src/apps/icon-o-matic/generic/property/Property.cpp
301
Property*
src/apps/icon-o-matic/generic/property/Property.cpp
316
FloatProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/Property.cpp
334
FloatProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/Property.cpp
364
: Property(identifier),
src/apps/icon-o-matic/generic/property/Property.cpp
37
Property::Property(BMessage* archive)
src/apps/icon-o-matic/generic/property/Property.cpp
371
: Property(other),
src/apps/icon-o-matic/generic/property/Property.cpp
378
: Property(archive),
src/apps/icon-o-matic/generic/property/Property.cpp
397
status_t ret = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/Property.cpp
420
Property*
src/apps/icon-o-matic/generic/property/Property.cpp
435
UInt8Property::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/Property.cpp
453
UInt8Property::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/Property.cpp
478
: Property(identifier),
src/apps/icon-o-matic/generic/property/Property.cpp
485
: Property(other),
src/apps/icon-o-matic/generic/property/Property.cpp
492
: Property(archive),
src/apps/icon-o-matic/generic/property/Property.cpp
51
Property::~Property()
src/apps/icon-o-matic/generic/property/Property.cpp
511
status_t ret = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/Property.cpp
534
Property*
src/apps/icon-o-matic/generic/property/Property.cpp
557
BoolProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/Property.cpp
57
Property::Archive(BMessage* into, bool deep) const
src/apps/icon-o-matic/generic/property/Property.cpp
578
BoolProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/Property.cpp
603
: Property(identifier),
src/apps/icon-o-matic/generic/property/Property.cpp
610
: Property(other),
src/apps/icon-o-matic/generic/property/Property.cpp
617
: Property(archive),
src/apps/icon-o-matic/generic/property/Property.cpp
636
status_t ret = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/Property.cpp
659
Property*
src/apps/icon-o-matic/generic/property/Property.cpp
679
StringProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/Property.cpp
78
Property::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/Property.cpp
86
Property::SetEditable(bool editable)
src/apps/icon-o-matic/generic/property/Property.cpp
96
: Property(identifier),
src/apps/icon-o-matic/generic/property/Property.h
101
class FloatProperty : public Property {
src/apps/icon-o-matic/generic/property/Property.h
115
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/Property.h
121
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/Property.h
124
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/Property.h
144
class UInt8Property : public Property {
src/apps/icon-o-matic/generic/property/Property.h
156
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/Property.h
162
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/Property.h
165
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/Property.h
179
class BoolProperty : public Property {
src/apps/icon-o-matic/generic/property/Property.h
191
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/Property.h
197
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/Property.h
200
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/Property.h
21
class Property : public BArchivable {
src/apps/icon-o-matic/generic/property/Property.h
214
class StringProperty : public Property {
src/apps/icon-o-matic/generic/property/Property.h
226
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/Property.h
23
Property(uint32 identifier);
src/apps/icon-o-matic/generic/property/Property.h
232
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/Property.h
24
Property(const Property& other);
src/apps/icon-o-matic/generic/property/Property.h
25
Property(BMessage* archive);
src/apps/icon-o-matic/generic/property/Property.h
26
virtual ~Property();
src/apps/icon-o-matic/generic/property/Property.h
33
virtual Property* Clone() const = 0;
src/apps/icon-o-matic/generic/property/Property.h
38
virtual bool SetValue(const Property* other) = 0;
src/apps/icon-o-matic/generic/property/Property.h
42
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/Property.h
58
class IntProperty : public Property {
src/apps/icon-o-matic/generic/property/Property.h
72
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/Property.h
78
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/Property.h
81
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
105
PropertyObject::AddProperty(Property* property)
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
134
Property*
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
137
return (Property*)fProperties.ItemAt(index);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
141
Property*
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
144
return (Property*)fProperties.ItemAtFast(index);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
157
Property*
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
162
Property* p = (Property*)fProperties.ItemAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
171
PropertyObject::HasProperty(Property* property) const
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
185
Property* ownProperty = PropertyAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
186
Property* otherProperty = other.PropertyAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
204
Property* p = (Property*)other.fProperties.ItemAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
205
Property* clone = p->Clone();
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
223
delete (Property*)fProperties.ItemAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
234
Property* p = (Property*)fProperties.ItemAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
260
if (Property* p = FindProperty(propertyID)) {
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
273
if (Property* p = FindProperty(propertyID)) {
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
56
Property* p = PropertyAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
83
Property* p = PropertyAtFast(i);
src/apps/icon-o-matic/generic/property/PropertyObject.h
16
class Property;
src/apps/icon-o-matic/generic/property/PropertyObject.h
27
bool AddProperty(Property* property);
src/apps/icon-o-matic/generic/property/PropertyObject.h
29
Property* PropertyAt(int32 index) const;
src/apps/icon-o-matic/generic/property/PropertyObject.h
30
Property* PropertyAtFast(int32 index) const;
src/apps/icon-o-matic/generic/property/PropertyObject.h
33
Property* FindProperty(uint32 propertyID) const;
src/apps/icon-o-matic/generic/property/PropertyObject.h
34
bool HasProperty(Property* property) const;
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
130
ColorProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
150
ColorProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
23
: Property(identifier),
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
30
: Property(identifier),
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
37
: Property(other),
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
44
: Property(archive),
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
63
status_t ret = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.cpp
86
Property*
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
16
class ColorProperty : public Property {
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
30
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
36
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/specific_properties/ColorProperty.h
39
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
104
IconProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
123
IconProperty::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
24
: Property(identifier),
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
35
: Property(other),
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
46
: Property(archive),
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
65
status_t status = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.cpp
89
Property*
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.h
16
class IconProperty : public Property {
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.h
33
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.h
39
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/specific_properties/IconProperty.h
42
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
19
: Property(identifier),
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
26
: Property(other),
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
37
Property*
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
53
Int64Property::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
71
Int64Property::InterpolateTo(const Property* other, float scale)
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.h
14
class Int64Property : public Property {
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.h
22
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.h
28
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.h
31
virtual bool InterpolateTo(const Property* other,
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.cpp
142
OptionProperty::SetValue(const Property* other)
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.cpp
22
: Property(identifier),
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.cpp
30
: Property(other),
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.cpp
50
: Property(archive),
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.cpp
75
status_t status = Property::Archive(into, deep);
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.cpp
99
Property*
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.h
17
class OptionProperty : public Property {
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.h
29
virtual Property* Clone() const;
src/apps/icon-o-matic/generic/property/specific_properties/OptionProperty.h
34
virtual bool SetValue(const Property* other);
src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.cpp
27
EditorFor(Property* p)
src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.h
14
class Property;
src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.h
17
PropertyEditorView* EditorFor(Property* property);
src/apps/icon-o-matic/generic/property/view/PropertyEditorView.h
14
class Property;
src/apps/icon-o-matic/generic/property/view/PropertyEditorView.h
46
virtual bool AdoptProperty(Property* property) = 0;
src/apps/icon-o-matic/generic/property/view/PropertyEditorView.h
47
virtual Property* GetProperty() const = 0;
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
170
if (const Property* property = GetProperty())
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
217
Property*
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
227
PropertyItemView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
249
if (const Property* p = fEditorView->GetProperty())
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
26
PropertyItemView::PropertyItemView(Property* property)
src/apps/icon-o-matic/generic/property/view/PropertyItemView.cpp
52
const Property* property = GetProperty();
src/apps/icon-o-matic/generic/property/view/PropertyItemView.h
14
class Property;
src/apps/icon-o-matic/generic/property/view/PropertyItemView.h
20
PropertyItemView(Property* property);
src/apps/icon-o-matic/generic/property/view/PropertyItemView.h
38
Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/PropertyItemView.h
39
bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
200
Property* property = dynamic_cast<Property*>(archivable);
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
223
const Property* property = item->GetProperty();
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
376
Property* property = object->PropertyAt(i);
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
422
for (int32 i = 0; Property* property = fPropertyObject->PropertyAt(i); i++) {
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
453
PropertyListView::PropertyChanged(const Property* previous,
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
454
const Property* current)
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
470
Property* p = object->PropertyAtFast(i);
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
471
Property* local = fPropertyObject->FindProperty(p->Identifier());
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
490
Property* previous = fSavedProperties->FindProperty(propertyID);
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
491
Property* current = fPropertyObject->FindProperty(propertyID);
src/apps/icon-o-matic/generic/property/view/PropertyListView.cpp
588
const Property* p = fPropertyObject->PropertyAtFast(i);
src/apps/icon-o-matic/generic/property/view/PropertyListView.h
22
class Property;
src/apps/icon-o-matic/generic/property/view/PropertyListView.h
61
virtual void PropertyChanged(const Property* previous,
src/apps/icon-o-matic/generic/property/view/PropertyListView.h
62
const Property* current);
src/apps/icon-o-matic/generic/property/view/specific_properties/BoolValueView.cpp
149
BoolValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/BoolValueView.cpp
164
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/BoolValueView.h
32
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/BoolValueView.h
33
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.cpp
121
ColorValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.cpp
137
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.h
34
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/ColorValueView.h
35
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/FloatValueView.cpp
57
FloatValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/FloatValueView.cpp
70
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/FloatValueView.h
28
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/FloatValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/IconValueView.cpp
78
IconValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/IconValueView.cpp
92
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/IconValueView.h
28
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/IconValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.cpp
59
Int64ValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.cpp
73
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.h
28
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.cpp
57
IntValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.cpp
70
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.h
28
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/IntValueView.h
29
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/OptionValueView.cpp
214
OptionValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/OptionValueView.cpp
234
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/OptionValueView.h
36
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/OptionValueView.h
37
virtual Property* GetProperty() const;
src/apps/icon-o-matic/generic/property/view/specific_properties/StringValueView.cpp
56
StringValueView::AdoptProperty(Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/StringValueView.cpp
70
Property*
src/apps/icon-o-matic/generic/property/view/specific_properties/StringValueView.h
29
virtual bool AdoptProperty(Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/StringValueView.h
30
virtual Property* GetProperty() const;
src/apps/icon-o-matic/gui/IconObjectListView.cpp
193
Property* property = item->GetProperty();
src/apps/icon-o-matic/gui/IconObjectListView.cpp
97
IconObjectListView::PropertyChanged(const Property* previous,
src/apps/icon-o-matic/gui/IconObjectListView.cpp
98
const Property* current)
src/apps/icon-o-matic/gui/IconObjectListView.h
29
virtual void PropertyChanged(const Property* previous,
src/apps/icon-o-matic/gui/IconObjectListView.h
30
const Property* current);
src/bin/mail_utils/spamdbm.cpp
1331
BMessage *SpecifierMsgPntr, int32 SpecificationKind, const char *Property);
src/bin/mail_utils/spamdbm.cpp
1722
PropertyNumbers Property,
src/bin/mail_utils/spamdbm.cpp
1728
if (Property < 0 || Property >= PN_MAX)
src/bin/mail_utils/spamdbm.cpp
1733
CommandMessage.AddSpecifier (g_PropertyNames [Property]);
src/bin/mail_utils/spamdbm.cpp
1742
PropertyNumbers Property,
src/bin/mail_utils/spamdbm.cpp
1748
if (Property < 0 || Property >= PN_MAX)
src/bin/mail_utils/spamdbm.cpp
1753
CommandMessage.AddSpecifier (g_PropertyNames [Property]);
src/bin/mail_utils/spamdbm.cpp
1761
PropertyNumbers Property,
src/bin/mail_utils/spamdbm.cpp
1767
if (Property < 0 || Property >= PN_MAX)
src/bin/mail_utils/spamdbm.cpp
1772
CommandMessage.AddSpecifier (g_PropertyNames [Property]);