Lines Matching refs:rOut

217     virtual void SAL_CALL testout_methodByte(sal_Int8& rOut) throw( RuntimeException );
218 virtual void SAL_CALL testout_methodFloat(float& rOut) throw( RuntimeException );
219 virtual void SAL_CALL testout_methodDouble(double& rOut) throw( RuntimeException );
220 virtual void SAL_CALL testout_methodBool(sal_Bool& rOut) throw( RuntimeException );
221 virtual void SAL_CALL testout_methodShort(sal_Int16& rOut) throw( RuntimeException );
222 virtual void SAL_CALL testout_methodUShort(sal_uInt16& rOut) throw( RuntimeException );
223 virtual void SAL_CALL testout_methodLong(sal_Int32& rOut) throw( RuntimeException );
224 virtual void SAL_CALL testout_methodULong(sal_uInt32& rOut) throw( RuntimeException );
225 virtual void SAL_CALL testout_methodHyper(sal_Int64& rOut) throw( RuntimeException );
226 virtual void SAL_CALL testout_methodUHyper(sal_uInt64& rOut) throw( RuntimeException );
227 virtual void SAL_CALL testout_methodString(OUString& rOut) throw( RuntimeException );
228 virtual void SAL_CALL testout_methodChar(sal_Unicode& rOut) throw( RuntimeException );
229 virtual void SAL_CALL testout_methodAny(Any& rOut) throw( RuntimeException );
230 virtual void SAL_CALL testout_methodType(Type& rOut) throw( RuntimeException );
231 …virtual void SAL_CALL testout_methodSequence(Sequence< sal_Int32 >& rOut) throw( RuntimeException …
232 …virtual void SAL_CALL testout_methodSequence2(Sequence< Sequence< sal_Int32 > >& rOut) throw( Runt…
237 …virtual void SAL_CALL testout_methodXInterface( Reference< XInterface >& rOut ) throw(RuntimeExcep…
239 virtual void SAL_CALL testinout_methodByte(sal_Int8& rOut) throw( RuntimeException );
240 virtual void SAL_CALL testinout_methodFloat(float& rOut) throw( RuntimeException );
241 virtual void SAL_CALL testinout_methodDouble(double& rOut) throw( RuntimeException );
242 virtual void SAL_CALL testinout_methodBool(sal_Bool& rOut) throw( RuntimeException );
243 virtual void SAL_CALL testinout_methodShort(sal_Int16& rOut) throw( RuntimeException );
244 virtual void SAL_CALL testinout_methodUShort(sal_uInt16& rOut) throw( RuntimeException );
245 virtual void SAL_CALL testinout_methodLong(sal_Int32& rOut) throw( RuntimeException );
246 virtual void SAL_CALL testinout_methodULong(sal_uInt32& rOut) throw( RuntimeException );
247 virtual void SAL_CALL testinout_methodHyper(sal_Int64& rOut) throw( RuntimeException );
248 virtual void SAL_CALL testinout_methodUHyper(sal_uInt64& rOut) throw( RuntimeException );
249 virtual void SAL_CALL testinout_methodString(OUString& rOut) throw( RuntimeException );
250 virtual void SAL_CALL testinout_methodChar(sal_Unicode& rOut) throw( RuntimeException );
251 virtual void SAL_CALL testinout_methodAny(Any& rOut) throw( RuntimeException );
252 virtual void SAL_CALL testinout_methodType(Type& rOut) throw( RuntimeException );
253 …virtual void SAL_CALL testinout_methodSequence(Sequence< sal_Int32 >& rOut) throw( RuntimeExceptio…
254 …virtual void SAL_CALL testinout_methodSequence2(Sequence< Sequence< sal_Int32 > >& rOut) throw( Ru…
255 …virtual void SAL_CALL testinout_methodXInterface( Reference< XInvocation >& rOut ) throw(RuntimeEx…
256 …virtual void SAL_CALL testinout_methodXInterface2( Reference< XInterface > & rOut) throw( RuntimeE…
891 void SAL_CALL OComponent::testout_methodByte(sal_Int8& rOut) throw( RuntimeException ) in testout_methodByte() argument
893 rOut= m_int8; in testout_methodByte()
895 void SAL_CALL OComponent::testout_methodFloat(float& rOut) throw( RuntimeException ) in testout_methodFloat() argument
897 rOut= m_float; in testout_methodFloat()
899 void SAL_CALL OComponent::testout_methodDouble(double& rOut) throw( RuntimeException ) in testout_methodDouble() argument
901 rOut= m_double; in testout_methodDouble()
904 void SAL_CALL OComponent::testout_methodBool(sal_Bool& rOut) throw( RuntimeException ) in testout_methodBool() argument
906 rOut= m_bool; in testout_methodBool()
908 void SAL_CALL OComponent::testout_methodShort(sal_Int16& rOut) throw( RuntimeException ) in testout_methodShort() argument
910 rOut= m_int16; in testout_methodShort()
912 void SAL_CALL OComponent::testout_methodUShort(sal_uInt16& rOut) throw( RuntimeException ) in testout_methodUShort() argument
914 rOut= m_uint16; in testout_methodUShort()
916 void SAL_CALL OComponent::testout_methodLong(sal_Int32& rOut) throw( RuntimeException ) in testout_methodLong() argument
918 rOut = m_int32; in testout_methodLong()
920 void SAL_CALL OComponent::testout_methodULong(sal_uInt32& rOut) throw( RuntimeException ) in testout_methodULong() argument
922 rOut= m_uint32; in testout_methodULong()
924 void SAL_CALL OComponent::testout_methodHyper(sal_Int64& rOut) throw( RuntimeException ) in testout_methodHyper() argument
926 rOut = m_int64; in testout_methodHyper()
929 void SAL_CALL OComponent::testout_methodUHyper(sal_uInt64& rOut) throw( RuntimeException ) in testout_methodUHyper() argument
931 rOut = m_uint64; in testout_methodUHyper()
934 void SAL_CALL OComponent::testout_methodString(OUString& rOut) throw( RuntimeException ) in testout_methodString() argument
936 rOut= m_string; in testout_methodString()
938 void SAL_CALL OComponent::testout_methodChar(sal_Unicode& rOut) throw( RuntimeException ) in testout_methodChar() argument
940 rOut= m_char; in testout_methodChar()
942 void SAL_CALL OComponent::testout_methodAny(Any& rOut) throw( RuntimeException) in testout_methodAny() argument
944 rOut = m_any; in testout_methodAny()
947 void SAL_CALL OComponent::testout_methodType(Type& rOut) throw( RuntimeException ) in testout_methodType() argument
949 rOut = m_type; in testout_methodType()
952 void SAL_CALL OComponent::testout_methodSequence(Sequence< sal_Int32 >& rOut) throw( RuntimeExcepti… in testout_methodSequence() argument
954 rOut.realloc(10); in testout_methodSequence()
955 for( sal_Int16 i= 0; i < rOut.getLength(); i++) rOut.getArray()[i]= i; in testout_methodSequence()
957 void SAL_CALL OComponent::testout_methodSequence2(Sequence< Sequence< sal_Int32 > >& rOut) throw( R… in testout_methodSequence2() argument
959 rOut.realloc( 10); in testout_methodSequence2()
960 for( sal_Int16 i= 0; i < rOut.getLength(); i++){ in testout_methodSequence2()
961 Sequence<sal_Int32>& rseq2= rOut.getArray()[i]; in testout_methodSequence2()
989 void SAL_CALL OComponent::testout_methodXInterface( Reference< XInterface >& rOut ) throw(RuntimeEx… in testout_methodXInterface() argument
991 rOut = m_xinterface; in testout_methodXInterface()
1117 void SAL_CALL OComponent::testinout_methodByte(sal_Int8& rOut) throw( RuntimeException ) in testinout_methodByte() argument
1119 sal_Int8 tmp = rOut; in testinout_methodByte()
1120 rOut = m_int8; in testinout_methodByte()
1123 void SAL_CALL OComponent::testinout_methodFloat(float& rOut) throw( RuntimeException ) in testinout_methodFloat() argument
1125 float tmp = rOut; in testinout_methodFloat()
1126 rOut = m_float; in testinout_methodFloat()
1130 void SAL_CALL OComponent::testinout_methodDouble(double& rOut) throw( RuntimeException ) in testinout_methodDouble() argument
1132 double tmp = rOut; in testinout_methodDouble()
1133 rOut = m_double; in testinout_methodDouble()
1136 void SAL_CALL OComponent::testinout_methodBool(sal_Bool& rOut) throw( RuntimeException ) in testinout_methodBool() argument
1138 sal_Bool tmp = rOut; in testinout_methodBool()
1139 rOut = m_bool; in testinout_methodBool()
1142 void SAL_CALL OComponent::testinout_methodShort(sal_Int16& rOut) throw( RuntimeException ) in testinout_methodShort() argument
1144 sal_Int16 tmp= rOut; in testinout_methodShort()
1145 rOut = m_int16; in testinout_methodShort()
1148 void SAL_CALL OComponent::testinout_methodUShort(sal_uInt16& rOut) throw( RuntimeException ) in testinout_methodUShort() argument
1150 sal_uInt16 tmp = rOut; in testinout_methodUShort()
1151 rOut = m_uint16; in testinout_methodUShort()
1154 void SAL_CALL OComponent::testinout_methodLong(sal_Int32& rOut) throw( RuntimeException ) in testinout_methodLong() argument
1156 sal_Int32 tmp = rOut; in testinout_methodLong()
1157 rOut = m_int32; in testinout_methodLong()
1160 void SAL_CALL OComponent::testinout_methodULong(sal_uInt32& rOut) throw( RuntimeException ) in testinout_methodULong() argument
1162 sal_uInt32 tmp = rOut; in testinout_methodULong()
1163 rOut = m_uint32; in testinout_methodULong()
1166 void SAL_CALL OComponent::testinout_methodHyper(sal_Int64& rOut) throw( RuntimeException ) in testinout_methodHyper() argument
1168 sal_Int64 tmp = rOut; in testinout_methodHyper()
1169 rOut = m_int64; in testinout_methodHyper()
1173 void SAL_CALL OComponent::testinout_methodUHyper(sal_uInt64& rOut) throw( RuntimeException ) in testinout_methodUHyper() argument
1175 sal_uInt64 tmp = rOut; in testinout_methodUHyper()
1176 rOut = m_uint64; in testinout_methodUHyper()
1180 void SAL_CALL OComponent::testinout_methodString(OUString& rOut) throw( RuntimeException ) in testinout_methodString() argument
1182 OUString tmp = rOut; in testinout_methodString()
1183 rOut = m_string; in testinout_methodString()
1186 void SAL_CALL OComponent::testinout_methodChar(sal_Unicode& rOut) throw( RuntimeException) in testinout_methodChar() argument
1188 sal_Unicode tmp = rOut; in testinout_methodChar()
1189 rOut = m_char; in testinout_methodChar()
1192 void SAL_CALL OComponent::testinout_methodAny(Any& rOut) throw( RuntimeException) in testinout_methodAny() argument
1194 Any tmp = rOut; in testinout_methodAny()
1195 rOut = m_any; in testinout_methodAny()
1198 void SAL_CALL OComponent::testinout_methodType(Type& rOut) throw( RuntimeException) in testinout_methodType() argument
1200 Type tmp = rOut; in testinout_methodType()
1201 rOut = m_type; in testinout_methodType()
1206 void SAL_CALL OComponent::testinout_methodSequence(Sequence< sal_Int32 >& rOut) throw( RuntimeExcep… in testinout_methodSequence() argument
1209 sal_Int32* arr= rOut.getArray(); in testinout_methodSequence()
1210 for ( sal_Int32 i=0; i < rOut.getLength(); i++) in testinout_methodSequence()
1212 rOut.getArray()[i] += 1; in testinout_methodSequence()
1215 void SAL_CALL OComponent::testinout_methodSequence2(Sequence< Sequence< sal_Int32 > >& rOut) throw(… in testinout_methodSequence2() argument
1217 for( sal_Int32 i=0; i < rOut.getLength(); i++) in testinout_methodSequence2()
1219 Sequence< sal_Int32 >& seq= rOut.getArray()[i]; in testinout_methodSequence2()
1229 void SAL_CALL OComponent::testinout_methodXInterface( Reference< XInvocation >& rOut ) throw(Runtim… in testinout_methodXInterface() argument
1232 any= rOut->getValue( OUString( L"value")); in testinout_methodXInterface()
1237 rOut->setValue( OUString(L"value"), any); in testinout_methodXInterface()
1239 any= rOut->getValue( OUString( L"value")); in testinout_methodXInterface()
1244 void SAL_CALL OComponent::testinout_methodXInterface2( Reference< XInterface > & rOut) throw( Runti… in testinout_methodXInterface2() argument
1246 Reference<XInterface> tmp = rOut; in testinout_methodXInterface2()
1247 rOut = m_xinterface; in testinout_methodXInterface2()