Searched refs:property (Results 26 - 50 of 145) sorted by relevance

123456

/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DIconValueView.cpp20 IconValueView::IconValueView(IconProperty* property) argument
22 fProperty(property),
78 IconValueView::AdoptProperty(Property* property) argument
80 IconProperty* p = dynamic_cast<IconProperty*>(property);
H A DBoolValueView.cpp16 BoolValueView::BoolValueView(BoolProperty* property) argument
18 fProperty(property),
149 BoolValueView::AdoptProperty(Property* property) argument
151 BoolProperty* p = dynamic_cast<BoolProperty*>(property);
H A DOptionValueView.cpp24 OptionValueView::OptionValueView(OptionProperty* property) argument
26 fProperty(property),
214 OptionValueView::AdoptProperty(Property* property) argument
216 OptionProperty* p = dynamic_cast<OptionProperty*>(property);
/haiku/src/tests/apps/haikudepot/
H A DValidationFailureTest.h26 const char* property,
/haiku/src/kits/tracker/
H A DPoseViewScripting.cpp217 const char* property = 0; local
224 &form, &property);
229 ASSERT(property != NULL);
233 handled = CreateProperty(message, &specifier, form, property,
238 handled = GetProperty(&specifier, form, property, &reply);
242 handled = SetProperty(message, &specifier, form, property,
247 handled = CountProperty(&specifier, form, property, &reply);
251 handled = DeleteProperty(&specifier, form, property, &reply);
255 handled = ExecuteProperty(&specifier, form, property, &reply);
270 const char* property, BMessag
269 ExecuteProperty(BMessage* specifier, int32 form, const char* property, BMessage* reply) argument
319 CreateProperty(BMessage* specifier, BMessage*, int32 form, const char* property, BMessage* reply) argument
375 DeleteProperty(BMessage* specifier, int32 form, const char* property, BMessage* reply) argument
473 CountProperty(BMessage*, int32, const char* property, BMessage* reply) argument
493 GetProperty(BMessage* specifier, int32 form, const char* property, BMessage* reply) argument
625 SetProperty(BMessage* message, BMessage*, int32 form, const char* property, BMessage* reply) argument
693 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 form, const char* property) argument
[all...]
/haiku/headers/os/bluetooth/
H A DLocalDeviceAddOn.h22 virtual BMessage* OverridenProperties(LocalDevice* lDevice, const char* property)=0;
H A DLocalDevice.h44 BString GetProperty(const char* property);
45 status_t GetProperty(const char* property, uint32* value);
H A DRemoteDevice.h48 BString GetProperty(const char* property); /* Throwing */
49 status_t GetProperty(const char* property, uint32* value); /* Throwing */
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyItemView.cpp26 PropertyItemView::PropertyItemView(Property* property) argument
27 : BView(BRect(0.0, 0.0, 10.0, 10.0), "property item",
31 fEditorView(/*factory->*/EditorFor(property)),
32 // NOTE: can be NULL if property is NULL or unkown
52 const Property* property = GetProperty(); local
53 if (property && fParent) {
71 BString truncated(name_for_id(property->Identifier()));
170 if (const Property* property = GetProperty())
171 width = ceilf(StringWidth(name_for_id(property->Identifier())) + 10.0);
227 PropertyItemView::AdoptProperty(Property* property) argument
[all...]
H A DPropertyEditorView.h46 virtual bool AdoptProperty(Property* property) = 0;
H A DPropertyListView.cpp194 data->FindMessage("property", i, &archive) >= B_OK;
199 // see if this is actually a property
200 Property* property = dynamic_cast<Property*>(archivable); local
201 if (property == NULL || !propertyObject.AddProperty(property))
223 const Property* property = item->GetProperty(); local
224 if (property) {
226 if (property->Archive(&archive) >= B_OK) {
227 data->AddMessage("property", &archive);
237 // property selectio
376 Property* property = object->PropertyAt(i); local
[all...]
/haiku/src/apps/icon-o-matic/generic/property/
H A DPropertyObject.h27 bool AddProperty(Property* property);
34 bool HasProperty(Property* property) const;
47 // common interface for any property
54 // access to more specific property types
H A DPropertyObject.cpp105 PropertyObject::AddProperty(Property* property) argument
107 if (!property)
111 if (FindProperty(property->Identifier())) {
113 "property with same ID already here!\n");
118 if (fProperties.HasItem((void*)property)) {
119 debugger("PropertyObject::AddProperty() - property id "
125 if (fProperties.AddItem((void*)property)) {
171 PropertyObject::HasProperty(Property* property) const
173 return fProperties.HasItem((void*)property);
/haiku/src/apps/icon-o-matic/document/
H A DSetPropertiesCommand.cpp90 BString property = name_for_id( local
93 name << B_TRANSLATE_COMMENT("Multi-set %property%",
94 "Don't translate %property%");
96 name << B_TRANSLATE_COMMENT("Set %property%",
97 "Don't translate %property%");
99 name.ReplaceFirst("%property%", property);
/haiku/headers/libs/libfdt/
H A Dlibfdt.h22 /* FDT_ERR_NOTFOUND: The requested node or property does not exist */
24 /* FDT_ERR_EXISTS: Attempted to create a node or property which
43 * This can be caused either by an invalid phandle property
85 * or similar property with a bad format or value */
88 /* FDT_ERR_BADVALUE: Device tree has a property with an unexpected
89 * value. For example: a property expected to contain a string list
95 * unexpected or missing value, property or node. */
151 static inline void fdt32_st(void *property, uint32_t value) argument
153 uint8_t *bp = (uint8_t *)property;
175 static inline void fdt64_st(void *property, uint64_ argument
[all...]
/haiku/headers/private/kernel/platform/openfirmware/
H A Dopenfirmware.h53 extern intptr_t of_getprop(intptr_t package, const char *property, void *buffer,
55 extern intptr_t of_setprop(intptr_t package, const char *property, const void *buffer,
59 extern intptr_t of_getproplen(intptr_t package, const char *property);
/haiku/src/servers/bluetooth/
H A DLocalDeviceHandler.h30 bool IsPropertyAvailable(const char* property);
H A DLocalDeviceHandler.cpp54 LocalDeviceHandler::IsPropertyAvailable(const char* property) argument
59 return (fProperties->GetInfo(property, &typeFound, &countFound) == B_OK );
/haiku/headers/posix/
H A Dwctype.h38 extern wctype_t wctype(const char *property);
61 extern wctype_t wctype_l(const char *property, locale_t locale);
/haiku/src/servers/notification/
H A DNotificationView.cpp150 const char* property; local
156 if (specifier.FindString("property", &property) != B_OK)
160 if (strcmp(property, "type") == 0)
163 if (strcmp(property, "group") == 0)
166 if (strcmp(property, "title") == 0)
169 if (strcmp(property, "content") == 0)
172 if (strcmp(property, "progress") == 0)
175 if ((strcmp(property, "icon") == 0) && fBitmap) {
193 const char* property; local
[all...]
/haiku/src/add-ons/kernel/bus_managers/fdt/
H A Dfdt_module.cpp590 dprintf(" interrupt-map-mask property not found or invalid\n");
600 dprintf(" interrupt-map property not found\n");
608 const void *property; local
610 property = fdt_getprop(gFDT, fdtNode, "#address-cells", NULL);
611 if (property != NULL)
612 addressCells = B_BENDIAN_TO_HOST_INT32(*(uint32*)property);
614 property = fdt_getprop(gFDT, fdtNode, "#interrupt-cells", NULL);
615 if (property != NULL)
616 interruptCells = B_BENDIAN_TO_HOST_INT32(*(uint32*)property);
636 property
[all...]
/haiku/src/system/kernel/platform/openfirmware/
H A Dopenfirmware.cpp296 of_getprop(intptr_t package, const char *property, void *buffer, intptr_t bufferSize) argument
303 const char *property; member in struct:__anon14
307 } args = {"getprop", 4, 1, package, property, buffer, bufferSize, 0};
317 of_setprop(intptr_t package, const char *property, const void *buffer, argument
325 const char *property; member in struct:__anon15
329 } args = {"setprop", 4, 1, package, property, buffer, bufferSize, 0};
339 of_getproplen(intptr_t package, const char *property) argument
346 const char *property; member in struct:__anon16
348 } args = {"getproplen", 2, 1, package, property, 0};
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.cpp63 "Click on an object in", "Empty property list - 1st line");
65 "any of the other lists to", "Empty property list - 2nd line");
67 "edit its properties here.", "Empty property list - 3rd line");
193 Property* property = item->GetProperty(); local
194 if (property != NULL && property->Identifier() == PROPERTY_NAME) {
/haiku/src/apps/serialconnect/
H A DSerialApp.cpp232 const char* property; local
238 if (message->GetCurrentSpecifier(&index, &specifier, &what, &property)
241 what, property)) {
457 BMessage* specifier, int32 what, const char* property)
460 property) >= 0)
464 property);
456 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 what, const char* property) argument
/haiku/src/kits/interface/
H A DControl.cpp210 const char* property; local
211 if (message->GetCurrentSpecifier(&index, &specifier, &form, &property) == B_OK) {
212 if (strcmp(property, "Label") == 0) {
225 } else if (strcmp(property, "Value") == 0) {
238 } else if (strcmp(property, "Enabled") == 0) {
449 BMessage* specifier, int32 what, const char* property)
453 if (propInfo.FindMatch(message, 0, specifier, what, property) >= B_OK)
457 property);
448 ResolveSpecifier(BMessage* message, int32 index, BMessage* specifier, int32 what, const char* property) argument

Completed in 111 milliseconds

123456