Symbol: Int64Property
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
309
Int64Property* p = dynamic_cast<Int64Property*>(FindProperty(propertyID));
src/apps/icon-o-matic/generic/property/PropertyObject.cpp
321
if (Int64Property* p = dynamic_cast<Int64Property*>(FindProperty(propertyID)))
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
18
Int64Property::Int64Property(uint32 identifier, int64 value)
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
25
Int64Property::Int64Property(const Int64Property& other)
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
32
Int64Property::~Int64Property()
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
38
Int64Property::Clone() const
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
40
return new (nothrow) Int64Property(*this);
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
45
Int64Property::SetValue(const char* value)
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
55
const Int64Property* intOther = dynamic_cast<const Int64Property*>(other);
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
64
Int64Property::GetValue(BString& string)
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.cpp
73
const Int64Property* intOther = dynamic_cast<const Int64Property*>(other);
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.cpp
83
Int64Property::SetValue(int64 value)
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
16
Int64Property(uint32 identifier,
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.h
18
Int64Property(const Int64Property& other);
src/apps/icon-o-matic/generic/property/specific_properties/Int64Property.h
19
virtual ~Int64Property();
src/apps/icon-o-matic/generic/property/view/PropertyEditorFactory.cpp
44
if (Int64Property* i = dynamic_cast<Int64Property*>(p))
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.cpp
16
Int64ValueView::Int64ValueView(Int64Property* property)
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.cpp
61
Int64Property* p = dynamic_cast<Int64Property*>(property);
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.h
19
Int64ValueView(Int64Property* property);
src/apps/icon-o-matic/generic/property/view/specific_properties/Int64ValueView.h
32
Int64Property* fProperty;