Lines Matching refs:aRet
71 Any aRet = ContentResultSetWrapper::queryInterface( rType ); in XINTERFACE_COMMON_IMPL() local
72 if( aRet.hasValue() ) in XINTERFACE_COMMON_IMPL()
73 return aRet; in XINTERFACE_COMMON_IMPL()
75 aRet = cppu::queryInterface( rType in XINTERFACE_COMMON_IMPL()
82 return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); in XINTERFACE_COMMON_IMPL()
255 FetchResult aRet; \
256 aRet.StartIndex = nRowStartPosition; \
257 aRet.Orientation = bDirection; \
258 aRet.FetchError = FetchError::SUCCESS; /*ENDOFDATA, EXCEPTION*/ \
265 aRet.FetchError = FetchError::EXCEPTION; \
266 return aRet; \
269 aRet.FetchError = FetchError::EXCEPTION; \
271 aRet.Rows.realloc( 1 ); \
275 impl_loadRow( aRet.Rows[0], loadInterface ); \
279 aRet.Rows.realloc( 0 ); \
280 aRet.FetchError = FetchError::EXCEPTION; \
281 return aRet; \
283 return aRet; \
285 aRet.Rows.realloc( nRowCount ); \
300 aRet.Rows.realloc( 0 ); \
301 aRet.FetchError = FetchError::EXCEPTION; \
302 return aRet; \
306 aRet.Rows.realloc( 0 ); \
307 aRet.FetchError = FetchError::EXCEPTION; \
317 return aRet; \
321 impl_loadRow( aRet.Rows[nN-1], loadInterface ); \
329 aRet.Rows.realloc( nN-1 ); \
330 aRet.FetchError = FetchError::ENDOFDATA; \
338 aRet.Rows.realloc( nN-1 ); \
339 aRet.FetchError = FetchError::ENDOFDATA; \
348 aRet.Rows.realloc( nN-1 ); \
349 aRet.FetchError = FetchError::EXCEPTION; \
358 return aRet;