Lines Matching refs:next

35  * the next display frame.
44 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
49 * next display frame, use {@link View#postInvalidateOnAnimation()} or
78 // wait before posting the next animation message. It is important that the
249 * on the next frame, but this is much better than waiting a whole 16ms and likely
272 * Posts a callback to run on the next frame.
278 * @param action The callback action to run during the next frame.
289 * Posts a callback to run on the next frame after the specified delay.
295 * @param action The callback action to run during the next frame after the specified delay.
374 * Posts a frame callback to run on the next frame.
379 * @param callback The frame callback to run during the next frame.
389 * Posts a frame callback to run on the next frame after the specified delay.
394 * @param callback The frame callback to run during the next frame.
477 Log.d(TAG, "Scheduling next frame on vsync.");
494 Log.d(TAG, "Scheduling next frame in " + (nextFrameTime - now) + " ms.");
532 + "previously skipped frame. Waiting for next vsync.");
568 for (CallbackRecord c = callbacks; c != null; c = c.next) {
580 final CallbackRecord next = callbacks.next;
582 callbacks = next;
620 mCallbackPool = callback.next;
621 callback.next = null;
632 callback.next = mCallbackPool;
752 public CallbackRecord next;
780 CallbackRecord next = last.next;
781 while (next != null) {
782 if (next.dueTime > now) {
783 last.next = null;
786 last = next;
787 next = next.next;
789 mHead = next;
801 callback.next = entry;
805 while (entry.next != null) {
806 if (dueTime < entry.next.dueTime) {
807 callback.next = entry.next;
810 entry = entry.next;
812 entry.next = callback;
818 final CallbackRecord next = callback.next;
822 predecessor.next = next;
824 mHead = next;
830 callback = next;