Searched defs:previous (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/hwui/
H A DSnapshot.h41 * Each snapshot has a link to a previous snapshot, indicating the previous
136 sp<Snapshot> previous; member in class:android::uirenderer::Snapshot
175 * Contains the previous ortho matrix.
H A DOpenGLRenderer.cpp573 sp<Snapshot> previous = mSnapshot->previous; local
576 Rect& r = previous->viewport;
582 mSnapshot = previous;
589 composeLayer(current, previous);
704 if (!bounds.intersect(mSnapshot->previous->viewport)) {
828 void OpenGLRenderer::composeLayer(sp<Snapshot> current, sp<Snapshot> previous) { argument
841 // Unbind current FBO and restore previous one
842 glBindFramebuffer(GL_FRAMEBUFFER, previous->fbo);
845 startTiling(previous);
[all...]
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp45 const FastMixerState *previous = &initial, *current = &initial; local
74 struct timespec oldLoad = {0, 0}; // previous value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
107 ALOG_ASSERT(current == &initial && previous == &initial);
118 // We want to always have a valid reference to the previous (non-idle) state.
119 // However, the state queue only guarantees access to current and previous states.
123 // non-idle -> non-idle update previous from current in-place
124 // non-idle -> idle update previous from copy of current
125 // idle -> idle don't update previous
126 // idle -> non-idle don't update previous
135 previous
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java265 * @param previous the previous snapshot head.
271 private GcSnapshot(GcSnapshot previous, RectF layerBounds, Paint_Delegate paint, int flags) { argument
272 assert previous != null;
273 mPrevious = previous;
390 * a previous snapshot.
547 GcSnapshot previous = doRestore();
550 return previous;
552 return previous.doRestoreTo(size - 1, saveCount);
595 // then go to previous laye
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java400 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
401 super.onFocusChanged(hasFocus, direction, previous);
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java341 * The previous Y coordinate while scrolling the selector.
481 * @param oldVal The previous value.
1558 int previous = mValue;
1562 notifyChange(previous, current);
1774 private void notifyChange(int previous, int current) { argument
1776 mOnValueChangeListener.onValueChange(this, previous, mValue);

Completed in 9423 milliseconds