Home
last modified time | relevance | path

Searched refs:mPrevious (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DGcSnapshot.java63 private final GcSnapshot mPrevious; field in GcSnapshot
256 mPrevious = null; in GcSnapshot()
275 mPrevious = previous; in GcSnapshot()
283 for (Layer layer : mPrevious.mLayers) { in GcSnapshot()
357 if (mPrevious != null) { in dispose()
358 mPrevious.dispose(); in dispose()
380 if (mPrevious != null) { in size()
381 return mPrevious.size() + 1; in size()
688 if (mPrevious != null) { in doRestore()
710 for (Layer layer : mPrevious.mLayers) { in doRestore()
[all …]
/frameworks/av/services/audioflinger/
DAudioResamplerFirGen.h55 mPrevious = cos(wstart - wstep);
58 mPrevious = sin(wstart - wstep);
64 mPrevious = expPrev; in SineGen()
72 mCurrent = mCurrent*mTwoCos - mPrevious; in advance()
73 mPrevious = tmp; in advance()
77 mCurrent = mCurrent*mTwoCos - mPrevious; in valueAdvance()
78 mPrevious = tmp; in valueAdvance()
84 double mPrevious; // previous value of sine/cosine variable
DFastThread.cpp40 mPrevious(NULL), mCurrent(NULL), in FastThread()
138 mPrevious = mCurrent; in threadLoop()
198 if (mCurrent != mPrevious) { in threadLoop()
202 mPrevious = mCurrent; in threadLoop()
DFastCapture.cpp40 mPrevious = &sInitial; in FastCapture()
90 const FastCaptureState * const previous = (const FastCaptureState *) mPrevious; in onStateChange()
DFastThread.h52 const FastThreadState* mPrevious; variable
DFastMixer.cpp71 mPrevious = &sInitial; in FastMixer()
139 const FastMixerState * const previous = (const FastMixerState *) mPrevious; in onStateChange()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationUsageStats.java356 private AggregatedStats mPrevious; field in NotificationUsageStats.AggregatedStats
404 if (mPrevious == null) { in getPrevious()
405 mPrevious = new AggregatedStats(mContext, key); in getPrevious()
407 return mPrevious; in getPrevious()