Searched refs:name (Results 76 - 100 of 3725) sorted by relevance

1234567891011>>

/haiku/src/tests/kits/app/blooper/
H A DQuitTest.h26 TQuitTest(std::string name) : TestCase(name) {;} argument
H A DRemoveCommonFilterTest.h26 TRemoveCommonFilterTest(std::string name) : TestCase(name) {;} argument
H A DRunTest.h26 TRunTest(std::string name) : TestCase(name) {;} argument
H A DSetCommonFilterListTest.h26 TSetCommonFilterListTest(std::string name) : TestCase(name) {;} argument
/haiku/src/tests/kits/app/bmessage/
H A DMessageDestructTest.h26 TMessageDestructTest(std::string name) : TestCase(name) {;} argument
H A DMessageEasyFindTest.h26 TMessageEasyFindTest(std::string name) : TestCase(name) {;} argument
H A DMessageOpAssignTest.h26 TMessageOpAssignTest(std::string name) : TestCase(name) {;} argument
H A DMessagePointerItemTest.h24 static status_t Add(BMessage& msg, const char* name, const void* val) argument
25 { return msg.AddPointer(name, val); }
26 static status_t AddData(BMessage& msg, const char* name, type_code type, argument
28 { return msg.AddData(name, type, data, size); }
29 static status_t Find(BMessage& msg, const char* name, int32 index, argument
31 { return msg.FindPointer(name, index, (void**)val); }
32 static status_t ShortFind(BMessage& msg, const char* name, const void** val) argument
33 { return msg.FindPointer(name, (void**)val); }
34 static const void* QuickFind(BMessage& msg, const char* name, int32 index) argument
37 msg.FindPointer(name, inde
40 Has(BMessage& msg, const char* name, int32 index) argument
42 Replace(BMessage& msg, const char* name, int32 index, const void* val) argument
45 FindData(BMessage& msg, const char* name, type_code type, int32 index, const void** data, ssize_t* size) argument
[all...]
/haiku/src/tests/kits/app/bmessagerunner/
H A DGetInfoTester.h26 GetInfoTester(std::string name) : TestCase(name) {;} argument
/haiku/src/tests/kits/interface/bbitmap/
H A DBBitmapTester.h26 TBBitmapTester(std::string name) : TestCase(name) {;} argument
/haiku/src/kits/shared/
H A DMessageBuilder.cpp27 current one with "name", and then pushes the current
32 BMessageBuilder::PushObject(const char* name) argument
39 BString* nameString = new(std::nothrow) BString(name);
57 /*! Convenience function that converts "name"
62 BMessageBuilder::PushObject(uint32 name) argument
65 nameString.SetToFormat("%" B_PRIu32, name);
123 BMessageBuilder::AddString(const char* name, const char* string) argument
125 return fCurrentMessage->AddString(name, string);
130 BMessageBuilder::AddString(const char* name, const BString& string) argument
132 return fCurrentMessage->AddString(name, strin
137 AddInt8(const char* name, int8 value) argument
144 AddUInt8(const char* name, uint8 value) argument
151 AddInt16(const char* name, int16 value) argument
158 AddUInt16(const char* name, uint16 value) argument
165 AddInt32(const char* name, int32 value) argument
172 AddUInt32(const char* name, uint32 value) argument
179 AddInt64(const char* name, int64 value) argument
186 AddUInt64(const char* name, uint64 value) argument
193 AddBool(const char* name, bool value) argument
200 AddFloat(const char* name, float value) argument
207 AddDouble(const char* name, double value) argument
214 AddPointer(const char* name, const void* pointer) argument
[all...]
H A DSettingsMessage.cpp117 SettingsMessage::SetValue(const char* name, bool value) argument
119 status_t ret = ReplaceBool(name, value);
121 ret = AddBool(name, value);
123 _NotifyValueChanged(name);
129 SettingsMessage::SetValue(const char* name, int8 value) argument
131 status_t ret = ReplaceInt8(name, value);
133 ret = AddInt8(name, value);
135 _NotifyValueChanged(name);
141 SettingsMessage::SetValue(const char* name, int16 value) argument
143 status_t ret = ReplaceInt16(name, valu
153 SetValue(const char* name, uint16 value) argument
165 SetValue(const char* name, int32 value) argument
177 SetValue(const char* name, uint32 value) argument
194 SetValue(const char* name, int64 value) argument
206 SetValue(const char* name, uint64 value) argument
218 SetValue(const char* name, float value) argument
230 SetValue(const char* name, double value) argument
242 SetValue(const char* name, const char* value) argument
254 SetValue(const char* name, const BString& value) argument
266 SetValue(const char* name, const BPoint& value) argument
278 SetValue(const char* name, const BRect& value) argument
290 SetValue(const char* name, const entry_ref& value) argument
302 SetValue(const char* name, const BMessage& value) argument
314 SetValue(const char* name, const BFlattenable* value) argument
326 SetValue(const char* name, type_code type, const void* data, ssize_t numBytes) argument
339 SetValue(const char* name, const BFont& value) argument
366 GetValue(const char* name, bool defaultValue) const argument
376 GetValue(const char* name, int8 defaultValue) const argument
386 GetValue(const char* name, int16 defaultValue) const argument
396 GetValue(const char* name, uint16 defaultValue) const argument
406 GetValue(const char* name, int32 defaultValue) const argument
416 GetValue(const char* name, uint32 defaultValue) const argument
430 GetValue(const char* name, int64 defaultValue) const argument
440 GetValue(const char* name, uint64 defaultValue) const argument
450 GetValue(const char* name, float defaultValue) const argument
460 GetValue(const char* name, double defaultValue) const argument
470 GetValue(const char* name, const BString& defaultValue) const argument
480 GetValue(const char* name, const char* defaultValue) const argument
490 GetValue(const char *name, BPoint defaultValue) const argument
500 GetValue(const char* name, BRect defaultValue) const argument
510 GetValue(const char* name, const entry_ref& defaultValue) const argument
520 GetValue(const char* name, const BMessage& defaultValue) const argument
530 GetValue(const char* name, const BFont& defaultValue) const argument
556 GetValue(const char* name, type_code type, ssize_t numBytes, const void** defaultValue) const argument
[all...]
/haiku/src/preferences/notifications/
H A DSettingsPane.cpp17 SettingsPane::SettingsPane(const char* name, SettingsHost* host) argument
19 BView(name, B_WILL_DRAW),
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DAttributeIndex.cpp8 AttributeIndex::AttributeIndex(Volume *volume, const char *name, uint32 type, argument
10 : Index(volume, name, type, fixedKeyLength, keyLength)
/haiku/src/build/libbe/app/
H A DLooper.cpp10 BLooper::BLooper(const char* name, int32 priority, int32 port_capacity) argument
/haiku/headers/private/app/
H A DLaunchRoster.h27 port_id GetPort(const char* name = NULL);
29 const char* name);
31 status_t Target(const char* name, const BMessage& data,
33 status_t Target(const char* name,
36 status_t StopTarget(const char* name,
39 status_t Start(const char* name);
40 status_t Stop(const char* name, bool force = false);
41 status_t SetEnabled(const char* name, bool enabled);
46 const char* name, uint32 flags);
48 const char* name);
[all...]
/haiku/headers/private/interface/
H A DDecoratorPrivate.h19 bool get_decorator(BString& name);
20 status_t set_decorator(const BString& name);
21 status_t preview_decorator(const BString& name, BWindow* window);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DEntryRef.cpp13 EntryRef::EntryRef(dev_t volumeID, ino_t nodeID, const char* name) argument
14 : entry_ref(volumeID, nodeID, name)
30 return (name ? B_OK : B_NO_MEMORY);
40 hash = 17 * hash + string_hash(name);
54 NoAllocEntryRef::NoAllocEntryRef(dev_t volumeID, ino_t nodeID, const char* name) argument
59 this->name = const_cast<char*>(name);
68 this->name = ref.name;
74 name
[all...]
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPCapabilityExtractor.h33 bool BeginParameter(const char* name, const char* displayName,
35 void DefaultStringParameter(const char* name,
37 void StringParameterSize(const char* name, int size);
38 void StringParameter(const char* name, const char* key,
40 void ResolutionParameter(const char* name, const char* key,
42 void PageSizeParameter(const char* name, const char* key,
44 void EndParameter(const char* name);
45 void BooleanParameter(const char* name, const char* displayName,
48 void DoubleParameter(const char* name, const char* displayName,
51 void IntParameter(const char* name, cons
[all...]
/haiku/src/system/kernel/arch/mips/
H A Darch_asm.S5 #define FUNC(name) .align 2 ; .globl name ; name:
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A Dentry_cache.cpp14 entry_cache_add(dev_t mountID, ino_t dirID, const char* name, ino_t nodeID) argument
21 entry_cache_add_missing(dev_t mountID, ino_t dirID, const char* name) argument
28 entry_cache_remove(dev_t mountID, ino_t dirID, const char* name) argument
/haiku/src/libs/compat/freebsd_network/compat/dev/led/
H A Dled.h13 led_create_state(led_t* func, void* priv, char const* name, int state) argument
20 led_create(led_t* func, void* priv, char const* name) argument
33 led_set(char const* name, char const* cmd) argument
/haiku/src/system/kernel/arch/riscv64/
H A Dsbi_syscalls.S7 #define SBI_SYSCALL(name, eid, fid) \
8 .globl name; \
9 .type name,%function; \
10 name: \ label
15 .size name, .-name
17 #define SBI_SYSCALL_LEGACY(name, eid) \
18 .globl name; \
19 .type name,%function; \
20 name label
[all...]
/haiku/src/system/boot/platform/amiga_m68k/
H A Drom_calls.h39 #define LP0(offs, rt, name, bt, bn) \
45 register rt _##name##_re __asm("d0"); \
46 void *const _##name##_bn = (bn); \
48 : "=r" (_##name##_re), "=r" (_d1), "=r" (_a0), "=r" (_a1) \
49 : [libbase] "a" (_##name##_bn) \
51 _##name##_re; \
55 #define LP0NR(offs, name, bt, bn) \
62 void *const _##name##_bn = (bn); \
65 : [libbase] "a" (_##name##_bn) \
70 #define LP1(offs, rt, name, t
[all...]
/haiku/src/system/libroot/posix/glibc/include/arch/ppc/
H A Dsysdep.h111 #define ASM_TYPE_DIRECTIVE(name,typearg) .type name,typearg;
112 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name
148 #define ENTRY(name) \
149 ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \
150 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
152 C_LABEL(name) \
167 #define EALIGN(name, align
[all...]

Completed in 341 milliseconds

1234567891011>>