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

12

/haiku-fatelf/src/add-ons/translators/exr/openexr/ilmimf/
H A DImfAttribute.cpp105 Attribute::knownType (const char typeName[]) argument
110 return tMap.find (typeName) != tMap.end();
115 Attribute::registerAttributeType (const char typeName[], argument
121 if (tMap.find (typeName) != tMap.end())
123 "type \"" << typeName << "\". "
126 tMap.insert (TypeMap::value_type (typeName, newAttribute));
131 Attribute::unRegisterAttributeType (const char typeName[]) argument
136 tMap.erase (typeName);
141 Attribute::newAttribute (const char typeName[]) argument
146 TypeMap::const_iterator i = tMap.find (typeName);
[all...]
H A DImfOpaqueAttribute.cpp50 OpaqueAttribute::OpaqueAttribute (const char typeName[]): argument
51 _typeName (strlen (typeName) + 1),
54 strcpy (_typeName, typeName);
76 OpaqueAttribute::typeName () const function in class:Imf::OpaqueAttribute
114 "\"" << other.typeName() << "\" "
H A DImfOpaqueAttribute.h66 OpaqueAttribute (const char typeName[]);
75 virtual const char * typeName () const;
H A DImfAttribute.h70 virtual const char * typeName () const = 0;
98 static Attribute * newAttribute (const char typeName[]);
105 static bool knownType (const char typeName[]);
115 static void registerAttributeType (const char typeName[],
124 static void unRegisterAttributeType (const char typeName[]);
159 virtual const char * typeName () const;
163 // Static version of typeName()
288 TypedAttribute<T>::typeName () const function in class:Imf::TypedAttribute
H A DImfHeader.cpp259 if (strcmp (i->second->typeName(), attribute.typeName()))
261 "type \"" << attribute.typeName() << "\" "
263 "type \"" << i->second->typeName() << "\".");
824 Xdr::write <StreamIO> (os, i.attribute().typeName());
906 char typeName[100]; local
909 Xdr::read <StreamIO> (is, sizeof (typeName), typeName);
922 if (strncmp (i->second->typeName(), typeName, sizeo
[all...]
/haiku-fatelf/src/bin/debug/strace/
H A DSyscall.h21 Type(string typeName, TypeHandler *handler) argument
22 : fTypeName(typeName), fHandler(handler) {}
42 Parameter(string name, int32 offset, string typeName, TypeHandler *handler) argument
43 : Type(typeName, handler),
81 void AddParameter(string name, int32 offset, string typeName, argument
84 AddParameter(new Parameter(name, offset, typeName, handler));
/haiku-fatelf/src/tools/gensyscalls/
H A Dgensyscalls.h39 Parameter(const char* typeName,
72 void AddParameter(int size, const char* typeName,
74 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
175 AddParameter(typeName, parameterName, size, usedSize, offset,
574 const char* typeName = type->TypeName(); local
575 if (strchr(typeName, '*')) {
579 if ((_GetTypeCodeTokenize(typeName) == "const"
580 && _GetTypeCodeTokenize(typeName)
[all...]
H A Dgensyscallinfos.cpp513 string typeName = type.back(); local
521 syscall.AddParameter(NamedType(typeString, typeName));
538 string typeName; local
540 typeName = tokenizer.GetNextToken();
559 syscall.AddParameter(NamedType(typeString, typeName));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/FileSharing-Windows/
H A DSecurity.cpp81 CString typeName; local
84 m_type.GetLBText(nType, typeName);
85 if (typeName.CompareNoCase("No Authentication Required") == 0)
/haiku-fatelf/src/add-ons/kernel/drivers/input/usb_hid/
H A DHIDCollection.cpp190 const char *typeName = "unknown"; local
193 typeName = "physical";
196 typeName = "application";
199 typeName = "logical";
202 typeName = "report";
205 typeName = "named array";
208 typeName = "usage switch";
211 typeName = "usage modifier";
216 TRACE_ALWAYS("%s\ttype: %u %s\n", indent, fType, typeName);
H A DHIDReport.cpp264 const char *typeName = "unknown"; local
267 typeName = "input";
270 typeName = "output";
273 typeName = "feature";
277 TRACE_ALWAYS("\ttype: %u %s\n", fType, typeName);
/haiku-fatelf/src/apps/debugger/value/value_nodes/
H A DBMessageValueNode.cpp400 BString typeName; local
405 typeName = "bool";
410 typeName = "int8";
415 typeName = "uint8";
420 typeName = "int16";
425 typeName = "uint16";
430 typeName = "int32";
435 typeName = "uint32";
440 typeName = "int64";
445 typeName
[all...]
H A DBListValueNode.cpp337 BString typeName; local
341 status_t result = fLoader->LookupTypeByName(typeName, constraints, type);
/haiku-fatelf/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-fatelf/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-fatelf/headers/os/translation/
H A DTranslationUtils.h76 const char* typeName = NULL,
/haiku-fatelf/src/kits/app/
H A DMessage.cpp2408 #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, initializ
[all...]
/haiku-fatelf/src/build/libbe/app/
H A DMessage.cpp1625 #define DEFINE_FUNCTIONS(type, typeName, typeCode) \
1627 BMessage::Add##typeName(const char *name, type val) \
1633 BMessage::Find##typeName(const char *name, type *p) const \
1649 BMessage::Find##typeName(const char *name, int32 index, type *p) const \
1665 BMessage::Replace##typeName(const char *name, type val) \
1671 BMessage::Replace##typeName(const char *name, int32 index, type val) \
1677 BMessage::Has##typeName(const char *name, int32 index) const \
1698 #define DEFINE_HAS_FUNCTION(typeName, typeCode) \
1700 BMessage::Has##typeName(const char *name, int32 index) const \
1713 #define DEFINE_LAZY_FIND_FUNCTION(type, typeName, initializ
[all...]
/haiku-fatelf/src/add-ons/kernel/partitioning_systems/intel/
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.h116 bool SetType(const char* typeName);
/haiku-fatelf/src/add-ons/translators/exr/openexr/
H A Dexrheader.cpp293 cout << i.name() << " (type " << a->typeName() << ")";
/haiku-fatelf/src/tools/docbook/libxml2/include/libxml/
H A DschemasInternals.h255 const xmlChar *typeName; /* the local name of the type definition */ member in struct:_xmlSchemaAttribute
/haiku-fatelf/src/kits/tracker/
H A DFindPanel.cpp2844 const char* typeName; local
2845 if (mainView->CurrentMimeType(&typeName) == NULL)
2848 BMimeType mimeType(typeName);

Completed in 229 milliseconds

12