Searched refs:name (Results 126 - 150 of 5278) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/coreutils/lib/
H A Dpropername.h28 A non-ASCII name. This causes trouble in the --version output. The simple
29 "solution", unfortunately mutilates the name.
37 What is desirable, is to print the full name if the output character set
38 allows it, and the ASCIIfied name only as a fallback.
50 to write the name using that different writing system. In that case the
52 <translated name> (<original name in English>)
70 explaining how the name is written or pronounced.)
75 --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."'
76 --keyword='proper_name_utf8:1,"This is a proper name
[all...]
H A Dremove.c32 rpl_remove (char const *name) argument
39 int result = rmdir (name);
41 result = unlink (name);
H A Dunsetenv.c20 optimizes away the name == NULL test below. */
57 unsetenv (const char *name) argument
62 if (name == NULL || *name == '\0' || strchr (name, '=') != NULL)
68 len = strlen (name);
74 if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
104 rpl_unsetenv (const char *name)
107 if (!name || !*name || strch
[all...]
H A Dlinkat.c106 char *name = (char *) file1; local
112 don't need an absolute name, and we don't need to resolve
114 while (i-- && (target = areadlink (name)))
118 if (name != file1)
119 free (name);
120 name = target;
124 char *dir = mdir_name (name);
125 if (name != file1)
126 free (name);
133 name
198 char *name = (char *) file1; local
[all...]
/haiku-fatelf/src/bin/gdb/gdb/regformats/
H A Dregdef.h26 /* The name of this register - NULL for pad entries. */
27 const char *name; member in struct:reg
/haiku-fatelf/src/build/libbe/app/
H A DLooper.cpp10 BLooper::BLooper(const char* name, int32 priority, int32 port_capacity) argument
/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dsystm.c17 getenv(const char *name) argument
/haiku-fatelf/src/libs/expat/xmlwf/
H A Dfilemap.h8 int filemap(const wchar_t *name,
13 int filemap(const char *name,
/haiku-fatelf/src/libs/fluidsynth/src/
H A Dfluid_mdriver.h35 char* name; member in struct:_fluid_midi_driver_t
/haiku-fatelf/src/tests/kits/app/bmessage/
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-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DKMessage.h41 status_t AddField(const char *name, type_code type, int32 elementSize = -1,
43 status_t FindField(const char *name, KMessageField *field) const;
44 status_t FindField(const char *name, type_code type,
48 status_t AddData(const char *name, type_code type, const void *data,
50 status_t AddArray(const char *name, type_code type, const void *data,
52 inline status_t AddBool(const char *name, bool value);
53 inline status_t AddInt8(const char *name, int8 value);
54 inline status_t AddInt16(const char *name, int16 value);
55 inline status_t AddInt32(const char *name, int32 value);
56 inline status_t AddInt64(const char *name, int6
183 AddBool(const char *name, bool value) argument
191 AddInt8(const char *name, int8 value) argument
199 AddInt16(const char *name, int16 value) argument
207 AddInt32(const char *name, int32 value) argument
215 AddInt64(const char *name, int64 value) argument
223 AddString(const char *name, const char *value) argument
235 FindBool(const char *name, bool *value) const argument
243 FindBool(const char *name, int32 index, bool *value) const argument
251 FindInt8(const char *name, int8 *value) const argument
259 FindInt8(const char *name, int32 index, int8 *value) const argument
267 FindInt16(const char *name, int16 *value) const argument
275 FindInt16(const char *name, int32 index, int16 *value) const argument
283 FindInt32(const char *name, int32 *value) const argument
291 FindInt32(const char *name, int32 index, int32 *value) const argument
299 FindInt64(const char *name, int64 *value) const argument
307 FindInt64(const char *name, int32 index, int64 *value) const argument
315 FindString(const char *name, const char **value) const argument
323 FindString(const char *name, int32 index, const char **value) const argument
[all...]
/haiku-fatelf/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-fatelf/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-fatelf/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-fatelf/src/bin/network/tcpdump/libpcap/Win32/Src/
H A Dgetnetbynm.c10 * by the University of California, Berkeley. The name of the
27 getnetbyname(const char *name) argument
34 if (strcmp(p->n_name, name) == 0)
37 if (strcmp(*cp, name) == 0)
/haiku-fatelf/src/system/kernel/arch/mips/
H A Darch_asm.S5 #define FUNC(name) .align 2 ; .globl name ; name:
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/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-fatelf/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-fatelf/src/build/libbe/support/
H A DArchivable.cpp68 static void Demangle(const char *name, BString &out);
69 static void Mangle(const char *name, BString &out);
78 Nov 28 01:40:45 instantiate_object failed: Failed to find an entrydefining the class name (Name not found).
118 BString name; local
119 Demangle(typeid(*this).name(), name);
121 return into->AddString(B_CLASS_FIELD, name);
196 int GetNumber(const char*& name) argument
198 int val = atoi(name);
199 while (isdigit(*name))
207 Demangle(const char* name, BString& out) argument
254 Mangle(const char* name, BString& out) argument
[all...]
/haiku-fatelf/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...]
/haiku-fatelf/src/kits/shared/
H A DAboutMenuItem.cpp29 const char* name = NULL; local
31 name = B_TRANSLATE_NOCOLLECT_SYSTEM_NAME(info.ref.name);
37 if (name != NULL)
38 label.ReplaceFirst("%app%", name);
/haiku-fatelf/headers/build/os/app/
H A DMessage.h61 status_t GetInfo(const char *name, type_code *typeFound,
63 status_t GetInfo(const char *name, type_code *typeFound,
93 status_t AddSpecifier(const char *property, const char *name);
104 status_t AddRect(const char *name, BRect aRect);
105 status_t AddPoint(const char *name, BPoint aPoint);
106 status_t AddString(const char *name, const char *aString);
107 status_t AddString(const char *name, const BString &aString);
108 status_t AddInt8(const char *name, int8 value);
109 status_t AddUInt8(const char *name, uint8 value);
110 status_t AddInt16(const char *name, int1
[all...]
/haiku-fatelf/src/apps/icon-o-matic/document/
H A DIconObject.cpp18 IconObject::IconObject(const char* name) argument
23 fName(name)
71 const char* name; local
72 status_t ret = archive->FindString("name", &name);
75 fName = name;
87 return into->AddString("name", fName.String());
107 BString name; local
108 if (object->GetValue(PROPERTY_NAME, name))
109 SetName(name
116 SetName(const char* name) argument
[all...]
/haiku-fatelf/src/documentation/docbook-xsl/slides/browser/
H A DxbDOM.js80 function xbGetElementsByNameAndType(name, type, windowRef)
87 xbFindElementsByNameAndType(windowRef.document, name, type, elmlist);
92 function xbFindElementsByNameAndType(doc, name, type, elmlist)
99 if (doc[type][i].name && name == doc[type][i].name)
110 xbFindElementsByNameAndType(subdoc, name, type, elmlist);
138 function (doc, name, elmlist)
146 if (doc.images[i].name && name
[all...]
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dpfstream.cc34 ipfstream::ipfstream(const char *name, int mode, int prot) argument
39 for (p = name; *p == ' ' || *p == '\t'; p++) ;
55 char *command = new char[p-name+1];
57 char command[p-name+1];
59 memcpy(command, name, p-name);
60 command[p-name] = '\0';
72 if (!rdbuf()->open(name, mode, prot))
76 opfstream::opfstream(const char *name, int mode, int prot) argument
80 for (p = name; *
[all...]

Completed in 1484 milliseconds

1234567891011>>