Lines Matching refs:strokeAttributes

495         void verifyInput( const rendering::StrokeAttributes&		strokeAttributes,  in verifyInput()  argument
500 if( !::rtl::math::isFinite( strokeAttributes.StrokeWidth ) || in verifyInput()
501 strokeAttributes.StrokeWidth < 0.0 ) in verifyInput()
507 ::rtl::OUString::valueOf(strokeAttributes.StrokeWidth) + in verifyInput()
516 if( !::rtl::math::isFinite( strokeAttributes.MiterLimit ) || in verifyInput()
517 strokeAttributes.MiterLimit < 0.0 ) in verifyInput()
523 ::rtl::OUString::valueOf(strokeAttributes.MiterLimit) + in verifyInput()
532 ::std::for_each( strokeAttributes.DashArray.getConstArray(), in verifyInput()
533strokeAttributes.DashArray.getConstArray() + strokeAttributes.DashArray.getLength(), in verifyInput()
536 ::std::for_each( strokeAttributes.LineArray.getConstArray(), in verifyInput()
537strokeAttributes.LineArray.getConstArray() + strokeAttributes.LineArray.getLength(), in verifyInput()
540 if( strokeAttributes.StartCapType < rendering::PathCapType::BUTT || in verifyInput()
541 strokeAttributes.StartCapType > rendering::PathCapType::SQUARE ) in verifyInput()
547 … ::rtl::OUString::valueOf(sal::static_int_cast<sal_Int32>(strokeAttributes.StartCapType)) + in verifyInput()
556 if( strokeAttributes.EndCapType < rendering::PathCapType::BUTT || in verifyInput()
557 strokeAttributes.EndCapType > rendering::PathCapType::SQUARE ) in verifyInput()
563 … ::rtl::OUString::valueOf(sal::static_int_cast<sal_Int32>(strokeAttributes.EndCapType)) + in verifyInput()
572 if( strokeAttributes.JoinType < rendering::PathJoinType::NONE || in verifyInput()
573 strokeAttributes.JoinType > rendering::PathJoinType::BEVEL ) in verifyInput()
579 … ::rtl::OUString::valueOf(sal::static_int_cast<sal_Int32>(strokeAttributes.JoinType)) + in verifyInput()