Lines Matching refs:next

36  * the next display frame.
45 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
47 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
50 * next display frame, use {@link View#postInvalidateOnAnimation()} or
84 // wait before posting the next animation message. It is important that the
287 * on the next frame, but this is much better than waiting a whole 16ms and likely
318 * Posts a callback to run on the next frame.
324 * @param action The callback action to run during the next frame.
335 * Posts a callback to run on the next frame after the specified delay.
341 * @param action The callback action to run during the next frame after the specified delay.
420 * Posts a frame callback to run on the next frame.
425 * @param callback The frame callback to run during the next frame.
435 * Posts a frame callback to run on the next frame after the specified delay.
440 * @param callback The frame callback to run during the next frame.
523 Log.d(TAG, "Scheduling next frame on vsync.");
540 Log.d(TAG, "Scheduling next frame in " + (nextFrameTime - now) + " ms.");
585 + "previously skipped frame. Waiting for next vsync.");
638 // callbacks will always increase from one frame to the next and never repeat.
639 // We never want the next frame's starting frame time to end up being less than
641 // next frame has most likely already been scheduled by now so we play it
664 for (CallbackRecord c = callbacks; c != null; c = c.next) {
676 final CallbackRecord next = callbacks.next;
678 callbacks = next;
717 mCallbackPool = callback.next;
718 callback.next = null;
729 callback.next = mCallbackPool;
849 public CallbackRecord next;
877 CallbackRecord next = last.next;
878 while (next != null) {
879 if (next.dueTime > now) {
880 last.next = null;
883 last = next;
884 next = next.next;
886 mHead = next;
898 callback.next = entry;
902 while (entry.next != null) {
903 if (dueTime < entry.next.dueTime) {
904 callback.next = entry.next;
907 entry = entry.next;
909 entry.next = callback;
915 final CallbackRecord next = callback.next;
919 predecessor.next = next;
921 mHead = next;
927 callback = next;