Searched refs:superType (Results 1 - 19 of 19) sorted by last modified time

/haiku/src/apps/mediaplayer/
H A DInfoWin.cpp98 BMimeType superType; local
99 status = mimeType.GetSupertype(&superType);
101 status = superType.GetIcon(fIconBitmap, B_LARGE_ICON);
/haiku/src/kits/tracker/
H A DContainerWindow.cpp3550 BMimeType superType; local
3551 mimeType.GetSupertype(&superType);
3552 if (superType.InitCheck() == B_OK) {
3553 BMenu* superMenu = AddMimeMenu(superType, true, menu, start);
3566 BMimeType superType; local
3567 mimeType.GetSupertype(&superType);
3569 BMenu* superMenu = AddMimeMenu(superType, true, menu, start);
H A DFindPanel.cpp1877 const char* superType; local
1880 while (types.FindString("super_types", index++, &superType) == B_OK) {
1881 BMenu* superMenu = new BMenu(superType);
1884 message->AddString("mimetype", superType);
1887 superType));
H A DIconCache.cpp524 BMimeType superType; local
525 mime.GetSupertype(&superType);
526 const char* superTypeFileType = superType.Type();
/haiku/src/preferences/filetypes/
H A DIconView.cpp71 BMimeType superType; local
72 if (type.GetSupertype(&superType) == B_OK) {
73 if (superType.GetIcon(&data, &size) == B_OK)
78 if (superType.GetPreferredApp(preferred) == B_OK) {
81 if (preferredApp.GetIconForType(superType.Type(),
124 BMimeType superType; local
125 if (type.GetSupertype(&superType) == B_OK) {
126 if (superType.GetIcon(&bitmap, size) == B_OK)
131 if (superType.GetPreferredApp(preferred) == B_OK) {
134 if (preferredApp.GetIconForType(superType
[all...]
H A DMimeTypeListView.cpp413 BMimeType superType; local
415 if (mimeType.GetSupertype(&superType) == B_OK)
416 superItem = FindItem(superType.Type());
/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp228 BMimeType superType; local
229 if (type.GetSupertype(&superType) == B_OK
230 && superType == BMimeType("image")
/haiku/src/tests/kits/storage/
H A DMimeTypeTest.cpp2687 BMimeType superType; local
2688 if (mime.GetSupertype(&superType) == B_OK)
2689 appSetSuper = typeAppMap[superType.Type()]; // Copy the supertype
4853 +* status_t GetSupertype(BMimeType *superType) const;
/haiku/src/preferences/sounds/
H A DHWindow.cpp151 BMimeType superType; local
152 mtype.GetSupertype(&superType);
153 if (superType.Type() == NULL
154 || strcmp(superType.Type(), "audio") != 0) {
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylist.cpp662 BMimeType superType; local
665 if (fileType.GetSupertype(&superType) != B_OK)
668 if (superType == "image")
678 BMimeType superType; local
681 if (fileType.GetSupertype(&superType) != B_OK)
685 if (superType == "audio" || superType == "video")
/haiku/src/build/libbe/storage/
H A DMimeType.cpp194 \param superType A pointer to the BMimeType object that shall be
198 - \c B_BAD_VALUE: \c NULL \a superType, this object is not initialized,
202 BMimeType::GetSupertype(BMimeType *superType) const
204 if (!superType)
206 superType->Unset();
222 err = superType->SetTo(superMime);
/haiku/headers/build/os/storage/
H A DMimeType.h99 status_t GetSupertype(BMimeType *superType) const;
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaRoutingView.cpp1739 BMimeType superType; local
1747 else if (mimeType.GetSupertype(&superType) == B_OK)
1749 if (superType == "image")
1753 else if ((superType == "audio") || (superType == "video"))
/haiku/src/apps/text_search/
H A DFileIterator.cpp57 BMimeType superType; local
58 if (mimeType.GetSupertype(&superType) == B_OK) {
59 if (strcmp("text", superType.Type()) == 0
60 || strcmp("message", superType.Type()) == 0) {
/haiku/src/apps/softwareupdater/
H A DSoftwareUpdaterWindow.cpp858 BMimeType superType; local
859 if (nodeType.GetSupertype(&superType) == B_OK)
860 result = superType.GetIcon(packageIcon, icon_size(iconSize));
/haiku/src/kits/app/
H A DRoster.cpp2387 BMimeType superType; local
2388 if (type.GetSupertype(&superType) == B_OK)
2389 superType.GetPreferredApp(secondarySignature);
/haiku/src/kits/storage/
H A DNodeInfo.cpp545 BMimeType superType; local
546 if (!success && nodeType.GetSupertype(&superType) == B_OK) {
550 if (superType.GetPreferredApp(signature) == B_OK) {
552 success = type.GetIconForType(superType.Type(), icon,
557 success = superType.GetIcon(icon, which) == B_OK;
/haiku/headers/private/storage/mime/
H A DDatabaseDirectory.h29 const char* superType = NULL);
/haiku/src/kits/storage/mime/
H A DDatabaseDirectory.cpp39 const char* superType)
49 if (superType != NULL)
50 directory << '/' << superType; local
38 Init(DatabaseLocation* databaseLocation, const char* superType) argument

Completed in 136 milliseconds