OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebKitPoint
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/page/
WebKitPoint.h
34
class
WebKitPoint
: public RefCounted<
WebKitPoint
> {
37
static PassRefPtr<
WebKitPoint
> create()
39
return adoptRef(new
WebKitPoint
());
41
static PassRefPtr<
WebKitPoint
> create(float x, float y)
43
return adoptRef(new
WebKitPoint
(x, y));
53
WebKitPoint
(float x=0, float y=0)
WebKitPoint.idl
33
]
WebKitPoint
{
DOMWindow.h
69
class
WebKitPoint
;
218
PassRefPtr<
WebKitPoint
> webkitConvertPointFromPageToNode(Node*, const
WebKitPoint
*) const;
219
PassRefPtr<
WebKitPoint
> webkitConvertPointFromNodeToPage(Node*, const
WebKitPoint
*) const;
DOMWindow.idl
161
WebKitPoint
webkitConvertPointFromPageToNode(in Node node, in
WebKitPoint
p);
162
WebKitPoint
webkitConvertPointFromNodeToPage(in Node node, in
WebKitPoint
p);
540
attribute [JSCCustomGetter] WebKitPointConstructor
WebKitPoint
; // Usable with new the operator
[
all
...]
DOMWindow.cpp
93
#include "
WebKitPoint
.h"
[
all
...]
/external/webkit/Source/WebCore/bindings/v8/custom/
V8WebKitPointConstructor.cpp
45
INC_STATS("DOM.
WebKitPoint
.Constructor");
64
PassRefPtr<
WebKitPoint
> point =
WebKitPoint
::create(x, y);
/external/webkit/Source/WebCore/bindings/js/
JSWebKitPointCustom.cpp
29
#include "
WebKitPoint
.h"
49
return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(),
WebKitPoint
::create(x, y))));
Completed in 3898 milliseconds