Lines Matching refs:rValue

78 sal_Int32 AttributeConversion::decodeToken( const OUString& rValue )  in decodeToken()  argument
80 return StaticTokenMap::get().getTokenFromUnicode( rValue ); in decodeToken()
83 OUString AttributeConversion::decodeXString( const OUString& rValue ) in decodeXString() argument
86 if( rValue.getLength() < XSTRING_ENCCHAR_LEN ) in decodeXString()
87 return rValue; in decodeXString()
89 const sal_Unicode* pcStr = rValue.getStr(); in decodeXString()
90 const sal_Unicode* pcEnd = pcStr + rValue.getLength(); in decodeXString()
96 double AttributeConversion::decodeDouble( const OUString& rValue ) in decodeDouble() argument
98 return rValue.toDouble(); in decodeDouble()
101 sal_Int32 AttributeConversion::decodeInteger( const OUString& rValue ) in decodeInteger() argument
103 return rValue.toInt32(); in decodeInteger()
106 sal_uInt32 AttributeConversion::decodeUnsigned( const OUString& rValue ) in decodeUnsigned() argument
108 return getLimitedValue< sal_uInt32, sal_Int64 >( rValue.toInt64(), 0, SAL_MAX_UINT32 ); in decodeUnsigned()
111 sal_Int64 AttributeConversion::decodeHyper( const OUString& rValue ) in decodeHyper() argument
113 return rValue.toInt64(); in decodeHyper()
116 sal_Int32 AttributeConversion::decodeIntegerHex( const OUString& rValue ) in decodeIntegerHex() argument
118 return rValue.toInt32( 16 ); in decodeIntegerHex()
121 sal_uInt32 AttributeConversion::decodeUnsignedHex( const OUString& rValue ) in decodeUnsignedHex() argument
123 return getLimitedValue< sal_uInt32, sal_Int64 >( rValue.toInt64( 16 ), 0, SAL_MAX_UINT32 ); in decodeUnsignedHex()
126 sal_Int64 AttributeConversion::decodeHyperHex( const OUString& rValue ) in decodeHyperHex() argument
128 return rValue.toInt64( 16 ); in decodeHyperHex()