Lines Matching refs:nDist

1574 SvxBorderLine::SvxBorderLine( const Color *pCol, sal_uInt16 nOut, sal_uInt16 nIn, sal_uInt16 nDist )  in SvxBorderLine()  argument
1577 , nDistance( nDist ) in SvxBorderLine()
1854 sal_uInt16 nDist = 0; in QueryValue() local
1897 nDist = GetDistance(); in QueryValue()
1901 nDist = nTopDist; in QueryValue()
1905 nDist = nBottomDist; in QueryValue()
1909 nDist = nLeftDist; in QueryValue()
1913 nDist = nRightDist; in QueryValue()
1919 rVal <<= (sal_Int32)(bConvert ? TWIP_TO_MM100_UNSIGNED(nDist) : nDist); in QueryValue()
1967 sal_Int32 nDist = 0; in PutValue() local
2005 if ( aSeq[n] >>= nDist ) in PutValue()
2008 nDist = MM100_TO_TWIP(nDist); in PutValue()
2010 SetDistance( sal_uInt16( nDist )); in PutValue()
2012 SetDistance( sal_uInt16( nDist ), nLines[n-5] ); in PutValue()
2051 sal_Int32 nDist = 0; in PutValue() local
2052 if(!(rVal >>= nDist)) in PutValue()
2055 if(nDist >= 0) in PutValue()
2058 nDist = MM100_TO_TWIP(nDist); in PutValue()
2060 SetDistance( sal_uInt16( nDist )); in PutValue()
2062 SetDistance( sal_uInt16( nDist ), nLine ); in PutValue()
2377 sal_uInt16 nDist; in Create() local
2378 rStrm >> nDist; in Create()
2379 pAttr->SetDistance( nDist, aLineMap[i] ); in Create()
2452 sal_uInt16 nDist = nTopDist; in GetDistance() local
2453 if( nBottomDist && (!nDist || nBottomDist < nDist) ) in GetDistance()
2454 nDist = nBottomDist; in GetDistance()
2455 if( nLeftDist && (!nDist || nLeftDist < nDist) ) in GetDistance()
2456 nDist = nLeftDist; in GetDistance()
2457 if( nRightDist && (!nDist || nRightDist < nDist) ) in GetDistance()
2458 nDist = nRightDist; in GetDistance()
2460 return nDist; in GetDistance()
2467 sal_uInt16 nDist = 0; in GetDistance() local
2471 nDist = nTopDist; in GetDistance()
2474 nDist = nBottomDist; in GetDistance()
2477 nDist = nLeftDist; in GetDistance()
2480 nDist = nRightDist; in GetDistance()
2486 return nDist; in GetDistance()
2517 sal_uInt16 nDist = 0; in CalcLineSpace() local
2522 nDist = nTopDist; in CalcLineSpace()
2526 nDist = nBottomDist; in CalcLineSpace()
2530 nDist = nLeftDist; in CalcLineSpace()
2534 nDist = nRightDist; in CalcLineSpace()
2542nDist = nDist + (sal_uInt16)(pTmp->GetOutWidth()) + (sal_uInt16)(pTmp->GetInWidth()) + (sal_uInt16… in CalcLineSpace()
2545 nDist = 0; in CalcLineSpace()
2546 return nDist; in CalcLineSpace()