Searched refs:name (Results 26 - 50 of 3725) sorted by relevance

1234567891011>>

/haiku/src/tests/kits/interface/bshelf/Container/
H A DTPreferences.cpp73 status_t TPreferences::SetBool(const char *name, bool b) argument
75 if (HasBool(name))
77 return ReplaceBool(name, 0, b);
79 return AddBool(name, b);
82 status_t TPreferences::SetInt8(const char *name, int8 i) argument
84 if (HasInt8(name))
86 return ReplaceInt8(name, 0, i);
88 return AddInt8(name, i);
91 status_t TPreferences::SetInt16(const char *name, int16 i) argument
93 if (HasInt16(name))
100 SetInt32(const char *name, int32 i) argument
109 SetInt64(const char *name, int64 i) argument
118 SetFloat(const char *name, float f) argument
127 SetDouble(const char *name, double f) argument
136 SetString(const char *name, const char *s) argument
145 SetPoint(const char *name, BPoint p) argument
154 SetRect(const char *name, BRect r) argument
163 SetMessage(const char *name, const BMessage *message) argument
172 SetFlat(const char *name, const BFlattenable *obj) argument
181 SetData(const char *name, type_code type,const void *data, ssize_t numBytes) argument
190 SetRef(const char *name, entry_ref *ref) argument
[all...]
/haiku/src/tests/kits/interface/bshelf/ShelfInspector/
H A DTPreferences.cpp75 status_t TPreferences::SetBool(const char *name, bool b) argument
77 if (HasBool(name)) // Testen auf Typ bool
79 return ReplaceBool(name, 0, b); // Wenn Variable schon existiert -> ��berschreiben -> Funktion beenden
81 return AddBool(name, b); // Wenn Variable nicht existiert -> neu anlegen -> Funktion beenden
84 status_t TPreferences::SetInt8(const char *name, int8 i) argument
86 if (HasInt8(name))
88 return ReplaceInt8(name, 0, i);
90 return AddInt8(name, i);
93 status_t TPreferences::SetInt16(const char *name, int16 i) argument
95 if (HasInt16(name))
102 SetInt32(const char *name, int32 i) argument
111 SetInt64(const char *name, int64 i) argument
120 SetFloat(const char *name, float f) argument
129 SetDouble(const char *name, double f) argument
138 SetString(const char *name, const char *s) argument
147 SetPoint(const char *name, BPoint p) argument
156 SetRect(const char *name, BRect r) argument
165 SetMessage(const char *name, const BMessage *message) argument
174 SetFlat(const char *name, const BFlattenable *obj) argument
183 SetData(const char *name, type_code type,const void *data, ssize_t numBytes) argument
192 SetRef(const char *name, entry_ref *ref) argument
[all...]
/haiku/src/system/libroot/posix/glibc/include/arch/m68k/
H A Dsysdep.h31 #define ASM_TYPE_DIRECTIVE(name,typearg) .type name,typearg
32 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name
37 #define ASM_TYPE_DIRECTIVE(name,type) /* Nothing is specified. */
38 #define ASM_SIZE_DIRECTIVE(name) /* Nothing is specified. */
48 #define ENTRY(name) \
49 .globl C_SYMBOL_NAME(name); \
50 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),
[all...]
/haiku/src/system/libroot/posix/glibc/include/
H A Dlibc-symbols.h70 # define C_SYMBOL_NAME(name) name
81 # define C_SYMBOL_DOT_NAME(name) .name
83 # define C_SYMBOL_DOT_NAME(name) .##name
93 # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
94 # define _strong_alias(name, aliasname) \
95 extern __typeof (name) aliasnam
[all...]
/haiku/src/libs/print/libprint/
H A DPrintUtils.cpp54 SetBool(BMessage* msg, const char* name, bool value) argument
56 if (msg->HasBool(name)) {
57 msg->ReplaceBool(name, value);
59 msg->AddBool(name, value);
65 SetFloat(BMessage* msg, const char* name, float value) argument
67 if (msg->HasFloat(name)) {
68 msg->ReplaceFloat(name, value);
70 msg->AddFloat(name, value);
76 SetInt32(BMessage* msg, const char* name, int32 value) argument
78 if (msg->HasInt32(name)) {
87 SetString(BMessage* msg, const char* name, const char* value) argument
98 SetRect(BMessage* msg, const char* name, const BRect& rect) argument
109 SetString(BMessage* msg, const char* name, const BString& value) argument
116 InList(const char* list[], const char* name) argument
132 char* name; local
[all...]
/haiku/src/apps/showimage/
H A DShowImageSettings.h27 bool GetBool(const char* name, bool defaultValue);
28 int32 GetInt32(const char* name, int32 defaultValue);
29 float GetFloat(const char* name, float defaultValue);
30 BRect GetRect(const char* name, BRect defaultValue);
31 bigtime_t GetTime(const char* name,
33 const char* GetString(const char* name,
36 void SetBool(const char* name, bool value);
37 void SetInt32(const char* name, int32 value);
38 void SetFloat(const char* name, float value);
39 void SetRect(const char* name, BRec
[all...]
/haiku/src/system/libroot/os/arch/x86_64/
H A Dthread.cpp12 find_thread(const char* name) argument
14 if (!name) {
22 return _kern_find_thread(name);
/haiku/src/system/libroot/os/arch/riscv64/
H A Dthread.cpp13 find_thread(const char *name) argument
15 if (name == NULL)
18 return _kern_find_thread(name);
/haiku/src/system/libroot/os/arch/arm/
H A Dthread.c19 find_thread(const char *name) argument
21 if (name == NULL)
24 return _kern_find_thread(name);
/haiku/src/system/libroot/os/arch/arm64/
H A Dthread.c13 find_thread(const char *name) argument
15 if (name == NULL)
18 return _kern_find_thread(name);
/haiku/src/system/libroot/os/arch/x86/
H A Dthread.c12 find_thread(const char *name) argument
16 if (!name) {
23 return _kern_find_thread(name);
29 extern thread_id _kfind_thread_(const char *name);
33 _kfind_thread_(const char *name) argument
35 return _kern_find_thread(name);
/haiku/headers/private/libroot/
H A Dunistd_private.h16 long __sysconf_beos(int name);
17 long __sysconf(int name);
/haiku/src/apps/poorman/
H A DPoorManView.cpp12 PoorManView::PoorManView(BRect rect, const char *name) argument
13 : BView(rect, name, B_FOLLOW_ALL, B_WILL_DRAW)
/haiku/src/kits/package/hpkg/
H A DPackageEntryAttribute.cpp15 BPackageEntryAttribute::BPackageEntryAttribute(const char* name) argument
17 fName(name),
/haiku/src/kits/package/hpkg/v1/
H A DPackageEntryAttributeV1.cpp17 BPackageEntryAttribute::BPackageEntryAttribute(const char* name) argument
19 fName(name),
/haiku/src/bin/debug/strace/
H A Dstrace.h14 Syscall *get_syscall(const char *name);
/haiku/src/libs/stdc++/legacy/
H A Dansidecl.h34 obsolete -- DEFUN (name, arglist, args)
46 obsolete -- DEFUN_VOID (name)
50 obsolete -- EXFUN (name, (prototype)) -- obsolete.
58 obsolete -- PROTO (type, name, (prototype) -- obsolete.
65 the name is misleading and the result is ugly. So we just define a
77 the function name out of the mess. EXFUN should be considered
123 #define PROTO(type, name, arglist) type name arglist
124 #define EXFUN(name, proto) name prot
[all...]
/haiku/src/tests/kits/interface/flatten_picture/
H A DPictureTestCases.h15 const char *name; member in struct:__anon5822
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DStringConstants.h17 #define DEFINE_STRING_CONSTANT(name, value) \
18 String name;
19 #define DEFINE_STRING_ARRAY_CONSTANT(name, size, ...) \
20 String name[size];
/haiku/headers/private/shared/
H A DMessageBuilder.h19 status_t PushObject(const char* name);
20 status_t PushObject(uint32 name);
29 status_t AddString(const char* name, const char* string);
30 status_t AddString(const char* name,
32 status_t AddInt8(const char* name, int8 value);
33 status_t AddUInt8(const char* name, uint8 value);
34 status_t AddInt16(const char* name, int16 value);
35 status_t AddUInt16(const char* name, uint16 value);
36 status_t AddInt32(const char* name, int32 value);
37 status_t AddUInt32(const char* name, uint3
[all...]
H A DSettingsMessage.h41 status_t SetValue(const char* name, bool value);
42 status_t SetValue(const char* name, int8 value);
43 status_t SetValue(const char* name, int16 value);
44 status_t SetValue(const char* name, uint16 value);
45 status_t SetValue(const char* name, int32 value);
46 status_t SetValue(const char* name, uint32 value);
47 status_t SetValue(const char* name, int64 value);
48 status_t SetValue(const char* name, uint64 value);
49 status_t SetValue(const char* name, float value);
50 status_t SetValue(const char* name, doubl
[all...]
/haiku/src/servers/launch/
H A DTarget.cpp10 Target::Target(const char* name) argument
12 BaseJob(name),
19 Target::AddData(const char* name, BMessage& data) argument
21 return fData.AddMessage(name, &data);
/haiku/src/bin/
H A Diroster.cpp19 printf(" name type state \n");
45 static void start_device(const char *name) argument
50 device = find_input_device(name);
52 printf("Error finding device \"%s\"\n", name);
55 printf("Error starting device \"%s\" (%" B_PRId32 ")\n", name, status);
58 printf("Started device \"%s\"\n", name);
64 static void stop_device(const char *name) argument
69 device = find_input_device(name);
71 printf("Error finding device \"%s\"\n", name);
74 printf("Error stopping device \"%s\" (%" B_PRId32 ")\n", name, statu
86 const char *name; local
[all...]
/haiku/src/kits/debugger/dwarf/
H A DSourceLanguageInfo.cpp13 name = "unknown";
28 name = "C";
34 name = "C 89";
40 name = "C 99";
46 name = "C++";
/haiku/src/libs/compat/freebsd_iflib/compat/sys/
H A Dnv.h118 * The nvlist_exists functions check if the given name (optionally of the given
122 bool nvlist_exists(const nvlist_t *nvl, const char *name);
123 bool nvlist_exists_type(const nvlist_t *nvl, const char *name, int type);
125 bool nvlist_exists_null(const nvlist_t *nvl, const char *name);
126 bool nvlist_exists_bool(const nvlist_t *nvl, const char *name);
127 bool nvlist_exists_number(const nvlist_t *nvl, const char *name);
128 bool nvlist_exists_string(const nvlist_t *nvl, const char *name);
129 bool nvlist_exists_nvlist(const nvlist_t *nvl, const char *name);
130 bool nvlist_exists_binary(const nvlist_t *nvl, const char *name);
131 bool nvlist_exists_bool_array(const nvlist_t *nvl, const char *name);
[all...]

Completed in 158 milliseconds

1234567891011>>