Lines Matching refs:pBegin
363 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
364 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
365 for (;pBegin != pEnd ; ++pBegin) in getTypes()
367 if(aAppendType == *pBegin) in getTypes()
369 else if(aDropType == *pBegin) in getTypes()
385 const Type* pBegin = aTypes.getConstArray(); in getTypes() local
386 const Type* pEnd = pBegin + aTypes.getLength(); in getTypes()
387 for(sal_Int32 i=0;pBegin != pEnd ;++pBegin) in getTypes()
389 if(*pBegin != aAppendType && *pBegin != aDropType) in getTypes()
390 aRet.getArray()[i++] = *pBegin; in getTypes()
391 else if(bDropFound && *pBegin == aDropType) in getTypes()
392 aRet.getArray()[i++] = *pBegin; in getTypes()
393 else if(bAppendFound && *pBegin == aAppendType) in getTypes()
394 aRet.getArray()[i++] = *pBegin; in getTypes()