OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:setMockOrientation
(Results
1 - 5
of
5
) sorted by null
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
null-values.js
4
function
setMockOrientation
(alpha, beta, gamma) {
27
setMockOrientation
(1.1, null, null);
35
setMockOrientation
(null, 2.2, null);
43
setMockOrientation
(null, null, 3.3);
52
setMockOrientation
(null, null, null);
updates.js
4
function
setMockOrientation
(alpha, beta, gamma) {
24
setMockOrientation
(11.1, 22.2, 33.3);
33
setMockOrientation
(1.1, 2.2, 3.3);
/frameworks/base/core/java/android/webkit/
DeviceMotionAndOrientationManager.java
46
public void
setMockOrientation
(boolean canProvideAlpha, double alpha, boolean canProvideBeta,
WebViewCore.java
[
all
...]
/external/webkit/Source/WebKit/android/jni/
DeviceMotionAndOrientationManager.cpp
65
void DeviceMotionAndOrientationManager::
setMockOrientation
(PassRefPtr<DeviceOrientation> orientation)
141
static void
setMockOrientation
(JNIEnv* env, jobject, jobject webViewCoreObject, bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma)
144
getWebViewCore(env, webViewCoreObject)->deviceMotionAndOrientationManager()->
setMockOrientation
(orientation.release());
156
{ "nativeSetMockOrientation", "(Landroid/webkit/WebViewCore;ZDZDZD)V", (void*)
setMockOrientation
},
Completed in 551 milliseconds