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

/frameworks/av/services/audioflinger/
H A DFastCapture.cpp40 previous = &initial;
90 const FastCaptureState * const previous = (const FastCaptureState *) this->previous; local
126 if ((!Format_isEqual(format, previousFormat)) || (frameCount != previous->mFrameCount)) {
H A DFastThread.h52 const FastThreadState *previous; member in class:android::FastThread
66 struct timespec oldLoad; // previous value of clock_gettime(CLOCK_THREAD_CPUTIME_ID)
H A DFastMixer.cpp71 previous = &initial;
139 const FastMixerState * const previous = (const FastMixerState *) this->previous; local
144 // we're prepared for previous == &initial the first time through
170 if ((!Format_isEqual(format, previousFormat)) || (frameCount != previous->mFrameCount)) {
216 previousTrackMask = previous->mTrackMask;
/frameworks/base/libs/hwui/
H A DPatchCache.cpp199 BufferBlock* previous = NULL; local
206 previous = block;
215 previous = NULL;
226 if (previous) {
227 previous->next = block->next;
H A DSnapshot.h71 * Each snapshot has a link to a previous snapshot, indicating the previous
195 sp<Snapshot> previous; member in class:android::uirenderer::Snapshot
H A DOpenGLRenderer.cpp628 const Snapshot& previous = *(currentSnapshot()->previous); local
629 Rect previousViewport(0, 0, previous.getViewportWidth(), previous.getViewportHeight());
875 // Unbind current FBO and restore previous one
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp74 RenderTask* previous = 0; local
77 previous = next;
80 if (!previous) {
84 previous->mNext = task;
117 RenderTask* previous = mHead; local
118 while (previous->mNext != task) {
119 previous = previous->mNext;
121 previous->mNext = task->mNext;
123 mTail = previous;
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityInputFilter.java249 mEventQueue.previous = holder;
270 current = current.previous;
384 public MotionEventHolder previous; field in class:AccessibilityInputFilter.MotionEventHolder
401 previous = null;
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java83 public void copyRankingInformation(NotificationRecord previous) { argument
84 mContactAffinity = previous.mContactAffinity;
85 mRecentlyIntrusive = previous.mRecentlyIntrusive;
86 mPackagePriority = previous.mPackagePriority;
87 mPackageVisibility = previous.mPackageVisibility;
88 mIntercept = previous.mIntercept;
89 mRankingTimeMs = calculateRankingTimeMs(previous.getRankingTimeMs());
267 * of the previous notification record, 0 otherwise
275 // If we've ranked a previous instance with a timestamp, inherit it. This case is
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java266 * @param previous the previous snapshot head.
272 private GcSnapshot(GcSnapshot previous, RectF layerBounds, Paint_Delegate paint, int flags) { argument
273 assert previous != null;
274 mPrevious = previous;
391 * a previous snapshot.
548 GcSnapshot previous = doRestore();
551 return previous;
553 return previous.doRestoreTo(size - 1, saveCount);
594 // then go to previous laye
[all...]
/frameworks/native/services/surfaceflinger/
H A DDispSync.cpp525 nsecs_t previous = -1; local
533 sampleTime, sampleTime - previous);
535 previous = sampleTime;
541 previous = 0;
550 } else if (previous == 0) {
555 presentTime, presentTime - previous,
556 (presentTime - previous) / (double) mPeriod,
559 previous = presentTime;
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionRecord.java966 public void previous() { method in class:MediaSessionRecord.SessionCb
970 Slog.e(TAG, "Remote failure in previous.", e);
1171 public void previous() throws RemoteException { method in class:MediaSessionRecord.ControllerStub
1172 mSessionCb.previous();
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaSessionCompat.java328 * should contain the current item, and previous or upcoming items if they
526 * Override to handle requests to skip to the previous media item.
1602 public void previous() throws RemoteException { method in class:MediaSessionCompat.MediaSessionImplBase.MediaSessionStub
/frameworks/base/core/java/android/widget/
H A DNumberPicker.java344 * The previous Y coordinate while scrolling the selector.
494 * @param oldVal The previous value.
1661 int previous = mValue;
1665 notifyChange(previous, current);
1877 private void notifyChange(int previous, int current) { argument
1879 mOnValueChangeListener.onValueChange(this, previous, mValue);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java464 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
465 super.onFocusChanged(hasFocus, direction, previous);

Completed in 2586 milliseconds