Lines Matching refs:rIn

257     virtual Any SAL_CALL methodAnyTest1(const Any& rIn) throw( RuntimeException ) ;
303 virtual sal_Int8 SAL_CALL in_methodByte( sal_Int8 rIn ) throw (RuntimeException);
304 virtual float SAL_CALL in_methodFloat( float rIn ) throw (RuntimeException);
305 virtual double SAL_CALL in_methodDouble( double rIn ) throw (RuntimeException);
306 virtual sal_Bool SAL_CALL in_methodBool( sal_Bool rIn ) throw (RuntimeException);
307 virtual sal_Int16 SAL_CALL in_methodShort( sal_Int16 rIn ) throw (RuntimeException);
308 virtual sal_uInt16 SAL_CALL in_methodUShort( sal_uInt16 rIn ) throw (RuntimeException);
309 virtual sal_Int32 SAL_CALL in_methodLong( sal_Int32 rIn ) throw (RuntimeException);
310 virtual sal_uInt32 SAL_CALL in_methodULong( sal_uInt32 rIn ) throw (RuntimeException);
311 virtual sal_Int64 SAL_CALL in_methodHyper( sal_Int64 rIn ) throw (RuntimeException);
312 virtual sal_uInt64 SAL_CALL in_methodUHyper( sal_uInt64 rIn ) throw (RuntimeException);
313 virtual OUString SAL_CALL in_methodString( const OUString& rIn ) throw (RuntimeException);
314 virtual sal_Unicode SAL_CALL in_methodChar( sal_Unicode rIn ) throw (RuntimeException);
315 virtual Any SAL_CALL in_methodAny( const Any& rIn ) throw (RuntimeException);
316 virtual Type SAL_CALL in_methodType( const Type& rIn ) throw (RuntimeException);
317 …virtual Reference<XInterface> SAL_CALL in_methodXInterface( const Reference< XInterface >& rIn ) t…
998 sal_Int8 SAL_CALL OComponent::in_methodByte( sal_Int8 rIn ) throw (RuntimeException) in in_methodByte() argument
1000 m_int8 = rIn; in in_methodByte()
1001 return rIn; in in_methodByte()
1003 float SAL_CALL OComponent::in_methodFloat( float rIn ) throw (RuntimeException) in in_methodFloat() argument
1005 m_float = rIn; in in_methodFloat()
1006 return rIn; in in_methodFloat()
1008 double SAL_CALL OComponent::in_methodDouble( double rIn ) throw (RuntimeException) in in_methodDouble() argument
1010 m_double = rIn; in in_methodDouble()
1011 return rIn; in in_methodDouble()
1013 sal_Bool SAL_CALL OComponent::in_methodBool( sal_Bool rIn ) throw (RuntimeException) in in_methodBool() argument
1015 m_bool = rIn; in in_methodBool()
1016 return rIn; in in_methodBool()
1018 sal_Int16 SAL_CALL OComponent::in_methodShort( sal_Int16 rIn ) throw (RuntimeException) in in_methodShort() argument
1020 m_int16 = rIn; in in_methodShort()
1021 return rIn; in in_methodShort()
1023 sal_uInt16 SAL_CALL OComponent::in_methodUShort( sal_uInt16 rIn ) throw (RuntimeException) in in_methodUShort() argument
1025 m_uint16 = rIn; in in_methodUShort()
1026 return rIn; in in_methodUShort()
1028 sal_Int32 SAL_CALL OComponent::in_methodLong( sal_Int32 rIn ) throw (RuntimeException) in in_methodLong() argument
1030 m_int32 = rIn; in in_methodLong()
1031 return rIn; in in_methodLong()
1033 sal_uInt32 SAL_CALL OComponent::in_methodULong( sal_uInt32 rIn ) throw (RuntimeException) in in_methodULong() argument
1035 m_uint32 = rIn; in in_methodULong()
1036 return rIn; in in_methodULong()
1038 sal_Int64 SAL_CALL OComponent::in_methodHyper( sal_Int64 rIn ) throw (RuntimeException) in in_methodHyper() argument
1040 m_int64 = rIn; in in_methodHyper()
1041 return rIn; in in_methodHyper()
1044 sal_uInt64 SAL_CALL OComponent::in_methodUHyper( sal_uInt64 rIn ) throw (RuntimeException) in in_methodUHyper() argument
1046 m_uint64 = rIn; in in_methodUHyper()
1047 return rIn; in in_methodUHyper()
1050 OUString SAL_CALL OComponent::in_methodString( const OUString& rIn ) throw (RuntimeException) in in_methodString() argument
1052 m_string = rIn; in in_methodString()
1053 return rIn; in in_methodString()
1055 sal_Unicode SAL_CALL OComponent::in_methodChar( sal_Unicode rIn ) throw (RuntimeException) in in_methodChar() argument
1057 m_char = rIn; in in_methodChar()
1058 return rIn; in in_methodChar()
1060 Any SAL_CALL OComponent::in_methodAny( const Any& rIn ) throw (RuntimeException) in in_methodAny() argument
1062 m_any = rIn; in in_methodAny()
1063 return rIn; in in_methodAny()
1066 Type SAL_CALL OComponent::in_methodType( const Type& rIn ) throw (RuntimeException) in in_methodType() argument
1068 m_type = rIn; in in_methodType()
1069 return rIn; in in_methodType()
1095 Reference<XInterface> SAL_CALL OComponent::in_methodXInterface( const Reference<XInterface >& rIn )… in in_methodXInterface() argument
1097 m_xinterface = rIn; in in_methodXInterface()
1098 return rIn; in in_methodXInterface()
1261 Any SAL_CALL OComponent::methodAnyTest1(const Any& rIn) throw( RuntimeException ) in methodAnyTest1() argument
1263 return rIn; in methodAnyTest1()