HomeSort by relevance Sort by last modified time
    Searched refs:fPrev (Results 1 - 15 of 15) sorted by null

  /frameworks/base/core/jni/android/graphics/
AutoDecodeCancel.cpp 18 fPrev = NULL;
21 gAutoDecoderCancel->fPrev = this;
35 AutoDecoderCancel* prev = fPrev;
46 SkASSERT(next->fPrev == this);
47 next->fPrev = prev;
83 SkASSERT(curr->fPrev == NULL);
89 if (curr->fPrev) {
90 SkASSERT(curr->fPrev->fNext == curr);
93 SkASSERT(curr->fNext->fPrev == curr);
AutoDecodeCancel.h 16 AutoDecoderCancel* fPrev;
  /external/skia/src/images/
SkImageRefPool.cpp 73 ref = ref->fPrev;
81 ref->fPrev = NULL;
84 SkASSERT(NULL == fHead->fPrev);
85 fHead->fPrev = ref;
100 ref->fPrev = fTail;
124 fTail = ref->fPrev;
126 if (ref->fPrev) {
127 ref->fPrev->fNext = ref->fNext;
130 ref->fNext->fPrev = ref->fPrev;
    [all...]
SkImageRef.cpp 25 fPrev = fNext = NULL;
181 fPrev = fNext = NULL;
  /external/skia/src/core/
SkGlyphCache.h 170 if (fPrev) {
171 fPrev->fNext = fNext;
176 fNext->fPrev = fPrev;
178 fPrev = fNext = NULL;
182 SkASSERT(NULL == fPrev && NULL == fNext);
184 (*head)->fPrev = this;
190 SkGlyphCache* fNext, *fPrev;
SkEdge.h 31 SkEdge* fPrev;
62 SkASSERT(fPrev && fNext);
63 SkASSERT(fPrev->fNext == this);
64 SkASSERT(fNext->fPrev == this);
SkScan_Path.cpp 52 edge->fPrev->fNext = edge->fNext;
53 edge->fNext->fPrev = edge->fPrev;
58 SkASSERT(prev->fNext == next && next->fPrev == prev);
61 prev->fPrev->fNext = next;
62 next->fPrev = prev->fPrev;
66 next->fNext->fPrev = prev;
68 prev->fPrev = next;
77 SkEdge* prev = edge->fPrev;
    [all...]
SkDeque.cpp 24 Head* fPrev;
33 fNext = fPrev = NULL;
93 back = back->fPrev;
128 fFront->fPrev = first;
163 last->fPrev = fBack;
184 first->fPrev = NULL;
209 last = last->fPrev;
SkGlyphCache.cpp 61 fPrev = fNext = NULL;
637 SkGlyphCache* prev = cache->fPrev;
  /external/skia/src/gl/
SkTextureCache.cpp 7 : fName(0), fKey(bitmap), fPrev(NULL), fNext(NULL) {
161 Entry* prev = entry->fPrev;
170 next->fPrev = prev;
180 entry->fPrev = NULL;
183 SkASSERT(NULL == fHead->fPrev);
184 fHead->fPrev = entry;
232 Entry* prev = entry->fPrev;
259 next->fPrev = prev;
307 SkASSERT(NULL == fHead->fPrev);
339 if (NULL == entry->fPrev) {
    [all...]
SkTextureCache.h 116 Entry* fPrev;
  /external/skia/include/images/
SkImageRef.h 107 SkImageRef* fPrev, *fNext;
  /frameworks/base/core/java/android/widget/
FastScroller.java 359 float fPrev = (float) prevSection / nSections;
361 if (prevSection == exactSection && position - fPrev < fThreshold) {
364 index = prevIndex + (int) ((nextIndex - prevIndex) * (position - fPrev)
365 / (fNext - fPrev));
  /external/skia/src/views/
SkView.cpp 383 click->fPrev = click->fCurr = click->fOrig;
400 click->fPrev = click->fCurr;
419 click->fPrev = click->fCurr;
  /external/skia/include/views/
SkView.h 138 SkPoint fOrig, fPrev, fCurr;

Completed in 65 milliseconds