OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EventSendingController
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
EventSendingController.h
36
class
EventSendingController
: public JSWrappable {
38
static PassRefPtr<
EventSendingController
> create();
39
virtual ~
EventSendingController
();
59
EventSendingController
();
EventSendingController.cpp
27
#include "
EventSendingController
.h"
89
PassRefPtr<
EventSendingController
>
EventSendingController
::create()
91
return adoptRef(new
EventSendingController
);
94
EventSendingController
::
EventSendingController
()
104
EventSendingController
::~
EventSendingController
()
108
JSClassRef
EventSendingController
::wrapperClass()
113
void
EventSendingController
::mouseDown(int button, JSValueRef modifierArray
[
all
...]
InjectedBundle.h
29
#include "
EventSendingController
.h"
56
EventSendingController
*
eventSendingController
() { return m_eventSendingController.get(); }
100
RefPtr<
EventSendingController
> m_eventSendingController;
InjectedBundle.cpp
166
m_eventSendingController =
EventSendingController
::create();
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
EventSendingController.idl
28
interface
EventSendingController
{
/external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.h
32
@interface
EventSendingController
: NSObject <DOMEventListener>
EventSendingController.mm
33
#import "
EventSendingController
.h"
67
@implementation
EventSendingController
204
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[
EventSendingController
instanceMethodSignatureForSelector:@selector(leapForward:)]];
209
[
EventSendingController
saveEvent:invocation];
375
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[
EventSendingController
instanceMethodSignatureForSelector:@selector(mouseUp:withModifiers:)]];
381
[
EventSendingController
saveEvent:invocation];
382
[
EventSendingController
replaySavedEvents];
435
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[
EventSendingController
instanceMethodSignatureForSelector:@selector(mouseMoveToX:Y:)]];
441
[
EventSendingController
saveEvent:invocation];
[
all
...]
FrameLoadDelegate.mm
35
#import "
EventSendingController
.h"
277
EventSendingController
*esc = [[
EventSendingController
alloc] init];
UIDelegate.mm
34
#import "
EventSendingController
.h"
119
[
EventSendingController
replaySavedEvents];
DumpRenderTree.mm
39
#import "
EventSendingController
.h"
[
all
...]
Completed in 215 milliseconds