Searched refs:EventState (Results 1 - 10 of 10) sorted by relevance

/external/deqp/framework/platform/X11/
H A DtcuX11.hpp41 class EventState class in namespace:tcu::x11
44 EventState (void);
45 virtual ~EventState (void);
55 EventState (const EventState&);
56 EventState& operator= (const EventState&);
62 Display (EventState& platform, const char* name);
73 EventState& m_eventState;
H A DtcuX11GlxPlatform.hpp37 de::MovePtr<glu::ContextFactory> createContextFactory (EventState& eventState);
H A DtcuX11EglPlatform.hpp41 Platform (EventState& eventState);
H A DtcuX11.cpp41 EventState::EventState (void) function in class:tcu::x11::EventState
46 EventState::~EventState (void)
50 void EventState::setQuitFlag (bool quit)
56 bool EventState::getQuitFlag (void)
62 Display::Display (EventState& eventState, const char* name)
H A DtcuX11Platform.cpp64 EventState m_eventState;
H A DtcuX11EglPlatform.cpp259 DisplayFactory (EventState& eventState);
264 EventState& m_eventState;
267 DisplayFactory::DisplayFactory (EventState& eventState)
288 Platform::Platform (EventState& eventState)
H A DtcuX11GlxPlatform.cpp77 GlxContextFactory (EventState& eventState);
82 EventState& getEventState (void) const { return m_eventState;}
88 EventState& m_eventState;
94 GlxDisplay (EventState& eventState,
198 GlxContextFactory::GlxContextFactory (EventState& eventState)
222 GlxDisplay::GlxDisplay (EventState& eventState, const char* name)
678 MovePtr<ContextFactory> createContextFactory (EventState& eventState)
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DCombinedEventsManager.java33 * @see EventState
42 private final List<EventState> states;
45 private EventState first;
54 states = new ArrayList<EventState>();
72 states.add(new EventState(handler, maxCheckInterval,
84 for (EventState state : states) {
102 public Collection<EventState> getEventsStates() {
139 for (EventState state : states) {
148 for (EventState state : states) {
204 for (EventState stat
[all...]
H A DEventState.java43 public class EventState { class
95 public EventState(final EventHandler handler, final double maxCheckInterval, method in class:EventState
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DAbstractIntegrator.java35 import org.apache.commons.math.ode.events.EventState;
64 private Collection<EventState> eventsStates;
89 eventsStates = new ArrayList<EventState>();
126 eventsStates.add(new EventState(handler, maxCheckInterval, convergence, maxIterationCount));
132 for (EventState state : eventsStates) {
247 for (EventState state : eventsStates) {
255 SortedSet<EventState> occuringEvents = new TreeSet<EventState>(new Comparator<EventState>() {
258 public int compare(EventState es
[all...]

Completed in 1189 milliseconds