/haiku/src/kits/app/ |
H A D | MessageAdapter.cpp | 257 bool fixedSize = (field->flags & FIELD_FLAG_FIXED_SIZE) != 0; in ConvertToKMessage() local 259 if (fixedSize) { in ConvertToKMessage() 600 bool fixedSize = flags & R5_FIELD_FLAG_FIXED_SIZE; in _UnflattenR5Message() local 643 if (fixedSize) in _UnflattenR5Message() 648 if (!fixedSize) { in _UnflattenR5Message() 654 fixedSize, itemCount); in _UnflattenR5Message() 661 if (fixedSize) in _UnflattenR5Message() 670 if (!fixedSize) { in _UnflattenR5Message() 677 fixedSize, itemCount); in _UnflattenR5Message() 684 if (fixedSize) in _UnflattenR5Message() [all …]
|
H A D | Message.cpp | 502 BMessage::GetInfo(const char* name, type_code* typeFound, bool* fixedSize) in GetInfo() 513 if (fixedSize != NULL) in GetInfo() 514 *fixedSize = (field->flags & FIELD_FLAG_FIXED_SIZE) != 0; in GetInfo() 522 bool* fixedSize) const in GetInfo() 534 if (fixedSize != NULL) in GetInfo() 535 *fixedSize = (field->flags & FIELD_FLAG_FIXED_SIZE) != 0; in GetInfo() 3352 ssize_t numBytes, bool fixedSize, int count) in SetData() argument 3360 return AddData(name, type, data, numBytes, fixedSize, count); in SetData()
|
/haiku/src/kits/interface/ |
H A D | BMCPrivate.cpp | 96 _BMCMenuBar_::_BMCMenuBar_(BRect frame, bool fixedSize, BMenuField* menuField) in _BMCMenuBar_() argument 99 !fixedSize), in _BMCMenuBar_() 101 fFixedSize(fixedSize), in _BMCMenuBar_()
|
H A D | MenuField.cpp | 222 BMenu* menu, bool fixedSize, uint32 resizingMode, uint32 flags) in BMenuField() argument 228 fFixedSizeMB = fixedSize; in BMenuField() 231 _InitMenuBar(menu, frame, fixedSize); in BMenuField() 251 bool fixedSize, uint32 flags) in BMenuField() argument 257 fFixedSizeMB = fixedSize; in BMenuField() 259 _InitMenuBar(menu, BRect(0, 0, 100, 15), fixedSize); in BMenuField() 1199 BMenuField::_InitMenuBar(BMenu* menu, BRect frame, bool fixedSize) in _InitMenuBar() argument 1215 fMenuBar = new _BMCMenuBar_(frame, fixedSize, this); in _InitMenuBar() 1218 if (fixedSize) { in _InitMenuBar()
|
/haiku/headers/private/interface/ |
H A D | BMCPrivate.h | 38 _BMCMenuBar_(BRect frame, bool fixedSize,
|
/haiku/headers/os/interface/ |
H A D | MenuField.h | 133 BRect frame, bool fixedSize);
|
/haiku/headers/os/app/ |
H A D | Message.h | 74 bool* fixedSize) const; 76 int32* countFound, bool* fixedSize) const; 526 bool fixedSize = true, int count = 1);
|
/haiku/src/tests/kits/app/bmessage/ |
H A D | MessageItemTest.h | 96 Type* val, ssize_t size, bool fixedSize = true) 98 return (msg.*AddDataFunc)(name, type, (const void*)val, size, fixedSize, 1);
|
/haiku/docs/develop/build/rc/ |
H A D | notes.rst | 42 because rc doesn't add the message fields as "fixedSize" (see the BMessage docs from the BeBook).
|
/haiku/docs/user/interface/ |
H A D | MenuField.dox | 88 BMenu* menu, bool fixedSize, uint32 resizingMode, uint32 flags) 96 \param fixedSize \c true for fixed-size, \c false for variable-size.
|
/haiku/headers/build/os/app/ |
H A D | Message.h | 65 bool *fixedSize) const;
|
/haiku/src/build/libbe/app/ |
H A D | Message.cpp | 416 BMessage::GetInfo(const char *name, type_code *typeFound, bool *fixedSize) in GetInfo() 427 if (fixedSize) in GetInfo() 428 *fixedSize = (field->flags & FIELD_FLAG_FIXED_SIZE) != 0; in GetInfo()
|
/haiku/docs/user/app/ |
H A D | Message.dox | 293 bool* fixedSize) const 300 in the variable you passed as \a fixedSize parameter. 308 int32* countFound, bool* fixedSize) const 315 in the variable you passed as \a fixedSize parameter. 5128 const void* data, ssize_t numBytes, bool fixedSize = true,
|