OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:initDeviceMotionEvent
(Results
1 - 6
of
6
) sorted by null
/external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
optional-event-properties.js
22
evalAndLog("event.
initDeviceMotionEvent
('', false, false, {x: 0, y: 1, z: 2}, {x: 3, y: 4, z: 5}, {alpha: 6, beta: 7, gamma: 8}, 9)");
34
testException("event.
initDeviceMotionEvent
('', false, false, objectThrowingException, {x: 3, z: 5}, {gamma: 8, beta: 7}, 9)", "Error: x getter exception");
35
testException("event.
initDeviceMotionEvent
('', false, false, {x: 0, y: 1, z: 2}, objectThrowingException, {gamma: 8, beta: 7}, 9)", "Error: x getter exception");
36
testException("event.
initDeviceMotionEvent
('', false, false, {x: 0, y: 1, z: 2}, {x: 3, z: 5}, objectThrowingException, 9)", "Error: alpha getter exception");
38
testException("event.
initDeviceMotionEvent
('', false, false, {x: objectThrowingException, y: 1, z: 2}, {x: 3, y: 4, z: 5}, {alpha: 6, beta: 7, gamma: 8}, 9)", "Error: valueOf threw exception");
39
testException("event.
initDeviceMotionEvent
('', false, false, {x: 0, y: 1, z: 2}, {x: 3, y: objectThrowingException, z: 5}, {alpha: 6, beta: 7, gamma: 8}, 9)", "Error: valueOf threw exception");
40
testException("event.
initDeviceMotionEvent
('', false, false, {x: 0, y: 1, z: 2}, {x: 3, y: 4, z: 5}, {alpha: 6, beta: 7, gamma: objectThrowingException}, 9)", "Error: valueOf threw exception");
42
evalAndLog("event.
initDeviceMotionEvent
('', false, false, {y: 1, x: 0}, {x: 3, z: 5}, {gamma: 8, beta: 7}, 9)");
54
evalAndLog("event.
initDeviceMotionEvent
()");
60
evalAndLog("event.
initDeviceMotionEvent
('', false, false, [], [], [], [])")
[
all
...]
/external/webkit/Source/WebCore/dom/
DeviceMotionEvent.cpp
48
void DeviceMotionEvent::
initDeviceMotionEvent
(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData)
DeviceMotionEvent.h
47
void
initDeviceMotionEvent
(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData*);
DeviceMotionEvent.idl
35
[Custom] void
initDeviceMotionEvent
(in DOMString type, in boolean bubbles, in boolean cancelable, in Acceleration acceleration, in Acceleration accelerationIncludingGravity, in RotationRate rotationRate, in double interval);
/external/webkit/Source/WebCore/bindings/js/
JSDeviceMotionEventCustom.cpp
164
JSValue JSDeviceMotionEvent::
initDeviceMotionEvent
(ExecState* exec)
188
imp->
initDeviceMotionEvent
(type, bubbles, cancelable, deviceMotionData.get());
/external/webkit/Source/WebCore/bindings/v8/custom/
V8DeviceMotionEventCustom.cpp
178
imp->
initDeviceMotionEvent
(type, bubbles, cancelable, deviceMotionData.get());
Completed in 3260 milliseconds