Home
last modified time | relevance | path

Searched refs:fPrev (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
DAutoDecodeCancel.cpp18 fPrev = NULL; in AutoDecoderCancel()
21 gAutoDecoderCancel->fPrev = this; in AutoDecoderCancel()
35 AutoDecoderCancel* prev = fPrev; in ~AutoDecoderCancel()
46 SkASSERT(next->fPrev == this); in ~AutoDecoderCancel()
47 next->fPrev = prev; in ~AutoDecoderCancel()
83 SkASSERT(curr->fPrev == NULL); in Validate()
89 if (curr->fPrev) { in Validate()
90 SkASSERT(curr->fPrev->fNext == curr); in Validate()
93 SkASSERT(curr->fNext->fPrev == curr); in Validate()
DAutoDecodeCancel.h16 AutoDecoderCancel* fPrev; variable
/frameworks/base/core/java/android/widget/
DFastScroller.java613 float fPrev = (float) prevSection / nSections; in scrollTo() local
615 if (prevSection == exactSection && position - fPrev < fThreshold) { in scrollTo()
618 index = prevIndex + (int) ((nextIndex - prevIndex) * (position - fPrev) in scrollTo()
619 / (fNext - fPrev)); in scrollTo()