Searched defs:eventInit (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestEventConstructor.cpp101 TestEventConstructorInit eventInit; local
104 if (!fillTestEventConstructorInit(eventInit, options))
108 RefPtr<TestEventConstructor> event = TestEventConstructor::create(type, eventInit);
122 bool fillTestEventConstructorInit(TestEventConstructorInit& eventInit, const Dictionary& options) argument
124 options.get("attr2", eventInit.attr2);
H A DV8TestExtendedEvent.cpp106 EventInit eventInit; local
109 if (!fillEventInit(eventInit, options))
113 RefPtr<Event> event = Event::create(type, eventInit);
127 bool fillEventInit(EventInit& eventInit, const Dictionary& options) argument
129 if (!fillTestEventInit(eventInit, options))
132 options.get("location", eventInit.location);
133 if (options.get("keyLocation", eventInit.location))

Completed in 157 milliseconds