Lines Matching refs:nFrom
411 int nFrom = nTo; in DrawText() local
412 fontID nFont = pFontMap[ nFrom ]; in DrawText()
432 pEffectiveStr + nFrom, nTo - nFrom, in DrawText()
433 pNewDeltaArray + nFrom ); in DrawText()
439 pEffectiveStr + nFrom, nTo - nFrom, in DrawText()
440 pDeltaArray == NULL ? NULL : pNewDeltaArray + nFrom ); in DrawText()
711 PrinterGfx::GetCharWidth (sal_Unicode nFrom, sal_Unicode nTo, long *pWidthArray) in GetCharWidth() argument
714 if (aFont.IsSymbolFont() && (nFrom < 256) && (nTo < 256)) in GetCharWidth()
716 nFrom += 0xF000; in GetCharWidth()
720 for( int n = 0; n < (nTo - nFrom + 1); n++ ) in GetCharWidth()
723 getCharMetric (aFont, n + nFrom, &aBBox); in GetCharWidth()
724 pWidthArray[n] = getCharWidth (mbTextVertical, n + nFrom, &aBBox); in GetCharWidth()