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

/frameworks/base/libs/hwui/
H A DSnapshot.h41 * Each snapshot has a link to a previous snapshot, indicating the previous
142 sp<Snapshot> previous; member in class:android::uirenderer::Snapshot
181 * Contains the previous ortho matrix.
H A DPatchCache.cpp183 BufferBlock* previous = NULL; local
190 previous = block;
199 previous = NULL;
210 if (previous) {
211 previous->next = block->next;
H A DOpenGLRenderer.cpp751 sp<Snapshot> previous = mSnapshot->previous; local
754 Rect& r = previous->viewport;
760 mSnapshot = previous;
769 composeLayer(current, previous);
805 if (!bounds.intersect(mSnapshot->previous->viewport)) {
1026 void OpenGLRenderer::composeLayer(sp<Snapshot> current, sp<Snapshot> previous) { argument
1048 // Unbind current FBO and restore previous one
1049 glBindFramebuffer(GL_FRAMEBUFFER, previous->fbo);
1052 startTiling(previous);
[all...]
/frameworks/av/services/audioflinger/
H A DFastMixer.cpp56 const FastMixerState *previous = &initial, *current = &initial; local
85 struct timespec oldLoad = {0, 0}; // previous value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
125 ALOG_ASSERT(current == &initial && previous == &initial);
140 // We want to always have a valid reference to the previous (non-idle) state.
141 // However, the state queue only guarantees access to current and previous states.
145 // non-idle -> non-idle update previous from current in-place
146 // non-idle -> idle update previous from copy of current
147 // idle -> idle don't update previous
148 // idle -> non-idle don't update previous
159 previous
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityInputFilter.java248 mEventQueue.previous = holder;
269 current = current.previous;
383 public MotionEventHolder previous; field in class:AccessibilityInputFilter.MotionEventHolder
400 previous = null;
/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/base/core/java/android/widget/
H A DNumberPicker.java341 * The previous Y coordinate while scrolling the selector.
486 * @param oldVal The previous value.
1604 int previous = mValue;
1608 notifyChange(previous, current);
1820 private void notifyChange(int previous, int current) { argument
1822 mOnValueChangeListener.onValueChange(this, previous, mValue);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java417 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
418 super.onFocusChanged(hasFocus, direction, previous);

Completed in 705 milliseconds