Lines Matching refs:aRet

552 	Any aRet;  in convertTo()  local
574 aRet.setValue( rVal.getValue(), aDestTD.get() ); // evtl. .uP.cAsT. in convertTo()
592 aRet.setValue( &null_ref, aDestType ); in convertTo()
603 if (! (aRet = (*(XInterface * const *)rVal.getValue())->queryInterface( in convertTo()
636 aRet.setValue( &pRet, aDestTD.get() ); in convertTo()
642 char * pDestElements = (*(uno_Sequence * const *)aRet.getValue())->elements; in convertTo()
703 aRet.setValue( in convertTo()
721 aRet = convertToSimpleType( rVal, aDestinationClass ); in convertTo()
729 if (aRet.hasValue()) in convertTo()
730 return aRet; in convertTo()
767 Any aRet; in convertToSimpleType() local
787 aRet.setValue( &bTmp, getBooleanCppuType() ); in convertToSimpleType()
799 aRet.setValue( &bFalse, getCppuBooleanType() ); in convertToSimpleType()
805 aRet.setValue( &bTrue, getCppuBooleanType() ); in convertToSimpleType()
823 aRet.setValue( (*(const OUString *)rVal.getValue()).getStr(), ::getCharCppuType() ); in convertToSimpleType()
829 aRet.setValue( &cRet, ::getCharCppuType() ); in convertToSimpleType()
834 aRet <<= (sal_Int8)( toHyper( rVal, -(sal_Int64)0x80, 0x7f ) ); in convertToSimpleType()
839 aRet <<= (sal_Int16)( toHyper( rVal, -(sal_Int64)0x8000, 0x7fff ) ); in convertToSimpleType()
842 aRet <<= (sal_uInt16)( toHyper( rVal, 0, 0xffff ) ); in convertToSimpleType()
847 aRet <<= (sal_Int32)( toHyper( rVal, -(sal_Int64)0x80000000, 0x7fffffff ) ); in convertToSimpleType()
850 aRet <<= (sal_uInt32)( toHyper( rVal, 0, 0xffffffff ) ); in convertToSimpleType()
855 aRet <<= toHyper( rVal, SAL_INT64_MIN, SAL_INT64_MAX ); in convertToSimpleType()
858 aRet <<= (sal_uInt64)( toHyper( rVal, 0, SAL_UINT64_MAX ) ); in convertToSimpleType()
863 aRet <<= (float)( toDouble( rVal, -FLT_MAX, FLT_MAX ) ); in convertToSimpleType()
866 aRet <<= (double)( toDouble( rVal, -DBL_MAX, DBL_MAX ) ); in convertToSimpleType()
886 aRet.setValue( in convertToSimpleType()
900 aRet <<= OUString::createFromAscii( (*(sal_Bool *)rVal.getValue() ? "true" : "false") ); in convertToSimpleType()
903 aRet <<= OUString( (sal_Unicode *)rVal.getValue(), 1 ); in convertToSimpleType()
907 aRet <<= OUString::valueOf( (sal_Int32)*(sal_Int8 const *)rVal.getValue() ); in convertToSimpleType()
910 aRet <<= OUString::valueOf( (sal_Int32)*(sal_Int16 const *)rVal.getValue() ); in convertToSimpleType()
913 aRet <<= OUString::valueOf( (sal_Int32)*(sal_uInt16 const *)rVal.getValue() ); in convertToSimpleType()
916 aRet <<= OUString::valueOf( *(sal_Int32 const *)rVal.getValue() ); in convertToSimpleType()
919 aRet <<= OUString::valueOf( (sal_Int64)*(sal_uInt32 const *)rVal.getValue() ); in convertToSimpleType()
922 aRet <<= OUString::valueOf( *(sal_Int64 const *)rVal.getValue() ); in convertToSimpleType()
930 aRet <<= OUString::valueOf( toDouble( rVal ) ); in convertToSimpleType()
939 if (aRet.hasValue()) in convertToSimpleType()
940 return aRet; in convertToSimpleType()