Lines Matching refs:next

32  * the next display frame.
41 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
43 * <li>To post a {@link Runnable} to be invoked once at the beginning of the next display
46 * next display frame, use {@link View#postInvalidateOnAnimation()} or
75 // wait before posting the next animation message. It is important that the
246 * on the next frame, but this is much better than waiting a whole 16ms and likely
260 * Posts a callback to run on the next frame.
266 * @param action The callback action to run during the next frame.
277 * Posts a callback to run on the next frame after the specified delay.
283 * @param action The callback action to run during the next frame after the specified delay.
362 * Posts a frame callback to run on the next frame.
367 * @param callback The frame callback to run during the next frame.
377 * Posts a frame callback to run on the next frame after the specified delay.
382 * @param callback The frame callback to run during the next frame.
465 Log.d(TAG, "Scheduling next frame on vsync.");
482 Log.d(TAG, "Scheduling next frame in " + (nextFrameTime - now) + " ms.");
520 + "previously skipped frame. Waiting for next vsync.");
556 for (CallbackRecord c = callbacks; c != null; c = c.next) {
568 final CallbackRecord next = callbacks.next;
570 callbacks = next;
608 mCallbackPool = callback.next;
609 callback.next = null;
620 callback.next = mCallbackPool;
740 public CallbackRecord next;
768 CallbackRecord next = last.next;
769 while (next != null) {
770 if (next.dueTime > now) {
771 last.next = null;
774 last = next;
775 next = next.next;
777 mHead = next;
789 callback.next = entry;
793 while (entry.next != null) {
794 if (dueTime < entry.next.dueTime) {
795 callback.next = entry.next;
798 entry = entry.next;
800 entry.next = callback;
806 final CallbackRecord next = callback.next;
810 predecessor.next = next;
812 mHead = next;
818 callback = next;