HomeSort by relevance Sort by last modified time
    Searched refs:QList (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/qemu/
qlist.h 2 * QList Module
25 typedef struct QList {
28 } QList;
30 #define qlist_append(qlist, obj) \
31 qlist_append_obj(qlist, QOBJECT(obj))
33 #define QLIST_FOREACH_ENTRY(qlist, var) \
34 for ((var) = ((qlist)->head.tqh_first); \
43 QList *qlist_new(void);
44 QList *qlist_copy(QList *src)
    [all...]
json-parser.h 18 #include "qlist.h"
20 QObject *json_parser_parse(QList *tokens, va_list *ap);
json-streamer.h 17 #include "qlist.h"
22 void (*emit)(struct JSONMessageParser *parser, QList *tokens);
26 QList *tokens;
30 void (*func)(JSONMessageParser *, QList *));
qlist.c 2 * QList Module
13 #include "qlist.h"
26 * qlist_new(): Create a new QList
30 QList *qlist_new(void)
32 QList *qlist; local
34 qlist = qemu_malloc(sizeof(*qlist));
35 QTAILQ_INIT(&qlist->head);
36 QOBJECT_INIT(qlist, &qlist_type)
144 QList *qlist; local
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
PlainTextControllerQt.h 31 #include <QList>
TextInputControllerQt.h 32 #include <QList>
48 // QList<int> markedRange();
testplugin.h 37 virtual QList<Plugin> plugins() const;
testplugin.cpp 39 QList<QWebPluginFactory::Plugin> TestPlugin::plugins() const
57 return QList<QWebPluginFactory::Plugin>() << plugin;
DumpRenderTreeQt.h 33 #include <QList>
103 QList<WebPage*> getAllPages() const;
161 QList<QObject*> windows;
177 void sslErrorsEncountered(QNetworkReply*, const QList<QSslError>&);
219 QList<QWebFrame*> m_pendingGeolocationRequests;
  /external/webkit/Tools/MiniBrowser/qt/
utils.h 46 QString formatKeys(QList<QString> keys);
47 QList<QString> enumToKeys(const QMetaObject, const QString&, const QString&);
utils.cpp 41 QString formatKeys(QList<QString> keys)
50 QList<QString> enumToKeys(const QMetaObject o, const QString& name, const QString& strip)
52 QList<QString> list;
  /external/webkit/Tools/QtTestBrowser/
utils.h 45 QString formatKeys(QList<QString> keys);
46 QList<QString> enumToKeys(const QMetaObject o, const QString& name, const QString& strip);
fpstimer.h 51 QList<QTime> m_frames;
utils.cpp 41 QString formatKeys(QList<QString> keys)
50 QList<QString> enumToKeys(const QMetaObject o, const QString& name, const QString& strip)
52 QList<QString> list;
  /external/webkit/Source/WebKit2/WebProcess/qt/
WebProcessMainQt.cpp 34 #include <QList>
74 QList<QNetworkProxy> queryProxy(const QNetworkProxyQuery& query = QNetworkProxyQuery());
77 QList<QNetworkProxy> m_httpProxy;
78 QList<QNetworkProxy> m_httpsProxy;
104 QList<QNetworkProxy> EnvHttpProxyFactory::queryProxy(const QNetworkProxyQuery& query)
112 QList<QNetworkProxy> proxies;
119 QList<QNetworkProxy> proxylist = QNetworkProxyFactory::systemProxyForQuery();
  /external/webkit/Source/WebKit/qt/Api/
qwebpluginfactory.h 48 QList<MimeType> mimeTypes;
54 virtual QList<Plugin> plugins() const = 0;
qwebsecurityorigin.h 39 static QList<QWebSecurityOrigin> allOrigins();
56 QList<QWebDatabase> databases() const;
qwebhistory.h 76 QList<QWebHistoryItem> items() const;
77 QList<QWebHistoryItem> backItems(int maxItems) const;
78 QList<QWebHistoryItem> forwardItems(int maxItems) const;
qwebplugindatabase_p.h 50 QList<MimeType> mimeTypes() const;
67 mutable QList<MimeType> m_mimeTypes;
79 QList<QWebPluginInfo> plugins() const;
qwebsecurityorigin.cpp 180 QList<QWebSecurityOrigin> QWebSecurityOrigin::allOrigins()
182 QList<QWebSecurityOrigin> webOrigins;
200 QList<QWebDatabase> QWebSecurityOrigin::databases() const
202 QList<QWebDatabase> databases;
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.h 70 QList<QWKHistoryItem> backItems(int maxItems) const;
71 QList<QWKHistoryItem> forwardItems(int maxItems) const;
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandlePrivate.h 63 void socketSslErrors(const QList<QSslError>&);
  /external/webkit/Source/WebCore/platform/qt/
DragDataQt.cpp 35 #include <QList>
57 QList<QUrl> urls = m_platformDragData->urls();
69 QList<QUrl> urls = m_platformDragData->urls();
123 QList<QUrl> urls = m_platformDragData->urls();
CookieJarQt.cpp 68 QList<QNetworkCookie> cookies = QNetworkCookie::parseCookies(QString(value).toAscii());
69 QList<QNetworkCookie>::Iterator it = cookies.begin();
86 QList<QNetworkCookie> cookies = jar->cookiesForUrl(u);
107 QList<QNetworkCookie> cookies = jar->cookiesForUrl(u);
  /external/webkit/Source/WebCore/platform/
PlatformMenuDescription.h 36 #include <qlist.h>
52 typedef const QList<ContextMenuItem>* PlatformMenuDescription;

Completed in 269 milliseconds

1 2 3 4