Searched defs:eventType (Results 1 - 25 of 33) sorted by path

12

/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerImpl.java3208 int eventType,
3219 int eventType,
3227 public void fireGenerateEvent(int eventType, String name, String data) { argument
3234 public void fireGenerateEvent(int eventType, String data) { argument
3241 public void fireGenerateEvent(int eventType) { argument
3207 fireGenerateEvent( int eventType, char[] ch, int start, int length) argument
3218 fireGenerateEvent( int eventType, String name, Attributes atts) argument
/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...]
/external/deqp/framework/platform/X11/
H A DtcuX11.cpp181 int eventType = None; local
190 eventType = MapNotify;
195 eventType = UnmapNotify;
204 } while (event.type != eventType);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libnfc-nxp/inc/
H A DphNfcHalTypes.h890 phHal_Event_t eventType; member in struct:phHal_sEventInfo
893 /* Parameter information Information is obtained if the eventType is
897 /* AID Information is obtained if the eventType is
901 /* Overheat Status Information is obtained if the eventType is
905 /* rd_phases Information is obtained if the eventType is
909 /* Remote Device Information is obtained if the eventType is
/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...]
H A DHeaderFactoryImpl.java154 * @param eventType - the new string containing the eventType value.
156 * unexpectedly while parsing the eventType value.
160 public AllowEventsHeader createAllowEventsHeader(String eventType) argument
162 if (eventType == null)
163 throw new NullPointerException("null arg eventType");
165 allowEvents.setEventType(eventType);
439 * Creates a new EventHeader based on the newly supplied eventType value.
441 * @param eventType - the new string value of the eventType
447 createEventHeader(String eventType) argument
[all...]
/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
H A DHeaderFactory.java24 AllowEventsHeader createAllowEventsHeader(String eventType) argument
71 EventHeader createEventHeader(String eventType) throws ParseException; argument
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 488 milliseconds

12