Searched refs:property (Results 76 - 100 of 145) sorted by path

123456

/haiku/headers/os/interface/
H A DAlert.h83 const char* property);
H A DDragger.h56 int32 form, const char* property);
H A DListView.h145 int32 what, const char* property);
H A DMenu.h134 int32 form, const char* property);
H A DMenuField.h79 int32 form, const char* property);
H A DOutlineListView.h74 int32 what, const char* property);
H A DPictureButton.h76 int32 what, const char* property);
H A DScrollBar.h89 int32 what, const char* property);
H A DScrollView.h80 int32 what, const char* property);
H A DShelf.h52 int32 form, const char* property);
H A DTabView.h160 int32 what, const char* property);
H A DTextView.h89 int32 form, const char* property);
396 const char* property, BMessage* reply);
399 const char* property, BMessage* reply);
401 BMessage* specifier, const char* property,
H A DView.h595 const char* property);
H A DWindow.h230 int32 what, const char* property);
/haiku/headers/os/media/
H A DMediaRoster.h348 int32 form, const char* property);
/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/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/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/apps/haikudepot/model/
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...]
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);
/haiku/src/apps/haikudepot/ui/
H A DUserLoginWindow.cpp1226 const BString& property, const BString& message)
1228 if (property == "email" && message == "malformed")
1231 if (property == "nickname" && message == "notunique") {
1236 if (property == "nickname" && message == "required")
1239 if (property == "nickname" && message == "malformed") {
1245 if (property == "passwordClear" && message == "required")
1248 if (property == "passwordClear" && message == "invalid") {
1254 if (property == "passwordClearRepeated" && message == "required") {
1259 if (property == "passwordClearRepeated" && message == "repeat")
1262 if (property
1225 _CreateAlertTextFromValidationFailure( const BString& property, const BString& message) argument
[all...]
H A DUserLoginWindow.h79 const BString& 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/src/apps/icon-o-matic/generic/property/view/
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/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) {

Completed in 239 milliseconds

123456