Searched refs:aHSL (Results 1 – 4 of 4) sorted by relevance
499 Sequence< double > aHSL(3); in importXML() local500 aHSL[0] = aTmp.getToken( 0, ',', nIndex ).toDouble(); in importXML()501 aHSL[1] = aTmp.getToken( 0, ',', nIndex ).toDouble() / 100.0; in importXML()502 aHSL[2] = aTmp.getToken( 0, ',', nIndex ).toDouble() / 100.0; in importXML()503 rValue <<= aHSL; in importXML()534 Sequence< double > aHSL; in exportXML() local535 if( (rValue >>= aHSL) && (aHSL.getLength() == 3) ) in exportXML()538 aOut.append( aHSL[0] ); in exportXML()540 aOut.append( aHSL[1] * 100.0 ); in exportXML()542 aOut.append( aHSL[2] * 100.0 ); in exportXML()
1454 Sequence< double > aHSL( 3 ); in convertAnimateValue() local1456 if ( rSourceValue >>= aHSL ) in convertAnimateValue()1459 aDest += rtl::OUString::valueOf( (sal_Int32)( aHSL[ 0 ] / ( 360.0 / 255 ) ) ); in convertAnimateValue()1461 aDest += rtl::OUString::valueOf( (sal_Int32)( aHSL[ 1 ] * 255.0 ) ); in convertAnimateValue()1463 aDest += rtl::OUString::valueOf( (sal_Int32)( aHSL[ 2 ] * 255.0 ) ); in convertAnimateValue()2072 Sequence< double > aHSL( 3 ); in getColorAny() local2079 else if ( rAny >>= aHSL ) // HSL in getColorAny()2081 rA = (sal_Int32) ( aHSL[ 0 ] * 255.0 / 360.0 ); in getColorAny()2082 rB = (sal_Int32) ( aHSL[ 1 ] * 255.0 ); in getColorAny()2083 rC = (sal_Int32) ( aHSL[ 2 ] * 255.0 ); in getColorAny()
82 Sequence< double > aHSL( 3 ); in get() local88 aHSL[ 0 ] = double(one) / 100000; in get()89 aHSL[ 1 ] = double(two) / 100000; in get()90 aHSL[ 2 ] = double(three) / 100000; in get()91 aColor = Any(aHSL); in get()
958 Sequence< double > aHSL( 3 ); in convertAnimationValue() local959 aHSL[0] = nA * 360.0/255.0; in convertAnimationValue()960 aHSL[1] = nB / 255.0; in convertAnimationValue()961 aHSL[2] = nC / 255.0; in convertAnimationValue()962 rValue <<= aHSL; in convertAnimationValue()1850 Sequence< double > aHSL( 3 ); in implGetColorAny() local1851 aHSL[0] = nA * 360.0/255.0; in implGetColorAny()1852 aHSL[1] = nB / 255.0; in implGetColorAny()1853 aHSL[2] = nC / 255.0; in implGetColorAny()1854 return makeAny( aHSL ); in implGetColorAny()
Completed in 73 milliseconds