Home | History | Annotate | Download | only in view

Lines Matching defs:stage

3339      * Base class for implementing a stage in the chain of responsibility
3342 * Events are delivered to the stage by the {@link #deliver} method. The stage
3343 * then has the choice of finishing the event or forwarding it to the next stage.
3354 * Creates an input stage.
3355 * @param next The next stage to which events should be forwarded.
3375 // stage but the window has lost focus in the meantime.
3384 * Marks the the input event as finished then forwards it to the next stage.
3395 * Forwards the event to the next stage.
3425 * Called when an event is being delivered to the next stage.
3437 * Base class for implementing an input pipeline stage that supports
3440 * In addition to what a normal input stage can do, an asynchronous
3441 * input stage
3455 * Creates an asynchronous input stage.
3456 * @param next The next stage to which events should be forwarded.
3488 // before it can be delivered to the next stage. This is done because
3489 // deferred events might be handled out of order by the stage.
3946 // Cancel related synthetic events if any prior stage has handled the event.
5417 InputStage stage = q.shouldSkipIme() ? mFirstPostImeInputStage : mFirstInputStage;
5418 if (stage != null) {
5419 stage.deliver(q);