Lines Matching refs:typeName

2408 #define DEFINE_FUNCTIONS(type, typeName, typeCode)							\
2410 BMessage::Add##typeName(const char *name, type val) \
2417 BMessage::Find##typeName(const char *name, type *p) const \
2434 BMessage::Find##typeName(const char *name, int32 index, type *p) const \
2451 BMessage::Replace##typeName(const char *name, type value) \
2458 BMessage::Replace##typeName(const char *name, int32 index, type value) \
2465 BMessage::Has##typeName(const char *name, int32 index) const \
2487 #define DEFINE_HAS_FUNCTION(typeName, typeCode) \
2489 BMessage::Has##typeName(const char *name, int32 index) const \
2505 #define DEFINE_LAZY_FIND_FUNCTION(type, typeName, initialize) \
2507 BMessage::Find##typeName(const char *name, int32 index) const \
2510 Find##typeName(name, index, &val); \
2529 #define DEFINE_SET_GET_FUNCTIONS(type, typeName, typeCode) \
2531 BMessage::Get##typeName(const char *name, type defaultValue) const \
2533 return Get##typeName(name, 0, defaultValue); \
2538 BMessage::Get##typeName(const char *name, int32 index, \
2542 if (Find##typeName(name, index, &value) == B_OK) \
2550 BMessage::Set##typeName(const char *name, type value) \
2572 #define DEFINE_SET_GET_BY_REFERENCE_FUNCTIONS(type, typeName, typeCode) \
2574 BMessage::Get##typeName(const char *name, const type& defaultValue) const \
2576 return Get##typeName(name, 0, defaultValue); \
2581 BMessage::Get##typeName(const char *name, int32 index, \
2585 if (Find##typeName(name, index, &value) == B_OK) \
2593 BMessage::Set##typeName(const char *name, const type& value) \