HomeSort by relevance Sort by last modified time
    Searched refs:Event (Results 126 - 150 of 639) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/storage/
IDBTransaction.h 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
33 #include "Event.h"
79 virtual bool dispatchEvent(PassRefPtr<Event>);
80 bool dispatchEvent(PassRefPtr<Event> event, ExceptionCode& ec) { return EventTarget::dispatchEvent(event, ec); }
93 void enqueueEvent(PassRefPtr<Event>);
  /external/webkit/Source/WebCore/loader/
FormSubmission.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
40 class Event;
88 static PassRefPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtr<Event> event, bool lockHistory, FormSubmissionTrigger);
103 Event* event() const { return m_event.get(); } function in class:WebCore::FormSubmission
111 FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
122 RefPtr<Event> m_event;
  /external/valgrind/tsan/
ts_events.h 17 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 // Each event contains tid (the id of the current thread).
51 THR_CREATE_BEFORE, // Parent thread's event. {tid, pc, 0, 0}
52 THR_CREATE_AFTER, // Parent thread's event. {tid, 0, 0, child_tid}
53 THR_START, // Child thread's event {tid, CallStack, 0, parent_tid}
101 class Event {
103 Event(EventType type, int32_t tid, uintptr_t pc, uintptr_t a, uintptr_t info)
110 Event() {} // Not initialized.
  /external/webkit/Source/WebKit/chromium/public/
WebDOMEvent.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
38 namespace WebCore { class Event; }
97 WebDOMEvent(const WTF::PassRefPtr<WebCore::Event>&);
115 typedef WebCore::Event WebDOMEventPrivate;
  /packages/apps/Contacts/src/com/android/contacts/model/
GoogleAccountType.java 26 import android.provider.ContactsContract.CommonDataKinds.Event;
146 DataKind kind = addKind(new DataKind(Event.CONTENT_ITEM_TYPE,
149 kind.actionBody = new SimpleInflater(Event.START_DATE);
151 kind.typeColumn = Event.TYPE;
155 kind.typeList.add(buildEventType(Event.TYPE_BIRTHDAY, true).setSpecificMax(1));
156 kind.typeList.add(buildEventType(Event.TYPE_ANNIVERSARY, false));
157 kind.typeList.add(buildEventType(Event.TYPE_OTHER, false));
158 kind.typeList.add(buildEventType(Event.TYPE_CUSTOM, false).setSecondary(true)
159 .setCustomColumn(Event.LABEL));
162 kind.defaultValues.put(Event.TYPE, Event.TYPE_BIRTHDAY)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PointTestCases.java 21 import org.eclipse.swt.widgets.Event;
36 Event event = new Event(); local
37 event.x = x;
38 event.y = y;
39 event.stateMask = stateMask;
40 event.widget = mCanvas;
41 MouseEvent mouseEvent = new MouseEvent(event);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
ToggleButton.java 27 import org.eclipse.swt.widgets.Event;
63 notifyListeners(SWT.Selection, new Event());
69 notifyListeners(SWT.DefaultSelection, new Event());
  /external/chromium/chrome/browser/chromeos/login/
default_images_view.h 54 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
  /external/chromium/chrome/browser/ui/views/infobars/
confirm_infobar.h 32 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
  /external/webkit/Source/WebCore/bindings/cpp/
WebNativeEventListener.cpp 38 void WebNativeEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event* event)
40 m_listener->handleEvent(toWebKit(event));
WebNativeEventListener.h 46 virtual void handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMGlobalObject.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
35 class Event;
60 void setCurrentEvent(Event*);
61 Event* currentEvent() const;
81 Event* m_currentEvent;
  /external/webkit/Source/WebCore/bindings/objc/
ObjCEventListener.h 17 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
56 virtual void handleEvent(ScriptExecutionContext*, Event*);
  /external/webkit/Source/WebCore/bindings/v8/
V8WindowErrorHandler.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
50 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
V8WorkerContextErrorHandler.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
52 virtual v8::Local<v8::Value> callListenerFunction(ScriptExecutionContext*, v8::Handle<v8::Value> jsEvent, Event*);
  /external/webkit/Source/WebCore/dom/
ClipboardEvent.h 28 #include "Event.h"
32 class ClipboardEvent : public Event {
DeviceMotionEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
29 #include "Event.h"
35 class DeviceMotionEvent : public Event {
DeviceOrientationEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
29 #include "Event.h"
35 class DeviceOrientationEvent : public Event {
ErrorEvent.cpp 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44 : Event(eventNames().errorEvent, false, true)
ErrorEvent.h 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 #include "Event.h"
39 class ErrorEvent : public Event {
OverflowEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
29 #include "Event.h"
33 class OverflowEvent : public Event {
ProgressEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
29 #include "Event.h"
33 class ProgressEvent : public Event {
UIEventWithKeyState.h 64 UIEventWithKeyState* findEventWithKeyState(Event*);
WebKitAnimationEvent.cpp 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
39 : Event(type, true, true)
WebKitAnimationEvent.h 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
29 #include "Event.h"
33 class WebKitAnimationEvent : public Event {

Completed in 724 milliseconds

1 2 3 4 56 7 8 91011>>