OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MimeType
(Results
1 - 5
of
5
) sorted by null
/external/webkit/WebCore/plugins/
MimeType.h
34
class
MimeType
: public RefCounted<
MimeType
> {
36
static PassRefPtr<
MimeType
> create(PassRefPtr<PluginData> pluginData, unsigned index) { return adoptRef(new
MimeType
(pluginData, index)); }
37
~
MimeType
();
45
MimeType
(PassRefPtr<PluginData>, unsigned index);
MimeType.cpp
20
#include "
MimeType
.h"
30
MimeType
::
MimeType
(PassRefPtr<PluginData> pluginData, unsigned index)
36
MimeType
::~
MimeType
()
40
const String &
MimeType
::type() const
45
const String &
MimeType
::suffixes() const
50
const String &
MimeType
::description() const
55
PassRefPtr<Plugin>
MimeType
::enabledPlugin() const
/external/webkit/WebKit/qt/Api/
qwebplugindatabase_p.h
46
typedef QWebPluginFactory::
MimeType
MimeType
;
50
QList<
MimeType
> mimeTypes() const;
51
bool supportsMimeType(const QString&
mimeType
) const;
67
mutable QList<
MimeType
> m_mimeTypes;
88
QWebPluginInfo pluginForMimeType(const QString&
mimeType
);
89
void setPreferredPluginForMimeType(const QString&
mimeType
, const QWebPluginInfo& plugin);
qwebpluginfactory.h
37
struct QWEBKIT_EXPORT
MimeType
{
41
bool operator==(const
MimeType
& other) const;
42
inline bool operator!=(const
MimeType
& other) const { return !operator==(other); }
48
QList<
MimeType
> mimeTypes;
57
virtual QObject *create(const QString&
mimeType
,
/external/webkit/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp
47
typedef QWebPluginInfo::
MimeType
MimeType
;
74
QList<
MimeType
> mimeTypes;
80
MimeType
mimeType
;
81
mimeType
.name = jsMimeType["type"].toString();
82
mimeType
.description = jsMimeType["description"].toString();
83
mimeType
.fileExtensions = jsMimeType["suffixes"].toString().split(',', QString::SkipEmptyParts);
85
mimeTypes.append(
mimeType
);
86
QVERIFY(plugin.supportsMimeType(
mimeType
.name))
[
all
...]
Completed in 193 milliseconds