OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QDRTNode
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h
59
class QWEBKIT_EXPORT
QDRTNode
{
61
QDRTNode
();
62
QDRTNode
(const
QDRTNode
&);
63
QDRTNode
&operator=(const
QDRTNode
&);
64
~
QDRTNode
();
67
explicit
QDRTNode
(WebCore::Node*);
80
Q_DECLARE_METATYPE(
QDRTNode
)
DumpRenderTreeSupportQt.cpp
103
QDRTNode
::
QDRTNode
()
108
QDRTNode
::
QDRTNode
(WebCore::Node* node)
117
QDRTNode
::~
QDRTNode
()
123
QDRTNode
::
QDRTNode
(const
QDRTNode
& other)
130
QDRTNode
& QDRTNode::operator=(const QDRTNode& other
[
all
...]
/external/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp
137
// 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()));
[
all
...]
Completed in 40 milliseconds