OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:eventsendingcontroller
(Results
1 - 22
of
22
) sorted by null
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
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
...]
EventSendingController.h
36
class
EventSendingController
: public JSWrappable {
38
static PassRefPtr<
EventSendingController
> create();
39
virtual ~
EventSendingController
();
59
EventSendingController
();
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();
InjectedBundlePage.cpp
613
InjectedBundle::shared().
eventSendingController
()->makeWindowObject(context, window, &exception);
[
all
...]
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/qt/
InjectedBundle.pro
19
../
EventSendingController
.cpp \
20
../
EventSendingController
.h \
35
../
EventSendingController
.h \
/external/webkit/Tools/DumpRenderTree/
DumpRenderTreeFileDraggingSource.h
32
// Used by -[
EventSendingController
beginDragWithFiles:]
/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
...]
DumpRenderTreeDraggingInfo.mm
33
#import "
EventSendingController
.h"
UIDelegate.mm
34
#import "
EventSendingController
.h"
119
[
EventSendingController
replaySavedEvents];
FrameLoadDelegate.mm
35
#import "
EventSendingController
.h"
277
EventSendingController
*esc = [[
EventSendingController
alloc] init];
DumpRenderTree.mm
39
#import "
EventSendingController
.h"
[
all
...]
/external/webkit/Tools/WebKitTestRunner/
DerivedSources.make
29
EventSendingController
\
DerivedSources.pro
13
InjectedBundle/Bindings/
EventSendingController
.idl \
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
EventSendingController.idl
28
interface
EventSendingController
{
/external/webkit/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/
project.pbxproj
49
BC8FD8CA120E527F00F3E71A /*
EventSendingController
.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC8FD8C9120E527F00F3E71A /*
EventSendingController
.cpp */; };
117
BC8FD8C8120E527F00F3E71A /*
EventSendingController
.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path =
EventSendingController
.h; sourceTree = "<group>"; };
118
BC8FD8C9120E527F00F3E71A /*
EventSendingController
.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path =
EventSendingController
.cpp; sourceTree = "<group>"; };
119
BC8FD8CB120E52B000F3E71A /*
EventSendingController
.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path =
EventSendingController
.idl; sourceTree = "<group>"; };
229
BC8FD8C9120E527F00F3E71A /*
EventSendingController
.cpp */,
230
BC8FD8C8120E527F00F3E71A /*
EventSendingController
.h */
[
all
...]
/external/webkit/Tools/WebKitTestRunner/win/
InjectedBundle.vcproj
446
RelativePath="..\InjectedBundle\
EventSendingController
.cpp"
450
RelativePath="..\InjectedBundle\
EventSendingController
.h"
/external/webkit/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/
project.pbxproj
122
BCA18B6F0C9B08DB00114369 /*
EventSendingController
.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B6B0C9B08DB00114369 /*
EventSendingController
.h */; };
123
BCA18B700C9B08DB00114369 /*
EventSendingController
.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B6C0C9B08DB00114369 /*
EventSendingController
.mm */; };
[
all
...]
/external/webkit/Tools/
ChangeLog-2009-06-16
628
* DumpRenderTree/mac/
EventSendingController
.mm:
629
(+[
EventSendingController
isSelectorExcludedFromWebScript:]): Sorted selectors.
630
(+[
EventSendingController
webScriptNameForSelector:]): Sorted selectors.
631
(-[
EventSendingController
beginDragWithFiles:]):
632
(-[
EventSendingController
mouseMoveToX:Y:]):
633
(-[
EventSendingController
keyDown:withModifiers:]):
634
(-[
EventSendingController
fireKeyboardEventsToElement:]): removed spurious { }
[
all
...]
ChangeLog
[
all
...]
ChangeLog-2010-05-24
804
* DumpRenderTree/mac/
EventSendingController
.mm:
805
(-[
EventSendingController
contextClick:]):
[
all
...]
Completed in 270 milliseconds