Lines Matching refs:pDX

509     sal_Int32*	pDX = nDXBuffer;  in ImplRepaint()  local
516 pDX = pDXBuffer; in ImplRepaint()
519 GetCaretPositions( aText, pDX, nStart, nEnd ); in ImplRepaint()
527 long nPos = nStart ? pDX[2*nStart] : 0; in ImplRepaint()
572 long nPos = nStart ? pDX[2*nStart] : 0; in ImplRepaint()
592 aRect.Left() = pDX[2*i] + mnXOffset + ImplGetExtraOffset(); in ImplRepaint()
593 aRect.Right() = pDX[2*i+1] + mnXOffset + ImplGetExtraOffset(); in ImplRepaint()
666 … aRect.Left() = pDX[2*(nIndex+mpIMEInfos->nPos)] + mnXOffset + ImplGetExtraOffset(); in ImplRepaint()
667 … aRect.Right() = pDX[2*(nIndex+mpIMEInfos->nPos)+1] + mnXOffset + ImplGetExtraOffset(); in ImplRepaint()
1173 sal_Int32* pDX = nDXBuffer; in ImplShowCursor() local
1180 pDX = pDXBuffer; in ImplShowCursor()
1183 GetCaretPositions( aText, pDX, 0, aText.Len() ); in ImplShowCursor()
1186 nTextPos = pDX[ 2*maSelection.Max() ]; in ImplShowCursor()
1188 nTextPos = pDX[ 2*aText.Len()-1 ]; in ImplShowCursor()
1300 sal_Int32* pDX = nDXBuffer; in ImplGetCharPos() local
1304 pDX = pDXBuffer; in ImplGetCharPos()
1307 GetCaretPositions( aText, pDX, 0, aText.Len() ); in ImplGetCharPos()
1311 if( (pDX[2*i] >= nX && pDX[2*i+1] <= nX) || in ImplGetCharPos()
1312 (pDX[2*i+1] >= nX && pDX[2*i] <= nX)) in ImplGetCharPos()
1315 if( pDX[2*i] < pDX[2*i+1] ) in ImplGetCharPos()
1317 if( nX > (pDX[2*i]+pDX[2*i+1])/2 ) in ImplGetCharPos()
1322 if( nX < (pDX[2*i]+pDX[2*i+1])/2 ) in ImplGetCharPos()
1331 long nDiff = Abs( pDX[0]-nX ); in ImplGetCharPos()
1334 long nNewDiff = Abs( pDX[2*i]-nX ); in ImplGetCharPos()
1342 if( nIndex == aText.Len()-1 && Abs( pDX[2*nIndex+1] - nX ) < nDiff ) in ImplGetCharPos()