Searched refs:property (Results 1 - 25 of 145) sorted by relevance

123456

/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyEditorFactory.h17 PropertyEditorView* EditorFor(Property* property);
H A DPropertyItemView.h20 PropertyItemView(Property* property);
39 bool AdoptProperty(Property* property);
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DFloatValueView.h19 FloatValueView(FloatProperty* property);
28 virtual bool AdoptProperty(Property* property);
H A DInt64ValueView.h19 Int64ValueView(Int64Property* property);
28 virtual bool AdoptProperty(Property* property);
H A DIntValueView.h19 IntValueView(IntProperty* property);
28 virtual bool AdoptProperty(Property* property);
H A DStringValueView.h20 StringValueView(StringProperty* property);
29 virtual bool AdoptProperty(Property* property);
H A DFloatValueView.cpp16 FloatValueView::FloatValueView(FloatProperty* property) argument
18 fProperty(property)
57 FloatValueView::AdoptProperty(Property* property) argument
59 FloatProperty* p = dynamic_cast<FloatProperty*>(property);
H A DInt64ValueView.cpp16 Int64ValueView::Int64ValueView(Int64Property* property) argument
18 fProperty(property)
59 Int64ValueView::AdoptProperty(Property* property) argument
61 Int64Property* p = dynamic_cast<Int64Property*>(property);
H A DIntValueView.cpp16 IntValueView::IntValueView(IntProperty* property) argument
18 fProperty(property)
57 IntValueView::AdoptProperty(Property* property) argument
59 IntProperty* p = dynamic_cast<IntProperty*>(property);
H A DStringValueView.cpp17 StringValueView::StringValueView(StringProperty* property) argument
19 fProperty(property)
56 StringValueView::AdoptProperty(Property* property) argument
58 StringProperty* p = dynamic_cast<StringProperty*>(property);
H A DBoolValueView.h17 BoolValueView(BoolProperty* property);
32 virtual bool AdoptProperty(Property* property);
H A DColorValueView.h19 ColorValueView(ColorProperty* property);
34 virtual bool AdoptProperty(Property* property);
H A DIconValueView.h19 IconValueView(IconProperty* property);
28 virtual bool AdoptProperty(Property* property);
H A DOptionValueView.h19 OptionValueView(OptionProperty* property);
36 virtual bool AdoptProperty(Property* property);
H A DColorValueView.cpp27 ColorValueView::ColorValueView(ColorProperty* property) argument
29 fProperty(property)
31 fSwatchView = new SwatchValueView("swatch property view",
121 ColorValueView::AdoptProperty(Property* property) argument
123 ColorProperty* p = dynamic_cast<ColorProperty*>(property);
/haiku/src/apps/haikudepot/model/
H A DValidationFailure.h24 ValidationFailure(const BString& property);
47 void AddFailure(const BString& property,
52 bool Contains(const BString& property) const;
53 bool Contains(const BString& property,
60 ValidationFailure* _GetFailure(const BString& property) const;
61 ValidationFailure* _GetOrCreateFailure(const BString& property);
H A DValidationFailure.cpp11 #define KEY_PROPERTY "property"
24 debugger("illegal state; missing property in message");
40 ValidationFailure::ValidationFailure(const BString& property) argument
42 fProperty = property;
125 ValidationFailures::AddFailure(const BString& property, const BString& message) argument
127 _GetOrCreateFailure(property)->AddMessage(message);
146 ValidationFailures::Contains(const BString& property) const
148 ValidationFailure* failure = _GetFailure(property);
154 ValidationFailures::Contains(const BString& property, argument
157 ValidationFailure* failure = _GetFailure(property);
203 _GetOrCreateFailure(const BString& property) argument
[all...]
/haiku/src/kits/tracker/
H A DTrackerScripting.cpp115 int32 form, const char* property)
121 property);
125 form, property);
146 const char* property = NULL; local
154 &form, &property);
158 ASSERT(property != NULL);
162 handled = CreateProperty(message, &specifier, form, property,
167 handled = GetProperty(message, form, property, &reply);
171 handled = SetProperty(message, &specifier, form, property,
176 handled = CountProperty(&specifier, form, property,
114 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 form, const char* property) argument
198 CreateProperty(BMessage* message, BMessage*, int32 form, const char* property, BMessage* reply) argument
232 DeleteProperty(BMessage*, int32 form, const char* property, BMessage*) argument
255 ExecuteProperty(BMessage* message, int32 form, const char* property, BMessage* reply) argument
303 GetProperty(BMessage* message, int32 form, const char* property, BMessage* reply) argument
[all...]
/haiku/src/system/libroot/posix/locale/
H A Dwctype.cpp204 wctype(const char *property) argument
207 if (strcmp(property, "alnum") == 0)
209 if (strcmp(property, "alpha") == 0)
211 if (strcmp(property, "blank") == 0)
213 if (strcmp(property, "cntrl") == 0)
215 if (strcmp(property, "digit") == 0)
217 if (strcmp(property, "graph") == 0)
219 if (strcmp(property, "lower") == 0)
221 if (strcmp(property, "print") == 0)
223 if (strcmp(property, "punc
[all...]
H A Dwctype_l.cpp205 wctype_l(const char *property, locale_t locale) argument
210 if (strcmp(property, "alnum") == 0)
212 if (strcmp(property, "alpha") == 0)
214 if (strcmp(property, "blank") == 0)
216 if (strcmp(property, "cntrl") == 0)
218 if (strcmp(property, "digit") == 0)
220 if (strcmp(property, "graph") == 0)
222 if (strcmp(property, "lower") == 0)
224 if (strcmp(property, "print") == 0)
226 if (strcmp(property, "punc
[all...]
/haiku/src/libs/icon/transformer/
H A DStrokeTransformer.cpp181 OptionProperty* property = new OptionProperty(PROPERTY_CAP_MODE); local
182 property->AddOption(agg::butt_cap, "Butt");
183 property->AddOption(agg::square_cap, "Square");
184 property->AddOption(agg::round_cap, "Round");
185 property->SetCurrentOptionID(line_cap());
187 object->AddProperty(property);
190 property = new OptionProperty(PROPERTY_JOIN_MODE);
191 property->AddOption(agg::miter_join, "Miter");
192 property->AddOption(agg::round_join, "Round");
193 property
226 OptionProperty* property = dynamic_cast<OptionProperty*>( local
[all...]
H A DContourTransformer.cpp168 OptionProperty* property = new OptionProperty(PROPERTY_JOIN_MODE); local
169 property->AddOption(agg::miter_join, "Miter");
170 property->AddOption(agg::round_join, "Round");
171 property->AddOption(agg::bevel_join, "Bevel");
172 property->SetCurrentOptionID(line_join());
174 object->AddProperty(property);
206 OptionProperty* property = dynamic_cast<OptionProperty*>( local
208 if (property && line_join() != property->CurrentOptionID()) {
209 line_join((agg::line_join_e)property
[all...]
/haiku/headers/os/bluetooth/
H A DBluetoothDevice.h33 virtual BString GetProperty(const char* property)=0;
34 virtual status_t GetProperty(const char* property, uint32* value)=0;
/haiku/src/system/boot/platform/efi/
H A Ddtb.cpp132 const struct fdt_property *property = fdt_get_property_by_offset(fdt, prop, &len); local
133 if (property == NULL) {
141 dprintf("prop('%s'): ", fdt_string(fdt, fdt32_to_cpu(property->nameoff)));
143 strcmp(fdt_string(fdt, fdt32_to_cpu(property->nameoff)), "compatible") == 0 ||
144 strcmp(fdt_string(fdt, fdt32_to_cpu(property->nameoff)), "model") == 0 ||
145 strcmp(fdt_string(fdt, fdt32_to_cpu(property->nameoff)), "serial-number") == 0 ||
146 strcmp(fdt_string(fdt, fdt32_to_cpu(property->nameoff)), "status") == 0 ||
147 strcmp(fdt_string(fdt, fdt32_to_cpu(property->nameoff)), "device_type") == 0 ||
148 strcmp(fdt_string(fdt, fdt32_to_cpu(property->nameoff)), "riscv,isa") == 0 ||
149 strcmp(fdt_string(fdt, fdt32_to_cpu(property
[all...]
/haiku/src/add-ons/bluetooth/ResetLocalDevice/
H A DResetLocalDevice.h21 BMessage* OverridenProperties(LocalDevice* lDevice, const char* property);

Completed in 236 milliseconds

123456