Lines Matching refs:out

84 	void testout_methodByte( [out] byte rOut );
85 void testout_methodFloat( [out] float rOut);
86 void testout_methodDouble( [out] double rOut);
87 void testout_methodBool( [out] boolean rOut);
88 void testout_methodShort( [out] short rOut);
89 void testout_methodUShort( [out] unsigned short rOut);
90 void testout_methodLong( [out] long rOut);
91 void testout_methodULong( [out] unsigned long rOut);
92 void testout_methodHyper( [out] hyper rOut);
93 void testout_methodUHyper( [out] unsigned hyper rOut);
94 void testout_methodString( [out] string rOut);
95 void testout_methodChar( [out] char rOut);
96 void testout_methodAny ( [out] any rOut);
97 void testout_methodType ( [out] type rOut);
98 void testout_methodSequence( [out] sequence< long > rOut);
99 void testout_methodSequence2( [out] sequence < sequence< long > > rOut);
100 void testout_methodXInterface( [out] com::sun::star::uno::XInterface rOut);
102 void testout_methodMulParams1( [out] long rout1, [out] long rout2);
103 void testout_methodMulParams2( [out] long rout1, [out] long rout2, [out] string rout3);
104 void testout_methodMulParams3( [in] string sin, [out] string sout);
105 …void testout_methodMulParams4( [in] float in1, [out] float out1, [in] long in2, [out] long out2, […
184 void other_methodAnyOut( [out] any rAny);
216 void outInterface( [out] oletest::XSimple outInterface);
217 void outStruct( [out] oletest::SimpleStruct outStruct);
218 void outEnum( [out] oletest::SimpleEnum outEnum);
219 void outSeqAny( [out] sequence<any> outSeqAny);
220 void outSeqByte( [out] sequence<byte> outVal);
221 void outAny( [out] any outAny);
222 void outBool( [out] boolean outBool);
223 void outChar( [out] char outChar);
224 void outString( [out] string outString);
225 void outFloat( [out] float outFloat);
226 void outDouble( [out] double outDouble);
227 void outByte( [out] byte outByte);
228 void outShort( [out] short outShort);
229 void outLong( [out] long outLong);
230 void outValuesMixed( [in] long lval, [out] long outval, [in] string sval);
231 void outValuesAll( [out] oletest::XSimple outInterface,
232 [out] SimpleStruct outStruct ,
233 [out] SimpleEnum outEnum,
234 [out] sequence<any> outSeqAny,
235 [out] any outAny,
236 [out] boolean outBool,
237 [out] char outChar,
238 [out] string outString,
239 [out] float outFloat,
240 [out] double outDouble,
241 [out] byte outByte,
242 [out] short outShort,
243 [out] long outLong);