Lines Matching refs:rValue

137     const OUString& rValue )  in HandleAttribute()  argument
141 msBaseName = rValue; in HandleAttribute()
147 Any lcl_string( const OUString& rValue ) in lcl_string() argument
149 return makeAny( rValue ); in lcl_string()
152 Any lcl_int32( const OUString& rValue ) in lcl_int32() argument
155 bool bSuccess = SvXMLUnitConverter::convertNumber( nValue, rValue ); in lcl_int32()
159 Any lcl_int16( const OUString& rValue ) in lcl_int16() argument
162 bool bSuccess = SvXMLUnitConverter::convertNumber( nValue, rValue ); in lcl_int16()
166 Any lcl_whitespace( const OUString& rValue ) in lcl_whitespace() argument
169 if( IsXMLToken( rValue, XML_PRESERVE ) ) in lcl_whitespace()
171 else if( IsXMLToken( rValue, XML_REPLACE ) ) in lcl_whitespace()
173 else if( IsXMLToken( rValue, XML_COLLAPSE ) ) in lcl_whitespace()
178 Any lcl_double( const OUString& rValue ) in lcl_double() argument
181 bool bSuccess = SvXMLUnitConverter::convertDouble( fValue, rValue ); in lcl_double()
185 Any lcl_date( const OUString& rValue ) in lcl_date() argument
190 sal_Int32 nPos1 = rValue.indexOf( sal_Unicode('-') ); in lcl_date()
191 sal_Int32 nPos2 = rValue.indexOf( sal_Unicode('-'), nPos1 + 1 ); in lcl_date()
196 rValue.copy( 0, nPos1 ).toInt32() ); in lcl_date()
198 rValue.copy( nPos1 + 1, nPos2 - nPos1 - 1 ).toInt32() ); in lcl_date()
200 rValue.copy( nPos2 + 1 ).toInt32() ); in lcl_date()
206 Any lcl_dateTime( const OUString& rValue ) in lcl_dateTime() argument
209 bool bSuccess = SvXMLUnitConverter::convertDateTime( aDateTime, rValue ); in lcl_dateTime()
213 Any lcl_time( const OUString& rValue ) in lcl_time() argument
217 if( SvXMLUnitConverter::convertTime( aDateTime, rValue ) ) in lcl_time()