Lines Matching refs:pCList

2995 	pCList			( (DffRecordList*)this )  in DffRecordManager()
3001 pCList ( (DffRecordList*)this ) in DffRecordManager()
3025 pCList = (DffRecordList*)this; in Consume()
3026 while ( pCList->pNext ) in Consume()
3027 pCList = pCList->pNext; in Consume()
3032 if ( pCList->nCount == DFF_RECORD_MANAGER_BUF_SIZE ) in Consume()
3033 pCList = new DffRecordList( pCList ); in Consume()
3034 rIn >> pCList->mHd[ pCList->nCount ]; in Consume()
3035 pCList->mHd[ pCList->nCount++ ].SeekToEndOfRecord( rIn ); in Consume()
3047 pCList = (DffRecordList*)this; in Clear()
3056 if ( pCList->nCurrent < pCList->nCount ) in Current()
3057 pRet = &pCList->mHd[ pCList->nCurrent ]; in Current()
3064 pCList = (DffRecordList*)this; in First()
3065 if ( pCList->nCount ) in First()
3067 pCList->nCurrent = 0; in First()
3068 pRet = &pCList->mHd[ 0 ]; in First()
3076 sal_uInt32 nC = pCList->nCurrent + 1; in Next()
3077 if ( nC < pCList->nCount ) in Next()
3079 pCList->nCurrent++; in Next()
3080 pRet = &pCList->mHd[ nC ]; in Next()
3082 else if ( pCList->pNext ) in Next()
3084 pCList = pCList->pNext; in Next()
3085 pCList->nCurrent = 0; in Next()
3086 pRet = &pCList->mHd[ 0 ]; in Next()
3094 sal_uInt32 nCur = pCList->nCurrent; in Prev()
3095 if ( !nCur && pCList->pPrev ) in Prev()
3097 pCList = pCList->pPrev; in Prev()
3098 nCur = pCList->nCount; in Prev()
3102 pCList->nCurrent = nCur; in Prev()
3103 pRet = &pCList->mHd[ nCur ]; in Prev()
3111 while ( pCList->pNext ) in Last()
3112 pCList = pCList->pNext; in Last()
3113 sal_uInt32 nCnt = pCList->nCount; in Last()
3116 pCList->nCurrent = nCnt; in Last()
3117 pRet = &pCList->mHd[ nCnt ]; in Last()
3136 sal_uInt32 nOldCurrent = pCList->nCurrent; in GetRecordHeader()
3137 DffRecordList* pOldList = pCList; in GetRecordHeader()
3169 pCList = pOldList; in GetRecordHeader()