Searched refs:nCallId (Results  1 – 8 of 8) sorted by relevance
| /trunk/main/testtools/source/bridgetest/cli/ | 
| H A D | cli_vb_testobj.vb | 378     Public Overridable Sub [call](nCallId As Integer, nWaitMUSEC As Integer) _385             m_bSequenceOfCallTestPassed = m_bSequenceOfCallTestPassed And (nCallId > m_nLastCallId)
 387         m_nLastCallId = nCallId
 390     Public Overridable Sub callOneway(nCallId As Integer, nWaitMUSEC As Integer) _
 394         m_bSequenceOfCallTestPassed = m_bSequenceOfCallTestPassed And (nCallId > m_nLastCallId)
 395         m_nLastCallId = nCallId
 
 | 
| H A D | cli_cs_testobj.cs | 345     public void call(int nCallId , int nWaitMUSEC)  in call()  argument353             _bSequenceOfCallTestPassed = _bSequenceOfCallTestPassed && (nCallId > _nLastCallId);  in call()
 355         _nLastCallId = nCallId;  in call()
 357     public void callOneway( int nCallId , int nWaitMUSEC )  in callOneway()  argument
 361         _bSequenceOfCallTestPassed = _bSequenceOfCallTestPassed && (nCallId > _nLastCallId);  in callOneway()
 362         _nLastCallId = nCallId;  in callOneway()
 
 | 
| /trunk/main/testtools/source/bridgetest/ | 
| H A D | cppobj.cxx | 360     virtual void SAL_CALL call( sal_Int32 nCallId, sal_Int32 nWaitMUSEC )362     virtual void SAL_CALL callOneway( sal_Int32 nCallId, sal_Int32 nWaitMUSEC )
 487 void Test_Impl::call( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw(::com::sun::star::uno::Runti…  in call()  argument
 497 		m_bSequenceOfCallTestPassed = m_bSequenceOfCallTestPassed && (nCallId > m_nLastCallId);  in call()
 499 	m_nLastCallId = nCallId;  in call()
 503 void Test_Impl::callOneway( sal_Int32 nCallId , sal_Int32 nWaitMUSEC ) throw (::com::sun::star::uno…  in callOneway()  argument
 507 	m_bSequenceOfCallTestPassed = m_bSequenceOfCallTestPassed && (nCallId > m_nLastCallId);  in callOneway()
 508 	m_nLastCallId = nCallId;  in callOneway()
 
 | 
| /trunk/main/testtools/com/sun/star/comp/bridge/ | 
| H A D | TestComponent.java | 704 		public void call(int nCallId , int nWaitMUSEC) throws com.sun.star.uno.RuntimeException {  in call()  argument718 				_bSequenceOfCallTestPassed = _bSequenceOfCallTestPassed && (nCallId > _nLastCallId);  in call()
 720 			_nLastCallId = nCallId;  in call()
 723 		public void callOneway( int nCallId , int nWaitMUSEC )  throws com.sun.star.uno.RuntimeException {  in callOneway()  argument
 733 			_bSequenceOfCallTestPassed = _bSequenceOfCallTestPassed && (nCallId > _nLastCallId);  in callOneway()
 734 			_nLastCallId = nCallId;  in callOneway()
 
 | 
| /trunk/main/testtools/source/bridgetest/pyuno/ | 
| H A D | samplecomponent.py | 104       def callOneway( self, nCallId, nWaitMUSEC ):  argument105 	  call( nCallId, nWaitMUSEC )
 
 | 
| /trunk/main/basic/source/runtime/ | 
| H A D | stdobj.cxx | 744 		sal_uInt16 nCallId = (sal_uInt16) pVar->GetUserData();  in SFX_NOTIFY()  local745 		if( nCallId )  in SFX_NOTIFY()
 756 					RtlCall p = (RtlCall) aMethods[ nCallId-1 ].pFunc;  in SFX_NOTIFY()
 
 | 
| /trunk/main/udkapi/com/sun/star/test/bridge/ | 
| H A D | XBridgeTest.idl | 187 	void call( [in] long nCallId, [in] long nWaitMUSEC );188 	[oneway] void callOneway( [in] long nCallId, [in] long nWaitMUSEC );
 
 | 
| /trunk/main/testtools/source/bridgetest/idl/ | 
| H A D | bridgetest.idl | 325     void call( [in] long nCallId, [in] long nWaitMUSEC );326     [oneway] void callOneway( [in] long nCallId, [in] long nWaitMUSEC );
 
 | 
        Completed in 296 milliseconds