/external/webkit/Source/WebCore/platform/mock/ |
DeviceOrientationClientMock.cpp | 34 : m_controller(0) 42 ASSERT(!m_controller); 43 m_controller = controller; 44 ASSERT(m_controller); 69 m_controller->didChangeDeviceOrientation(m_orientation.get());
|
GeolocationClientMock.cpp | 43 : m_controller(0) 58 ASSERT(controller && !m_controller); 59 m_controller = controller; 164 ASSERT(m_controller); 172 ASSERT(m_controller); 175 m_controller->positionChanged(m_lastPosition.get()); 177 m_controller->errorOccurred(m_lastError.get());
|
DeviceOrientationClientMock.h | 60 DeviceOrientationController* m_controller; member in class:WebCore::DeviceOrientationClientMock
|
GeolocationClientMock.h | 80 GeolocationController* m_controller; member in class:WebCore::GeolocationClientMock
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
DeviceMotionClientQt.cpp | 32 , m_controller(0) 47 m_controller = controller; 72 if (!m_controller) 75 m_controller->didChangeDeviceMotion(currentDeviceMotion());
|
DeviceOrientationClientQt.cpp | 32 , m_controller(0) 46 m_controller = controller; 71 if (!m_controller) 74 m_controller->didChangeDeviceOrientation(orientation);
|
DeviceMotionClientQt.h | 51 DeviceMotionController* m_controller; member in class:WebCore::DeviceMotionClientQt
|
DeviceOrientationClientQt.h | 51 DeviceOrientationController* m_controller; member in class:WebCore::DeviceOrientationClientQt
|
DeviceOrientationClientMockQt.h | 55 DeviceOrientationController* m_controller; member in class:WebCore::DeviceOrientationClientMockQt
|
DeviceOrientationClientMockQt.cpp | 53 m_clientMock->setController(m_controller);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebDeviceOrientationController.h | 40 : m_controller(c) 51 WebCore::DeviceOrientationController* m_controller; member in class:WebKit::WebDeviceOrientationController
|
/external/webkit/Source/WebKit/chromium/src/ |
WebDeviceOrientationController.cpp | 39 m_controller->didChangeDeviceOrientation(deviceOrientation.get()); 44 return m_controller;
|
SpeechInputClientImpl.cpp | 53 : m_controller(web_view_client ? web_view_client->speechInputController(this) : 0) 70 return m_controller->startRecognition(requestId, elementRect, language, grammar, WebSecurityOrigin(origin)); 76 m_controller->stopRecording(requestId); 82 m_controller->cancelRecognition(requestId);
|
SpeechInputClientImpl.h | 73 WebSpeechInputController* m_controller; // To call into the embedder. member in class:WebKit::SpeechInputClientImpl
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
DeviceMotionClientAndroid.cpp | 51 m_controller = controller; 52 ASSERT(m_controller); 79 m_client->setController(m_controller);
|
DeviceOrientationClientAndroid.cpp | 51 m_controller = controller; 52 ASSERT(m_controller); 79 m_client->setController(m_controller);
|
DeviceMotionClientAndroid.h | 58 WebCore::DeviceMotionController* m_controller; member in class:android::DeviceMotionClientAndroid
|
DeviceOrientationClientAndroid.h | 58 WebCore::DeviceOrientationController* m_controller; member in class:android::DeviceOrientationClientAndroid
|
/external/webkit/Tools/WebKitTestRunner/qt/ |
main.cpp | 47 delete m_controller; 53 m_controller = new WTR::TestController(m_argc, const_cast<const char**>(m_argv)); 58 WTR::TestController* m_controller; member in class:Launcher
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebDeviceOrientationClient.mm | 37 , m_controller(0) 45 m_controller = controller; 73 objc_msgSend(m_provider, @selector(setController:), m_controller);
|
WebDeviceOrientationClient.h | 56 WebCore::DeviceOrientationController* m_controller; member in class:WebDeviceOrientationClient
|
/external/webkit/Source/WebKit/android/jni/ |
DeviceMotionClientImpl.h | 55 virtual void setController(DeviceMotionController* controller) { m_controller = controller; } 64 DeviceMotionController* m_controller; member in class:android::DeviceMotionClientImpl
|
DeviceOrientationClientImpl.h | 55 virtual void setController(DeviceOrientationController* controller) { m_controller = controller; } 64 DeviceOrientationController* m_controller; member in class:android::DeviceOrientationClientImpl
|
/external/webkit/Tools/DumpRenderTree/qt/ |
DumpRenderTreeQt.cpp | 458 m_controller = new LayoutTestController(this); 459 connect(m_controller, SIGNAL(showPage()), this, SLOT(showPage())); 460 connect(m_controller, SIGNAL(hidePage()), this, SLOT(hidePage())); 463 connect(m_controller, SIGNAL(geolocationPermissionSet()), this, SLOT(geolocationPermissionSet())); 465 connect(m_controller, SIGNAL(done()), this, SLOT(dump())); 477 m_controller, SLOT(maybeDump(bool))); 481 m_controller, SLOT(resetLoadFinished())); 549 m_controller->reset(); 772 frame->addToJavaScriptWindowObject(QLatin1String("layoutTestController"), m_controller); 806 if (m_controller->shouldDumpChildFrameScrollPositions()) [all...] |
DumpRenderTreeQt.h | 91 LayoutTestController *layoutTestController() const { return m_controller; } 144 LayoutTestController *m_controller; member in class:WebCore::DumpRenderTree
|