Searched refs:QDRTNode (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.h59 class QWEBKIT_EXPORT QDRTNode { class
61 QDRTNode();
62 QDRTNode(const QDRTNode&);
63 QDRTNode &operator=(const QDRTNode&);
64 ~QDRTNode();
67 explicit QDRTNode(WebCore::Node*);
80 Q_DECLARE_METATYPE(QDRTNode)
H A DDumpRenderTreeSupportQt.cpp103 QDRTNode::QDRTNode() function in class:QDRTNode
108 QDRTNode::QDRTNode(WebCore::Node* node) function in class:QDRTNode
117 QDRTNode::~QDRTNode()
123 QDRTNode::QDRTNode(const QDRTNode& other) function in class:QDRTNode
130 QDRTNode
[all...]
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp137 // this is here as a proxy, so we'd have a class to friend in QDRTNode,
138 // as getting/setting a WebCore in QDRTNode is private.
142 static QDRTNode create(Node* node)
144 return QDRTNode(node);
147 static Node* get(const QDRTNode& node)
772 } else if (hint == (QMetaType::Type) qMetaTypeId<QDRTNode>()) {
774 ret = QVariant::fromValue<QDRTNode>(QtDRTNodeRuntime::create((static_cast<JSNode*>(object))->impl()));
917 if (type == qMetaTypeId<QDRTNode>()) {
925 return toJS(exec, toJSDOMGlobalObject(document, exec), QtDRTNodeRuntime::get(variant.value<QDRTNode>()));

Completed in 1675 milliseconds