Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 952) sorted by relevance

12345678910>>...39

/AOO41X/main/l10ntools/source/
H A Dsrclex.l77 ^[\t ]*"#pragma".* {
81 ^[ \t]*\n {
85 [\t ]+ |
86 ^[\t ]*"#include".* |
87 ^[\t ]*"#undef".* |
115 ^[\t ]*"#ifndef".+$ |
116 ^[\t ]*"#ifdef".+$ |
117 ^[\t ]*"#if".+$ |
118 ^[\t ]*"#elif".*$ |
119 ^[\t ]*"#else".*$ |
[all …]
/AOO41X/main/connectivity/source/drivers/jdbc/
H A DCallableStatement.cxx90 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getByte() local
91 createStatement(t.pEnv); in getByte()
102 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getBytes() local
103 createStatement(t.pEnv); in getBytes()
105 …jbyteArray out = (jbyteArray)callObjectMethodWithIntArg(t.pEnv,"getBytes","(I)[B", mID, columnInde… in getBytes()
109 aSeq.realloc(t.pEnv->GetArrayLength(out)); in getBytes()
110 memcpy(aSeq.getArray(),t.pEnv->GetByteArrayElements(out,&p),aSeq.getLength()); in getBytes()
111 t.pEnv->DeleteLocalRef(out); in getBytes()
117 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getDate() local
118 createStatement(t.pEnv); in getDate()
[all …]
H A DObject.cxx134 SDBThreadAttach t; in ~java_lang_Object() local
135 clearObject(*t.pEnv); in ~java_lang_Object()
152 SDBThreadAttach t; in clearObject() local
153 clearObject(*t.pEnv); in clearObject()
243 SDBThreadAttach t; in callBooleanMethod() local
244 OSL_ENSURE( t.pEnv, "java_lang_Object::callBooleanMethod: no Java enviroment anymore!" ); in callBooleanMethod()
245 obtainMethodId(t.pEnv, _pMethodName,"()Z", _inout_MethodID); in callBooleanMethod()
247 out = t.pEnv->CallBooleanMethod( object, _inout_MethodID ); in callBooleanMethod()
248 ThrowSQLException( t.pEnv, NULL ); in callBooleanMethod()
256 SDBThreadAttach t; in callBooleanMethodWithIntArg() local
[all …]
H A DPreparedStatement.cxx126 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in setString() local
128 createStatement(t.pEnv); in setString()
133 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in setString()
134 jdbc::LocalRef< jstring > str( t.env(),convertwchar_tToJavaString(t.pEnv,x)); in setString()
135 t.pEnv->CallVoidMethod( object, mID, parameterIndex,str.get()); in setString()
137 ThrowLoggedSQLException( m_aLogger, t.pEnv, *this ); in setString()
154 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in executeQuery() local
155 createStatement(t.pEnv); in executeQuery()
157 jobject out = callResultSetMethod(t.env(),"executeQuery",mID); in executeQuery()
159 return out==0 ? 0 : new java_sql_ResultSet( t.pEnv, out, m_aLogger, *m_pConnection,this); in executeQuery()
[all …]
H A DJStatement.cxx159 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getGeneratedValues() local
160 createStatement(t.pEnv); in getGeneratedValues()
165 out = callResultSetMethod(t.env(),"getGeneratedKeys",mID); in getGeneratedValues()
189 xRes = new java_sql_ResultSet( t.pEnv, out, m_aLogger,*m_pConnection, this ); in getGeneratedValues()
197 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in cancel() local
198 createStatement(t.pEnv); in cancel()
217 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in clearBatch() local
220 createStatement(t.pEnv); in clearBatch()
234 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in execute() local
236 createStatement(t.pEnv); in execute()
[all …]
H A DResultSet.cxx119 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in disposing() local
122 clearObject(*t.pEnv); in disposing()
156 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getBinaryStream() local
158 …jobject out = callObjectMethodWithIntArg(t.pEnv,"getBinaryStream","(I)Ljava/io/InputStream;", mID,… in getBinaryStream()
161 return out==0 ? 0 : new java_io_InputStream( t.pEnv, out ); in getBinaryStream()
167 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getCharacterStream() local
169 …jobject out = callObjectMethodWithIntArg(t.pEnv,"getCharacterStream","(I)Ljava/io/Reader;", mID, c… in getCharacterStream()
172 return out==0 ? 0 : new java_io_Reader( t.pEnv, out ); in getCharacterStream()
197 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getBytes() local
199 …jbyteArray out = (jbyteArray)callObjectMethodWithIntArg(t.pEnv,"getBytes","(I)[B", mID, columnInde… in getBytes()
[all …]
H A DDatabaseMetaData.cxx124 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getTables() local
129 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in getTables()
130 OSL_VERIFY_RES( !isExceptionOccured(t.pEnv,sal_True),"Exception occured!"); in getTables()
137 …jobjectArray pObjArray = static_cast< jobjectArray >( t.pEnv->NewObjectArray( (jsize)typeFilterCou… in getTables()
138 OSL_VERIFY_RES( !isExceptionOccured( t.pEnv, sal_True ), "Exception occured!" ); in getTables()
148 jstring aT = convertwchar_tToJavaString( t.pEnv, *typeFilter ); in getTables()
149 t.pEnv->SetObjectArrayElement( pObjArray, (jsize)i, aT ); in getTables()
150 OSL_VERIFY_RES( !isExceptionOccured( t.pEnv, sal_True ), "Exception occured!" ); in getTables()
157 t.pEnv->DeleteLocalRef( pObjArray ); in getTables()
158 OSL_VERIFY_RES( !isExceptionOccured( t.pEnv, sal_True ), "Exception occured!" ); in getTables()
[all …]
H A DJConnection.cxx285 SDBThreadAttach t; in ~java_sql_Connection() local
286 clearObject(*t.pEnv); in ~java_sql_Connection()
290 t.pEnv->DeleteGlobalRef( m_pDriverobject ); in ~java_sql_Connection()
293 t.pEnv->DeleteGlobalRef( m_Driver_theClass ); in ~java_sql_Connection()
296 t.releaseRef(); in ~java_sql_Connection()
348 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getMetaData() local
350 jobject out = callObjectMethod(t.pEnv,"getMetaData","()Ljava/sql/DatabaseMetaData;", mID); in getMetaData()
353 xMetaData = new java_sql_DatabaseMetaData( t.pEnv, out, *this ); in getMetaData()
423 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getTypeMap() local
425 /*jobject out = */callObjectMethod(t.pEnv,"getTypeMap","()Ljava/util/Map;", mID); in getTypeMap()
[all …]
H A DArray.cxx64 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getArray() local
67 jobject obj = convertTypeMapToJavaMap(t.pEnv,typeMap); in getArray()
71 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in getArray()
73 out = (jobjectArray)t.pEnv->CallObjectMethod( object, mID, obj); in getArray()
74 ThrowSQLException(t.pEnv,*this); in getArray()
76 t.pEnv->DeleteLocalRef(obj); in getArray()
84 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getArrayAtIndex() local
87 jobject obj = convertTypeMapToJavaMap(t.pEnv,typeMap); in getArrayAtIndex()
92 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in getArrayAtIndex()
93 out = (jobjectArray)t.pEnv->CallObjectMethod( object, mID, index,count,obj); in getArrayAtIndex()
[all …]
H A Dtools.cxx46 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in setProperty() local
52 args[0].l = convertwchar_tToJavaString(t.pEnv,key); in setProperty()
53 args[1].l = convertwchar_tToJavaString(t.pEnv,value); in setProperty()
59 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in setProperty()
60 out = t.pEnv->CallObjectMethod(object, mID, args[0].l,args[1].l); in setProperty()
61 ThrowSQLException(t.pEnv,NULL); in setProperty()
62 t.pEnv->DeleteLocalRef((jstring)args[1].l); in setProperty()
63 t.pEnv->DeleteLocalRef((jstring)args[0].l); in setProperty()
64 ThrowSQLException(t.pEnv,0); in setProperty()
66 t.pEnv->DeleteLocalRef(out); in setProperty()
[all …]
H A DDriverPropertyInfo.cxx72 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in name() local
75 jfieldID id = t.pEnv->GetFieldID(getMyClass(),"name","Ljava/lang/String;"); in name()
77 aStr = JavaString2String(t.pEnv,(jstring)t.pEnv->GetObjectField( object, id)); in name()
85 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in description() local
88 jfieldID id = t.pEnv->GetFieldID(getMyClass(),"description","Ljava/lang/String;"); in description()
90 aStr = JavaString2String(t.pEnv,(jstring)t.pEnv->GetObjectField( object, id)); in description()
98 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in value() local
101 jfieldID id = t.pEnv->GetFieldID(getMyClass(),"value","Ljava/lang/String;"); in value()
103 aStr = JavaString2String(t.pEnv,(jstring)t.pEnv->GetObjectField( object, id)); in value()
111 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in required() local
[all …]
H A DBlob.cxx63 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in length() local
71 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in length()
72 out = t.pEnv->CallLongMethod( object, mID ); in length()
73 ThrowSQLException(t.pEnv,*this); in length()
80 SDBThreadAttach t; OSL_ENSURE(t.pEnv,"Java Enviroment geloescht worden!"); in getBytes() local
88 obtainMethodId(t.pEnv, cMethodName,cSignature, mID); in getBytes()
89 jbyteArray out = (jbyteArray)t.pEnv->CallObjectMethod( object, mID,pos,count); in getBytes()
90 ThrowSQLException(t.pEnv,*this); in getBytes()
94 aSeq.realloc(t.pEnv->GetArrayLength(out)); in getBytes()
95 memcpy(aSeq.getArray(),t.pEnv->GetByteArrayElements(out,&p),aSeq.getLength()); in getBytes()
[all …]
/AOO41X/main/toolkit/doc/layout/
H A DTODO109t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", "layout", "janneke\\vc…
111 …w/source/ui/dialog/localize.sdf | awk -F'\t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\
113t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", "layout", "janneke\\vc…
114t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", "layout", "sc\\uiconfi…
116t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", "layout", "sc\\uiconfi…
118t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", "layout", "sc\\uiconfi…
120t' '{printf "%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", "layout", "svx\\uiconf…
203 compiler in rsc/) don't match the awt toolkit properties
/AOO41X/extras/l10n/source/vi/
H A Dlocalize.sdf31 …sid.src 0 string RID_STR_BRWTITLE_PROPERTIES 0 vi Thuộc tính: …
38 … người dùng. Hơn nữa, mọi chuỗi của ngôn ngữ mặc định được sao chép vào các tài nguyên của những n…
42 …_DLG_MANAGE_LANGUAGE STR_CREATE_LANG 0 vi <Click vào nút 'Thêm' để tạo các tài nguyên n…
44tài nguyên cho ngôn ngữ đã chọn. Mọi chuỗi giao diện người dùng cho ngôn ngữ này sẽ bị xoá.\n\nBạn…
46 … Hãy chọn một ngôn ngữ đã xác định ngôn ngữ giao diện người dùng mặc định. Mọi chuỗi hiện thời có …
49 … Các tài nguyên cho những ngôn ngữ này sẽ được tạo trong thư viện. Các chuỗi của ngôn ngữ giao diệ…
50 …D_DLG_SETDEF_LANGUAGE HID_BASICIDE_SETDEFAULT_LANGUAGE 0 vi Đặt ngôn ngữ giao diện n…
52 …sicprint.src 0 itemlist RID_PRINTDLG_STRLIST 2 0 vi Tất cả các ~trang …
54 …\basidesh.src 0 string RID_STR_FILTER_ALLFILES 0 vi <Tất cả> 2…
56 …sidesh.src 0 string RID_STR_WRONGPASSWORD 0 vi Sai mật khẩu …
[all …]
/AOO41X/main/cppu/qa/
H A Dtest_unotype.cxx84 css::uno::Type t; in testUnoType() local
85 t = ::cppu::UnoType< ::cppu::UnoVoidType >::get(); in testUnoType()
86 CPPUNIT_ASSERT_EQUAL(css::uno::TypeClass_VOID, t.getTypeClass()); in testUnoType()
88 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("void")), t.getTypeName()); in testUnoType()
89 t = ::cppu::UnoType< bool >::get(); in testUnoType()
90 CPPUNIT_ASSERT_EQUAL(css::uno::TypeClass_BOOLEAN, t.getTypeClass()); in testUnoType()
93 t.getTypeName()); in testUnoType()
94 CPPUNIT_ASSERT(::cppu::UnoType< ::sal_Bool >::get() == t); in testUnoType()
95 t = ::cppu::UnoType< ::sal_Int8 >::get(); in testUnoType()
96 CPPUNIT_ASSERT_EQUAL(css::uno::TypeClass_BYTE, t.getTypeClass()); in testUnoType()
[all …]
/AOO41X/main/testtools/source/servicetests/
H A DTestBase.java37 TestService2 t = UnoRuntime.queryInterface( in test() local
39 assure(t != null); in test()
40 assure(UnoRuntime.queryInterface(TestService1.class, t) == t); in test()
41 assure(UnoRuntime.queryInterface(XTestService1.class, t) == t); in test()
42 assure(UnoRuntime.queryInterface(XTestService2.class, t) == t); in test()
43 assure(t.fn1() == 1); in test()
44 assure(t.getProp1() == 1); in test()
45 t.setProp1(0); in test()
46 assure(t.getProp1() == 0); in test()
47 assure(t.getProp2() == 2); in test()
[all …]
/AOO41X/main/vcl/source/fontsubset/
H A Dsft.cxx260 sal_Int16 t; in GetInt16() local
264 t = (ptr+offset)[0] << 8 | (ptr+offset)[1]; in GetInt16()
266 t = (ptr+offset)[1] << 8 | (ptr+offset)[0]; in GetInt16()
269 return t; in GetInt16()
274 sal_uInt16 t; in GetUInt16() local
278 t = (ptr+offset)[0] << 8 | (ptr+offset)[1]; in GetUInt16()
280 t = (ptr+offset)[1] << 8 | (ptr+offset)[0]; in GetUInt16()
283 return t; in GetUInt16()
288 sal_Int32 t; in GetInt32() local
292 t = (ptr+offset)[0] << 24 | (ptr+offset)[1] << 16 | in GetInt32()
[all …]
/AOO41X/main/bridges/test/com/sun/star/lib/uno/bridges/java_remote/
H A DPolyStructTest.java57 TestTransport t = UnoRuntime.queryInterface( in run() local
61 Boolean.FALSE, t.transportBoolean(new TestPolyStruct()).member); in run()
64 t.transportBoolean(new TestPolyStruct(Boolean.FALSE)).member); in run()
67 t.transportBoolean(new TestPolyStruct(Boolean.TRUE)).member); in run()
71 t.transportByte(new TestPolyStruct()).member); in run()
74 t.transportByte( in run()
78 t.transportByte( in run()
83 t.transportShort(new TestPolyStruct()).member); in run()
86 t.transportShort( in run()
90 t.transportShort( in run()
[all …]
/AOO41X/main/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/formula/
H A DTokenEncoder.java81 public byte[] getByte(Token t) throws IOException { in getByte() argument
87 if(t.getTokenType()==ParseToken.TOKEN_OPERATOR) { in getByte()
88 tmpByteArray = operatorEncoder(t); in getByte()
89 …} else if (t.getTokenType()==ParseToken.TOKEN_FUNCTION_VARIABLE || t.getTokenType()==ParseToken.TO… in getByte()
90 tmpByteArray = functionEncoder(t); in getByte()
92 switch(t.getTokenID()) { in getByte()
94 tmpByteArray = nameDefinitionEncoder(t); in getByte()
97 tmpByteArray = threeDCellRefEncoder(t); in getByte()
100 tmpByteArray = threeDAreaRefEncoder(t); in getByte()
103 tmpByteArray = cellRefEncoder(t); in getByte()
[all …]
/AOO41X/main/io/test/stm/
H A Dpumptest.cxx330 TestCase t( m_rSmgr, r ); in testClose() local
332 ERROR_ASSERT( ! t.m_pTestListener->m_bStarted , "started too early" ); in testClose()
333 ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "terminiation unexpected" ); in testClose()
334 ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" ); in testClose()
335 ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" ); in testClose()
337 t.m_rControl->start(); in testClose()
340 ERROR_ASSERT( t.m_pTestListener->m_bStarted , "should have been started already" ); in testClose()
341 ERROR_ASSERT( ! t.m_pTestListener->m_bTerminated , "terminiation unexpected" ); in testClose()
342 ERROR_ASSERT( ! t.m_pTestListener->m_bError, "unexpected error" ); in testClose()
343 ERROR_ASSERT( ! t.m_pTestListener->m_bClosed, "unexpected clase" ); in testClose()
[all …]
/AOO41X/main/forms/source/xforms/
H A Dcollection.hxx78 void setItem( sal_Int32 n, const T& t) in setItem() argument
81 OSL_ENSURE( isValid ( t ), "invalid item" ); in setItem()
84 _elementReplaced( n, t ); in setItem()
86 aRef = t; in setItem()
87 _insert( t ); in setItem()
90 bool hasItem( const T& t ) const in hasItem()
92 return maItems.end() != std::find( maItems.begin(), maItems.end(), t ); in hasItem()
95 sal_Int32 addItem( const T& t ) in addItem() argument
97 OSL_ENSURE( !hasItem( t ), "item to be added already present" ); in addItem()
98 OSL_ENSURE( isValid( t ), "invalid item" ); in addItem()
[all …]
/AOO41X/main/formula/source/core/api/
H A Dtoken.cxx333 FormulaToken* t = pCode[ nIndex++ ]; in GetNextReference() local
334 switch( t->GetType() ) in GetNextReference()
340 return t; in GetNextReference()
354 FormulaToken* t = pCode[ nIndex++ ]; in GetNextColRowName() local
355 if ( t->GetOpCode() == ocColRowName ) in GetNextColRowName()
356 return t; in GetNextColRowName()
365 FormulaToken* t = pRPN[ nIndex++ ]; in GetNextReferenceRPN() local
366 switch( t->GetType() ) in GetNextReferenceRPN()
372 return t; in GetNextReferenceRPN()
388 FormulaToken* t = pCode[ nIndex++ ]; in GetNextReferenceOrName() local
[all …]
/AOO41X/main/toolkit/source/layout/vcl/
H A Dwrapper.hxx90 #define IMPL_GET_IMPL(t) \ argument
91 inline t##Impl &t::getImpl() const \
93 return *(static_cast<t##Impl *>(mpImpl)); \
95 #define IMPL_CONSTRUCTORS_BODY(t,par,unoName,body) \ argument
96 t::t( Context *context, const char *pId, sal_uInt32 nId ) \
97 : par( new t##Impl( context, context->GetPeerHandle( pId, nId ), this ) ) \
104 t::t( Window *parent, WinBits bits) \
105 … : par( new t##Impl( parent->getContext(), Window::CreatePeer( parent, bits, unoName ), this ) ) \
111 t::t( Window *parent, ResId const& res) \
112 … : par( new t##Impl( parent->getContext(), Window::CreatePeer( parent, 0, unoName ), this ) ) \
[all …]
/AOO41X/main/sc/source/core/tool/
H A Dcompiler.cxx440 sal_uLong *t= new sal_uLong [128]; in Convention() local
443 mpCharTable = t; in Convention()
446 t[i] = SC_COMPILER_C_ILLEGAL; in Convention()
448 /* */ t[32] = SC_COMPILER_C_CHAR_DONTCARE | SC_COMPILER_C_WORD_SEP | SC_COMPILER_C_VALUE_SEP; in Convention()
449 /* ! */ t[33] = SC_COMPILER_C_CHAR | SC_COMPILER_C_WORD_SEP | SC_COMPILER_C_VALUE_SEP; in Convention()
451 /* ! */ t[33] |= SC_COMPILER_C_ODF_LABEL_OP; in Convention()
452 /* " */ t[34] = SC_COMPILER_C_CHAR_STRING | SC_COMPILER_C_STRING_SEP; in Convention()
453 /* # */ t[35] = SC_COMPILER_C_WORD_SEP; in Convention()
454 /* $ */ t[36] = SC_COMPILER_C_CHAR_WORD | SC_COMPILER_C_WORD | SC_COMPILER_C_CHAR_IDENT | SC_CO… in Convention()
456 /* $ */ t[36] |= SC_COMPILER_C_ODF_NAME_MARKER; in Convention()
[all …]
/AOO41X/main/jurt/test/com/sun/star/lib/uno/environments/remote/
H A DJobQueue_Test.java61 TestThread t = new TestThread(waitTime); in testThreadLeavesJobQueueOnDispose() local
62 t.waitToStart(); in testThreadLeavesJobQueueOnDispose()
64 t._jobQueue.dispose(t._disposeId, new RuntimeException (msg)); in testThreadLeavesJobQueueOnDispose()
65 t.waitToTerminate(); in testThreadLeavesJobQueueOnDispose()
66 assure("", t._message.equals(msg)); in testThreadLeavesJobQueueOnDispose()
82 TestThread t = new TestThread(waitTime); in testThreadLeavesJobQueueOnReply() local
83 t.waitToStart(); in testThreadLeavesJobQueueOnReply()
85 t._jobQueue.putJob( in testThreadLeavesJobQueueOnReply()
91 t.waitToTerminate(); in testThreadLeavesJobQueueOnReply()
106 TestThread t = new TestThread(waitTime); in testStaticThreadExecutesJobs() local
[all …]

12345678910>>...39