Lines Matching refs:fFront
36 fFront = fBack = NULL; in SkDeque()
54 fFront = fBack = NULL; in SkDeque()
99 if (NULL == fFront) { in push_front()
101 fFront = fBack = begin; in push_front()
104 fFront = begin; in push_front()
141 SkASSERT(NULL == fFront); in push_back()
142 fFront = fBack = end; in push_back()
144 SkASSERT(NULL != fFront); in push_back()
173 fFront = first->fBegin; in pop_front()
177 fFront = fBack = NULL; in pop_front()
180 fFront = first->fNext->fBegin; in pop_front()
211 fFront = fBack = NULL; in pop_back()