HomeSort by relevance Sort by last modified time
    Searched refs:eventType (Results 1 - 25 of 349) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/header/
AllowEvents.java 53 protected String eventType;
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 {
78 if (eventType == null)
81 + "AllowEvents, setEventType(), the eventType parameter is null");
82 this.eventType = eventType;
    [all...]
Event.java 52 protected String eventType;
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 {
70 if (eventType == null)
71 throw new NullPointerException(" the eventType is null");
72 this.eventType = eventType
    [all...]
  /external/webkit/Source/WebCore/page/
SpeechInputEvent.cpp 38 PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results)
40 return adoptRef(new SpeechInputEvent(eventType, results));
46 SpeechInputEvent::SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results)
47 : Event(eventType, true, false) // Can bubble, not cancelable
SpeechInputEvent.h 42 static PassRefPtr<SpeechInputEvent> create(const AtomicString& eventType, const SpeechInputResultArray& results);
50 SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results);
  /external/webkit/Source/WebCore/storage/
IDBVersionChangeEvent.cpp 36 PassRefPtr<IDBVersionChangeEvent> IDBVersionChangeEvent::create(const String& version, const AtomicString& eventType)
38 return adoptRef(new IDBVersionChangeEvent(version, eventType));
41 IDBVersionChangeEvent::IDBVersionChangeEvent(const String& version, const AtomicString& eventType)
42 : Event(eventType, false /*canBubble*/, false /*cancelable*/)
IDBVersionChangeEvent.h 42 static PassRefPtr<IDBVersionChangeEvent> create(const String& version, const AtomicString& eventType);
51 IDBVersionChangeEvent(const String& version, const AtomicString& eventType);
  /frameworks/base/media/java/android/media/
MediaSyncEvent.java 51 * @param eventType the synchronization event type.
55 public static MediaSyncEvent createEvent(int eventType)
57 if (!isValidType(eventType)) {
58 throw (new IllegalArgumentException(eventType
61 return new MediaSyncEvent(eventType);
68 private MediaSyncEvent(int eventType) {
69 mType = eventType;
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityEventSource.java 44 * @param eventType The event type.
46 public void sendAccessibilityEvent(int eventType);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerTrace.java 112 * @param eventType One of the EVENTTYPE_XXX constants.
114 public void fireGenerateEvent(int eventType);
119 * @param eventType One of the EVENTTYPE_XXX constants.
123 public void fireGenerateEvent(int eventType, String name, Attributes atts);
128 * @param eventType One of the EVENTTYPE_XXX constants.
133 public void fireGenerateEvent(int eventType, char ch[], int start, int length);
138 * @param eventType One of the EVENTTYPE_XXX constants.
142 public void fireGenerateEvent(int eventType, String name, String data);
148 * @param eventType One of the EVENTTYPE_XXX constants.
151 public void fireGenerateEvent(int eventType, String data)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Object.js 30 addEventListener: function(eventType, listener, thisObject)
34 if (!(eventType in this._listeners))
35 this._listeners[eventType] = [];
36 this._listeners[eventType].push({ thisObject: thisObject, listener: listener });
39 removeEventListener: function(eventType, listener, thisObject)
41 if (!("_listeners" in this) || !(eventType in this._listeners))
43 var listeners = this._listeners[eventType];
52 delete this._listeners[eventType];
60 hasEventListeners: function(eventType)
62 if (!("_listeners" in this) || !(eventType in this._listeners)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebDOMEventListenerPrivate.h 53 const WebString& eventType, bool useCapture, WebCore::Node*);
58 const WebString& eventType, bool useCapture, WebCore::Node*);
67 ListenerInfo(const WebString& eventType, bool useCapture,
70 : eventType(eventType)
77 WebString eventType;
WebDOMEventListener.cpp 56 EventListenerWrapper* WebDOMEventListener::createEventListenerWrapper(const WebString& eventType, bool useCapture, Node* node)
58 return m_private->createEventListenerWrapper(eventType, useCapture, node);
61 EventListenerWrapper* WebDOMEventListener::getEventListenerWrapper(const WebString& eventType, bool useCapture, Node* node)
63 return m_private->getEventListenerWrapper(eventType, useCapture, node);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEvent.java 26 protected int eventType;
45 eventType = type;
52 return eventType;
  /packages/apps/Mms/src/org/w3c/dom/events/
DocumentEvent.java 29 * @param eventType The <code>eventType</code> parameter specifies the
53 public Event createEvent(String eventType)
  /external/webkit/Source/WebCore/dom/
ClipboardEvent.cpp 32 ClipboardEvent::ClipboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<Clipboard> clipboard)
33 : Event(eventType, canBubble, cancelable), m_clipboard(clipboard)
DeviceMotionEvent.h 42 static PassRefPtr<DeviceMotionEvent> create(const AtomicString& eventType, DeviceMotionData* deviceMotionData)
44 return adoptRef(new DeviceMotionEvent(eventType, deviceMotionData));
55 DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData*);
DeviceOrientationEvent.h 42 static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientation* orientation)
44 return adoptRef(new DeviceOrientationEvent(eventType, orientation));
55 DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientation*);
DeviceMotionEvent.cpp 42 DeviceMotionEvent::DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData* deviceMotionData)
43 : Event(eventType, false, false) // Can't bubble, not cancelable
DeviceOrientationEvent.cpp 42 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientation* orientation)
43 : Event(eventType, false, false) // Can't bubble, not cancelable
  /external/nist-sip/java/javax/sip/header/
AllowEventsHeader.java 9 void setEventType(String eventType) throws ParseException;
  /frameworks/base/services/jni/
com_android_server_power_PowerManagerService.h 29 extern void android_server_PowerManagerService_userActivity(nsecs_t eventTime, int32_t eventType);
  /external/webkit/Source/WebCore/svg/
SVGDocument.idl 28 Event createEvent(in DOMString eventType)
  /external/webkit/Source/WebKit/chromium/public/
WebDOMEventListener.h 58 EventListenerWrapper* createEventListenerWrapper(const WebString& eventType, bool useCapture, WebCore::Node* node);
59 EventListenerWrapper* getEventListenerWrapper(const WebString& eventType, bool useCapture, WebCore::Node* node);
  /external/smack/src/org/jivesoftware/smackx/provider/
MUCAdminProvider.java 39 int eventType = parser.next();
40 if (eventType == XmlPullParser.START_TAG) {
45 else if (eventType == XmlPullParser.END_TAG) {
64 int eventType = parser.next();
65 if (eventType == XmlPullParser.START_TAG) {
73 else if (eventType == XmlPullParser.END_TAG) {
DataFormProvider.java 51 int eventType = parser.next();
52 if (eventType == XmlPullParser.START_TAG) {
68 } else if (eventType == XmlPullParser.END_TAG) {
83 int eventType = parser.next();
84 if (eventType == XmlPullParser.START_TAG) {
97 } else if (eventType == XmlPullParser.END_TAG) {
110 int eventType = parser.next();
111 if (eventType == XmlPullParser.START_TAG) {
115 } else if (eventType == XmlPullParser.END_TAG) {
128 int eventType = parser.next()
    [all...]

Completed in 4255 milliseconds

1 2 3 4 5 6 7 8 91011>>