Searched refs:typeName (Results 1 - 20 of 20) sorted by relevance

/haiku/src/bin/debug/strace/
H A DSyscall.h21 Type(string typeName, TypeHandler *handler) argument
22 : fTypeName(typeName), fHandler(handler), fCount(1) {}
46 Parameter(string name, int32 offset, string typeName, TypeHandler *handler) argument
47 : Type(typeName, handler),
94 void AddParameter(string name, int32 offset, string typeName, argument
97 AddParameter(new Parameter(name, offset, typeName, handler));
/haiku/src/tools/gensyscalls/
H A Dgensyscalls.h41 Parameter(const char* typeName,
74 void AddParameter(int size, const char* typeName,
76 Parameter* AddParameter(const char* typeName,
H A Dgensyscalls.cpp67 Parameter::Parameter(const char* typeName, const char* parameterName, argument
70 Type(typeName, size, usedSize, alignmentTypeName),
152 Syscall::AddParameter(const char* typeName, const char* parameterName,
155 Parameter* parameter = new Parameter(typeName, parameterName, size,
162 Syscall::AddParameter(int size, const char* typeName, const char* parameterName) argument
184 AddParameter(typeName, parameterName, size, usedSize, offset,
583 const char* typeName = type->TypeName(); local
584 if (strchr(typeName, '*')) {
588 if ((_GetTypeCodeTokenize(typeName) == "const"
589 && _GetTypeCodeTokenize(typeName)
[all...]
H A Dgensyscallinfos.cpp528 string typeName = type.back(); local
536 syscall.AddParameter(NamedType(typeString, typeName));
553 string typeName; local
555 typeName = tokenizer.GetNextToken();
574 syscall.AddParameter(NamedType(typeString, typeName));
/haiku/src/add-ons/kernel/drivers/input/hid_shared/
H A DHIDCollection.cpp170 const char *typeName = "unknown"; local
173 typeName = "physical";
176 typeName = "application";
179 typeName = "logical";
182 typeName = "report";
185 typeName = "named array";
188 typeName = "usage switch";
191 typeName = "usage modifier";
196 TRACE_ALWAYS("%s\ttype: %u %s\n", indent, fType, typeName);
H A DHIDReport.cpp268 const char *typeName = "unknown"; local
271 typeName = "input";
274 typeName = "output";
277 typeName = "feature";
281 TRACE_ALWAYS("\ttype: %u %s\n", fType, typeName);
/haiku/src/kits/debugger/value/value_nodes/
H A DBMessageValueNode.cpp397 BString typeName; local
402 typeName = "bool";
407 typeName = "int8";
412 typeName = "uint8";
417 typeName = "int16";
422 typeName = "uint16";
427 typeName = "int32";
432 typeName = "uint32";
437 typeName = "int64";
442 typeName
[all...]
H A DBListValueNode.cpp381 BString typeName; local
385 status_t result = info->LookupTypeByName(typeName, constraints,
/haiku/src/tests/kits/app/bmessage/
H A DMessageSpeedTest.cpp39 #define MESSAGE_SPEED_TEST_CREATE(count, type, typeName, createValue) \
53 cout << "Time to add " << count << " " << typeName \
105 #define MESSAGE_SPEED_TEST_READ(count, type, typeName, createValue, declareValue) \
125 cout << "Time to retrieve " << count << " " << typeName \
144 #define MESSAGE_SPEED_TEST_FLATTEN(count, type, typeName, createValue) \
161 name << count << typeName; \
167 << typeName << " = " << length << "usec. Giving " << length / count \
185 #define MESSAGE_SPEED_TEST_FLATTEN_INDIVIDUAL(count, type, typeName, createValue) \
204 name << count << typeName; \
210 << " individual " << typeName << " field
[all...]
/haiku/src/kits/debugger/dwarf/
H A DDwarfUtils.cpp52 BString typeName; local
81 typeName = "void";
83 GetFullyQualifiedDIEName(type, typeName, requestingEntry);
94 typeName.Prepend("const ");
97 typeName += modifier;
100 _name = typeName;
/haiku/src/tools/restest/
H A DResourceItem.cpp197 char typeName[4] = { fType >> 24, (fType >> 16) & 0xff, local
201 printf(" type : '%.4s' (0x%8lx)\n", typeName, fType);
H A DResourceFile.cpp556 char typeName[4] = { type >> 24, (type >> 16) & 0xff, local
558 printf(" '%.4s' %5ld %8lu %s\n", typeName, item->GetID(),
/haiku/headers/os/translation/
H A DTranslationUtils.h76 const char* typeName = NULL,
/haiku/src/build/libbe/app/
H A DMessage.cpp1626 #define DEFINE_FUNCTIONS(type, typeName, typeCode) \
1628 BMessage::Add##typeName(const char *name, type val) \
1634 BMessage::Find##typeName(const char *name, type *p) const \
1650 BMessage::Find##typeName(const char *name, int32 index, type *p) const \
1666 BMessage::Replace##typeName(const char *name, type val) \
1672 BMessage::Replace##typeName(const char *name, int32 index, type val) \
1678 BMessage::Has##typeName(const char *name, int32 index) const \
1699 #define DEFINE_HAS_FUNCTION(typeName, typeCode) \
1701 BMessage::Has##typeName(const char *name, int32 index) const \
1714 #define DEFINE_LAZY_FIND_FUNCTION(type, typeName, initializ
[all...]
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.cpp268 \param typeName Name of the partition type.
271 PartitionType::SetType(const char* typeName) argument
274 if (!strcmp(typeName, kPartitionTypes[i].name)) {
282 if (strncmp(typeName, kUnrecognizedTypeString,
284 long type = strtol(typeName + kUnrecognizedTypeStringLength, NULL, 0);
H A DPartitionMap.h120 bool SetType(const char* typeName);
/haiku/src/kits/app/
H A DMessage.cpp2439 #define DEFINE_FUNCTIONS(type, typeName, typeCode) \
2441 BMessage::Add##typeName(const char* name, type val) \
2448 BMessage::Find##typeName(const char* name, type* p) const \
2450 return Find##typeName(name, 0, p); \
2455 BMessage::Find##typeName(const char* name, int32 index, type* p) const \
2472 BMessage::Replace##typeName(const char* name, type value) \
2479 BMessage::Replace##typeName(const char* name, int32 index, type value) \
2486 BMessage::Has##typeName(const char* name, int32 index) const \
2509 #define DEFINE_HAS_FUNCTION(typeName, typeCode) \
2511 BMessage::Has##typeName(cons
[all...]
/haiku/src/kits/debugger/debug_info/
H A DDwarfImageDebugInfo.cpp240 BString typeName; member in struct:DwarfImageDebugInfo::TypeNameKey
242 TypeNameKey(const BString& typeName) argument
244 typeName(typeName)
250 return StringUtils::HashValue(typeName);
255 return typeName == other.typeName;
/haiku/src/kits/tracker/
H A DFindPanel.cpp2959 const char* typeName; local
2960 if (CurrentMimeType(&typeName) == NULL)
2963 BMimeType mimeType(typeName);
H A DPoseView.cpp4568 const char* typeName = ""; local
4570 &typeName);
4571 typeNames.AddItem(new BString(typeName));

Completed in 499 milliseconds