Lines Matching refs:nChar

352     sal_Int32 nChar = 0;  in DrawRect()  local
354 nChar = psp::getValueOf (rRectangle.TopLeft().X(), pRect); in DrawRect()
355 nChar += psp::appendStr (" ", pRect + nChar); in DrawRect()
356 nChar += psp::getValueOf (rRectangle.TopLeft().Y(), pRect + nChar); in DrawRect()
357 nChar += psp::appendStr (" ", pRect + nChar); in DrawRect()
358 nChar += psp::getValueOf (rRectangle.GetWidth(), pRect + nChar); in DrawRect()
359 nChar += psp::appendStr (" ", pRect + nChar); in DrawRect()
360 nChar += psp::getValueOf (rRectangle.GetHeight(), pRect + nChar); in DrawRect()
361 nChar += psp::appendStr (" ", pRect + nChar); in DrawRect()
367 WritePS (mpPageBody, pRect, nChar); in DrawRect()
375 WritePS (mpPageBody, pRect, nChar); in DrawRect()
727 sal_Int32 nChar = 0; in PSSetLineWidth() local
730 nChar = psp::getValueOfDouble (pBuffer, maVirtualStatus.mfLineWidth, 5); in PSSetLineWidth()
731 nChar += psp::appendStr (" setlinewidth\n", pBuffer + nChar); in PSSetLineWidth()
732 WritePS (mpPageBody, pBuffer, nChar); in PSSetLineWidth()
746 sal_Int32 nChar = 0; in PSSetColor() local
750 nChar = psp::getValueOfDouble (pBuffer, in PSSetColor()
752 nChar += psp::appendStr (" ", pBuffer + nChar); in PSSetColor()
753 nChar += psp::getValueOfDouble (pBuffer + nChar, in PSSetColor()
755 nChar += psp::appendStr (" ", pBuffer + nChar); in PSSetColor()
756 nChar += psp::getValueOfDouble (pBuffer + nChar, in PSSetColor()
758 nChar += psp::appendStr (" setrgbcolor\n", pBuffer + nChar ); in PSSetColor()
764 nChar = psp::getValueOfDouble( pBuffer, (double)nCol / 255.0, 5 ); in PSSetColor()
765 nChar += psp::appendStr( " setgray\n", pBuffer + nChar ); in PSSetColor()
768 WritePS (mpPageBody, pBuffer, nChar); in PSSetColor()
796 sal_Int32 nChar = 0; in PSSetFont() local
809 nChar += psp::appendStr ("(", pSetFont + nChar); in PSSetFont()
810 nChar += psp::appendStr (aReencodedFont.getStr(), in PSSetFont()
811 pSetFont + nChar); in PSSetFont()
812 nChar += psp::appendStr (") cvn findfont ", in PSSetFont()
813 pSetFont + nChar); in PSSetFont()
819 nChar += psp::appendStr ("(", pSetFont + nChar); in PSSetFont()
820 nChar += psp::appendStr (rCurrent.maFont.getStr(), in PSSetFont()
821 pSetFont + nChar); in PSSetFont()
822 nChar += psp::appendStr (") cvn findfont ", in PSSetFont()
823 pSetFont + nChar); in PSSetFont()
828 nChar += psp::getValueOf (nTextWidth, pSetFont + nChar); in PSSetFont()
829 nChar += psp::appendStr (" ", pSetFont + nChar); in PSSetFont()
830 nChar += psp::getValueOf (-nTextHeight, pSetFont + nChar); in PSSetFont()
831 nChar += psp::appendStr (" matrix scale makefont setfont\n", pSetFont + nChar); in PSSetFont()
835 nChar += psp::appendStr ( " [", pSetFont + nChar); in PSSetFont()
836 nChar += psp::getValueOf (nTextWidth, pSetFont + nChar); in PSSetFont()
837 nChar += psp::appendStr (" 0 ", pSetFont + nChar); in PSSetFont()
838 nChar += psp::getValueOfDouble (pSetFont + nChar, 0.27*(double)nTextWidth, 3 ); in PSSetFont()
839 nChar += psp::appendStr ( " ", pSetFont + nChar); in PSSetFont()
840 nChar += psp::getValueOf (-nTextHeight, pSetFont + nChar); in PSSetFont()
842 nChar += psp::appendStr (" 0 0] makefont setfont\n", pSetFont + nChar); in PSSetFont()
863 sal_Int32 nChar = 0; in PSRotate() local
865 nChar = psp::getValueOf (nFullAngle, pRotate); in PSRotate()
866 nChar += psp::appendStr (".", pRotate + nChar); in PSRotate()
867 nChar += psp::getValueOf (nTenthAngle, pRotate + nChar); in PSRotate()
868 nChar += psp::appendStr (" rotate\n", pRotate + nChar); in PSRotate()
877 sal_Int32 nChar = 0; in PSPointOp() local
879 nChar = psp::getValueOf (rPoint.X(), pPSCommand); in PSPointOp()
880 nChar += psp::appendStr (" ", pPSCommand + nChar); in PSPointOp()
881 nChar += psp::getValueOf (rPoint.Y(), pPSCommand + nChar); in PSPointOp()
882 nChar += psp::appendStr (" ", pPSCommand + nChar); in PSPointOp()
883 nChar += psp::appendStr (pOperator, pPSCommand + nChar); in PSPointOp()
884 nChar += psp::appendStr ("\n", pPSCommand + nChar); in PSPointOp()
886 DBG_ASSERT (nChar < 48, "Buffer overflow in PSPointOp"); in PSPointOp()
979 sal_Int32 nChar; in PSBinPath() local
1012 nChar = 1 + nXPrec + nYPrec; in PSBinPath()
1013 if ((nColumn + nChar) > nMaxTextColumn) in PSBinPath()
1019 WritePS (mpPageBody, pPath + nSegment, nChar - nSegment); in PSBinPath()
1021 nColumn = nChar - nSegment; in PSBinPath()
1025 WritePS (mpPageBody, pPath, nChar); in PSBinPath()
1027 nColumn += nChar; in PSBinPath()
1037 sal_Int32 nChar = 0; in PSScale() local
1039 nChar = psp::getValueOfDouble (pScale, fScaleX, 5); in PSScale()
1040 nChar += psp::appendStr (" ", pScale + nChar); in PSScale()
1041 nChar += psp::getValueOfDouble (pScale + nChar, fScaleY, 5); in PSScale()
1042 nChar += psp::appendStr (" scale\n", pScale + nChar); in PSScale()
1052 sal_Int32 nChar = 0; in PSHexString() local
1054 nChar = psp::appendStr ("<", pHexString); in PSHexString()
1057 if (nChar >= (nMaxTextColumn - 1)) in PSHexString()
1059 nChar += psp::appendStr ("\n", pHexString + nChar); in PSHexString()
1060 WritePS (mpPageBody, pHexString, nChar); in PSHexString()
1061 nChar = 0; in PSHexString()
1063 nChar += psp::getHexValueOf ((sal_Int32)pString[i], pHexString + nChar); in PSHexString()
1066 nChar += psp::appendStr (">\n", pHexString + nChar); in PSHexString()
1067 WritePS (mpPageBody, pHexString, nChar); in PSHexString()
1075 sal_Int32 nChar = 0; in PSDeltaArray() local
1077 nChar = psp::appendStr ("[", pPSArray + nChar); in PSDeltaArray()
1078 nChar += psp::getValueOf (pArray[0], pPSArray + nChar); in PSDeltaArray()
1082 if (nChar >= (nMaxTextColumn - 1)) in PSDeltaArray()
1084 nChar += psp::appendStr ("\n", pPSArray + nChar); in PSDeltaArray()
1085 WritePS (mpPageBody, pPSArray, nChar); in PSDeltaArray()
1086 nChar = 0; in PSDeltaArray()
1089 nChar += psp::appendStr (" ", pPSArray + nChar); in PSDeltaArray()
1090 nChar += psp::getValueOf (pArray[i] - pArray[i-1], pPSArray + nChar); in PSDeltaArray()
1093 nChar += psp::appendStr (" 0]\n", pPSArray + nChar); in PSDeltaArray()