Searched defs:eventType (Results 1 - 25 of 106) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DThreadLocalEventNames.h32 inline bool isTouchEventType(const AtomicString& eventType) argument
34 return eventType == EventTypeNames::touchstart
35 || eventType == EventTypeNames::touchmove
36 || eventType == EventTypeNames::touchend
37 || eventType == EventTypeNames::touchcancel;
H A DApplicationCacheErrorEvent.cpp61 ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer) argument
62 : Event(eventType, initializer)
H A DAutocompleteErrorEvent.h49 static PassRefPtrWillBeRawPtr<AutocompleteErrorEvent> create(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer) argument
51 return adoptRefWillBeNoop(new AutocompleteErrorEvent(eventType, initializer));
67 AutocompleteErrorEvent(const AtomicString& eventType, const AutocompleteErrorEventInit& initializer) argument
68 : Event(eventType, initializer)
H A DClipboardEvent.cpp34 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<DataTransfer> clipboardData) argument
35 : Event(eventType, canBubble, cancelable), m_clipboardData(clipboardData)
H A DRelatedEvent.cpp43 RelatedEvent::RelatedEvent(const AtomicString& eventType, const RelatedEventInit& initializer) argument
44 : Event(eventType, initializer)
H A DApplicationCacheErrorEvent.h40 static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer) argument
42 return adoptRefWillBeNoop(new ApplicationCacheErrorEvent(eventType, initializer));
57 ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer);
H A DEventSender.h38 explicit EventSender(const AtomicString& eventType);
40 const AtomicString& eventType() const { return m_eventType; } function in class:blink::EventSender
61 template<typename T> EventSender<T>::EventSender(const AtomicString& eventType) argument
62 : m_eventType(eventType)
H A DHashChangeEvent.h53 void initHashChangeEvent(const AtomicString& eventType, bool canBubble, bool cancelable, const String& oldURL, const String& newURL) argument
58 initEvent(eventType, canBubble, cancelable);
/external/chromium_org/third_party/WebKit/Source/modules/device_light/
H A DDeviceLightEvent.cpp19 DeviceLightEvent::DeviceLightEvent(const AtomicString& eventType, double value) argument
20 : Event(eventType, true, false) // The DeviceLightEvent bubbles but is not cancelable.
25 DeviceLightEvent::DeviceLightEvent(const AtomicString& eventType, const DeviceLightEventInit& initializer) argument
26 : Event(eventType, initializer)
H A DDeviceLightEvent.h32 static PassRefPtrWillBeRawPtr<DeviceLightEvent> create(const AtomicString& eventType, double value) argument
34 return adoptRefWillBeNoop(new DeviceLightEvent(eventType, value));
36 static PassRefPtrWillBeRawPtr<DeviceLightEvent> create(const AtomicString& eventType, const DeviceLightEventInit& initializer) argument
38 return adoptRefWillBeNoop(new DeviceLightEvent(eventType, initializer));
47 DeviceLightEvent(const AtomicString& eventType, double value);
48 DeviceLightEvent(const AtomicString& eventType, const DeviceLightEventInit& initializer);
/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationEvent.h44 static PassRefPtrWillBeRawPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation) argument
46 return adoptRefWillBeNoop(new DeviceOrientationEvent(eventType, orientation));
64 DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData*);
H A DDeviceMotionEvent.h46 static PassRefPtrWillBeRawPtr<DeviceMotionEvent> create(const AtomicString& eventType, DeviceMotionData* deviceMotionData) argument
48 return adoptRefWillBeNoop(new DeviceMotionEvent(eventType, deviceMotionData));
66 DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData*);
H A DDeviceMotionEvent.cpp44 DeviceMotionEvent::DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData* deviceMotionData) argument
45 : Event(eventType, false, false) // Can't bubble, not cancelable
H A DDeviceOrientationEvent.cpp42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) argument
43 : Event(eventType, false, false) // Can't bubble, not cancelable
/external/nist-sip/java/javax/sip/header/
H A DAllowEventsHeader.java9 void setEventType(String eventType) throws ParseException; argument
H A DEventHeader.java12 void setEventType(String eventType) throws ParseException; argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryListEvent.h38 static PassRefPtrWillBeRawPtr<MediaQueryListEvent> create(const AtomicString& eventType, const MediaQueryListEventInit& initializer) argument
40 return adoptRefWillBeNoop(new MediaQueryListEvent(eventType, initializer));
68 MediaQueryListEvent(const AtomicString& eventType, const MediaQueryListEventInit& initializer) argument
69 : Event(eventType, initializer)
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMWindowLifecycleNotifier.cpp62 void DOMWindowLifecycleNotifier::notifyAddEventListener(LocalDOMWindow* window, const AtomicString& eventType) argument
66 (*it)->didAddEventListener(window, eventType);
69 void DOMWindowLifecycleNotifier::notifyRemoveEventListener(LocalDOMWindow* window, const AtomicString& eventType) argument
73 (*it)->didRemoveEventListener(window, eventType);
H A DDeviceSingleWindowEventController.cpp48 void DeviceSingleWindowEventController::didAddEventListener(LocalDOMWindow* window, const AtomicString& eventType) argument
50 if (eventType != eventTypeName())
59 void DeviceSingleWindowEventController::didRemoveEventListener(LocalDOMWindow* window, const AtomicString& eventType) argument
61 if (eventType != eventTypeName() || window->hasEventListeners(eventTypeName()))
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBVersionChangeEvent.cpp43 IDBVersionChangeEvent::IDBVersionChangeEvent(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, WebIDBDataLoss dataLoss, const String& dataLossMessage) argument
44 : Event(eventType, false /*canBubble*/, false /*cancelable*/)
52 IDBVersionChangeEvent::IDBVersionChangeEvent(const AtomicString& eventType, const IDBVersionChangeEventInit& initializer) argument
53 : Event(eventType, false /*canBubble*/, false /*cancelable*/)
H A DIDBVersionChangeEvent.h56 static PassRefPtrWillBeRawPtr<IDBVersionChangeEvent> create(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, WebIDBDataLoss dataLoss = WebIDBDataLossNone, const String& dataLossMessage = String()) argument
58 return adoptRefWillBeNoop(new IDBVersionChangeEvent(eventType, oldVersion, newVersion, dataLoss, dataLossMessage));
60 static PassRefPtrWillBeRawPtr<IDBVersionChangeEvent> create(const AtomicString& eventType, const IDBVersionChangeEventInit& initializer) argument
62 return adoptRefWillBeNoop(new IDBVersionChangeEvent(eventType, initializer));
77 IDBVersionChangeEvent(const AtomicString& eventType, unsigned long long oldVersion, const Nullable<unsigned long long>& newVersion, WebIDBDataLoss, const String& dataLoss);
78 IDBVersionChangeEvent(const AtomicString& eventType, const IDBVersionChangeEventInit&);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAllowEvents.java53 protected String eventType; field in class:AllowEvents
66 eventType = m;
70 * Sets the eventType defined in this AllowEventsHeader.
72 * @param eventType - the String defining the method supported
75 * unexpectedly while parsing the Strings defining the eventType supported
77 public void setEventType(String eventType) throws ParseException { argument
78 if (eventType == null)
81 + "AllowEvents, setEventType(), the eventType parameter is null");
82 this.eventType = eventType;
[all...]
H A DEvent.java52 protected String eventType; field in class:Event
62 * Sets the eventType to the newly supplied eventType string.
64 * @param eventType - the new string defining the eventType supported
67 * unexpectedly while parsing the eventType value.
69 public void setEventType(String eventType) throws ParseException { argument
70 if (eventType == null)
71 throw new NullPointerException(" the eventType is null");
72 this.eventType
[all...]
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DEventElement.java35 public EventElement(EventElementType eventType, NodeExtension eventExt) argument
37 type = eventType;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTrace.java112 * @param eventType One of the EVENTTYPE_XXX constants.
114 public void fireGenerateEvent(int eventType); argument
119 * @param eventType One of the EVENTTYPE_XXX constants.
123 public void fireGenerateEvent(int eventType, String name, Attributes atts); argument
128 * @param eventType One of the EVENTTYPE_XXX constants.
133 public void fireGenerateEvent(int eventType, char ch[], int start, int length); argument
138 * @param eventType One of the EVENTTYPE_XXX constants.
142 public void fireGenerateEvent(int eventType, String name, String data); argument
148 * @param eventType One of the EVENTTYPE_XXX constants.
151 public void fireGenerateEvent(int eventType, Strin argument
[all...]

Completed in 4359 milliseconds

12345