Lines Matching refs:getValue

356 		nRet = *(sal_Int32 *)rAny.getValue();  in toHyper()
360 nRet = (*(sal_Bool*)rAny.getValue() ? 1 : 0); in toHyper()
364 nRet = *(sal_Unicode *)rAny.getValue(); in toHyper()
367 nRet = *(sal_Int8 *)rAny.getValue(); in toHyper()
371 nRet = *(sal_Int16 *)rAny.getValue(); in toHyper()
375 nRet = *(sal_uInt16 *)rAny.getValue(); in toHyper()
379 nRet = *(sal_Int32 *)rAny.getValue(); in toHyper()
383 nRet = *(sal_uInt32 *)rAny.getValue(); in toHyper()
387 nRet = *(sal_Int64 *)rAny.getValue(); in toHyper()
392 nRet = *(sal_Int64 *)rAny.getValue(); in toHyper()
406 double fVal = round( *(float *)rAny.getValue() ); in toHyper()
418 double fVal = round( *(double *)rAny.getValue() ); in toHyper()
433 if (! getHyperValue( fVal, *(OUString const *)rAny.getValue() )) in toHyper()
471 fRet = *(sal_Int32 *)rAny.getValue(); in toDouble()
475 fRet = (*(sal_Bool*)rAny.getValue() ? 1.0 : 0.0); in toDouble()
479 fRet = *(sal_Unicode *)rAny.getValue(); in toDouble()
482 fRet = *(sal_Int8 *)rAny.getValue(); in toDouble()
486 fRet = *(sal_Int16 *)rAny.getValue(); in toDouble()
490 fRet = *(sal_uInt16 *)rAny.getValue(); in toDouble()
494 fRet = *(sal_Int32 *)rAny.getValue(); in toDouble()
498 fRet = *(sal_uInt32 *)rAny.getValue(); in toDouble()
502 fRet = (double)*(sal_Int64 *)rAny.getValue(); in toDouble()
506 fRet = unsigned_int64_to_double( *(sal_uInt64 const *)rAny.getValue() ); in toDouble()
510 fRet = *(float *)rAny.getValue(); in toDouble()
513 fRet = *(double *)rAny.getValue(); in toDouble()
519 if (! getNumericValue( fRet, *(OUString *)rAny.getValue() )) in toDouble()
574 aRet.setValue( rVal.getValue(), aDestTD.get() ); // evtl. .uP.cAsT. in convertTo()
597 !*(XInterface * const *)rVal.getValue()) in convertTo()
603 if (! (aRet = (*(XInterface * const *)rVal.getValue())->queryInterface( in convertTo()
631 sal_uInt32 nPos = (*(const uno_Sequence * const *)rVal.getValue())->nElements; in convertTo()
642 char * pDestElements = (*(uno_Sequence * const *)aRet.getValue())->elements; in convertTo()
644 (*(const uno_Sequence * const *)rVal.getValue())->elements; in convertTo()
658 : const_cast< void * >( aElement.getValue() )), in convertTo()
684 if (((const OUString *)rVal.getValue())->equalsIgnoreAsciiCase( in convertTo()
794 const OUString & aStr = *(const OUString *)rVal.getValue(); in convertToSimpleType()
822 if ((*(const OUString *)rVal.getValue()).getLength() == 1) // single char in convertToSimpleType()
823 aRet.setValue( (*(const OUString *)rVal.getValue()).getStr(), ::getCharCppuType() ); in convertToSimpleType()
878 sal_Int32 nEnumValue = *(sal_Int32 *)rVal.getValue(); 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()