Lines Matching refs:nExp
309 sal_Int32 nExp = 1; in lcl_GetApiPos() local
310 while( nStart >= nExp ) in lcl_GetApiPos()
312 nApiPos += nStart - nExp + 1; in lcl_GetApiPos()
313 nExp *= 10; in lcl_GetApiPos()
322 sal_Int32 nExp = 10; in lcl_GetRulerPos() local
329 nRulerPos = nExp; in lcl_GetRulerPos()
330 nExp *= 10; in lcl_GetRulerPos()
332 nApiLimit = lcl_GetApiPos( nExp ); in lcl_GetRulerPos()
339 inline sal_Int32 lcl_ExpandSequence( Sequence< PropertyValue >& rSeq, sal_Int32 nExp ) in lcl_ExpandSequence() argument
341 DBG_ASSERT( nExp > 0, "lcl_ExpandSequence - invalid value" ); in lcl_ExpandSequence()
342 rSeq.realloc( rSeq.getLength() + nExp ); in lcl_ExpandSequence()
343 return rSeq.getLength() - nExp; in lcl_ExpandSequence()