Home
last modified time | relevance | path

Searched refs:aHSL (Results 1 – 4 of 4) sorted by relevance

/trunk/main/xmloff/source/style/
H A Dxmlbahdl.cxx499 Sequence< double > aHSL(3); in importXML() local
500 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() local
535 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()
/trunk/main/sd/source/filter/eppt/
H A Dpptexanimations.cxx1454 Sequence< double > aHSL( 3 ); in convertAnimateValue() local
1456 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() local
2079 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()
/trunk/main/oox/source/ppt/
H A Dtimenodelistcontext.cxx82 Sequence< double > aHSL( 3 ); in get() local
88 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()
/trunk/main/sd/source/filter/ppt/
H A Dpptinanimations.cxx958 Sequence< double > aHSL( 3 ); in convertAnimationValue() local
959 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() local
1851 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 64 milliseconds