| /AOO41X/main/o3tl/qa/ |
| H A D | test-range.cxx | 49 t1(12,88); in int_test() local 54 CPPUNIT_ASSERT_MESSAGE("int ctor1", t1.begin() == 12); in int_test() 55 CPPUNIT_ASSERT_MESSAGE("int ctor2", t1.end() == 88); in int_test() 64 CPPUNIT_ASSERT_MESSAGE("int size1", t1.size() == size_t(t1.end() - t1.begin()) ); in int_test() 79 CPPUNIT_ASSERT_MESSAGE("int contains1", t1.contains(t1)); in int_test() 80 CPPUNIT_ASSERT_MESSAGE("int contains2", t1.contains(t2)); in int_test() 81 CPPUNIT_ASSERT_MESSAGE("int contains3", ! t1.contains(t3)); in int_test() 82 CPPUNIT_ASSERT_MESSAGE("int contains4", ! t1.contains(t4)); in int_test() 83 CPPUNIT_ASSERT_MESSAGE("int contains5", t1.contains(t5)); in int_test() 84 CPPUNIT_ASSERT_MESSAGE("int contains6", t1.contains(t6)); in int_test() [all …]
|
| H A D | test-heap_ptr.cxx | 66 t1( new Help(10) ); in global() local 79 CPPUNIT_ASSERT_MESSAGE("ctor7", t1.is()); in global() 80 CPPUNIT_ASSERT_MESSAGE("ctor8", (*t1).Value() == 10 ); in global() 81 CPPUNIT_ASSERT_MESSAGE("ctor9", t1->Value() == 10 ); in global() 82 CPPUNIT_ASSERT_MESSAGE("ctor10", t1.get() == t1.operator->() ); in global() 83 CPPUNIT_ASSERT_MESSAGE("ctor11", t1.get() == &(*t1) ); in global() 92 CPPUNIT_ASSERT_MESSAGE("bool3", t1.is() == static_cast<bool>(t1)); in global() 97 Help * hp = t1.release(); in global() 98 CPPUNIT_ASSERT_MESSAGE("release1", ! t1.is() ); in global() 99 CPPUNIT_ASSERT_MESSAGE("release2", t1.get() == 0 ); in global() [all …]
|
| /AOO41X/main/vcl/inc/unx/ |
| H A D | salunx.h | 49 inline int operator >= ( const timeval &t1, const timeval &t2 ) 51 if( t1.tv_sec == t2.tv_sec ) 52 return t1.tv_usec >= t2.tv_usec; 53 return t1.tv_sec > t2.tv_sec; 56 inline int operator > ( const timeval &t1, const timeval &t2 ) 58 if( t1.tv_sec == t2.tv_sec ) 59 return t1.tv_usec > t2.tv_usec; 60 return t1.tv_sec > t2.tv_sec; 63 inline int operator == ( const timeval &t1, const timeval &t2 ) 65 if( t1.tv_sec == t2.tv_sec ) [all …]
|
| /AOO41X/main/vcl/unx/headless/ |
| H A D | svpinst.cxx | 187 inline int operator >= ( const timeval &t1, const timeval &t2 ) in operator >=() argument 189 if( t1.tv_sec == t2.tv_sec ) in operator >=() 190 return t1.tv_usec >= t2.tv_usec; in operator >=() 191 return t1.tv_sec > t2.tv_sec; in operator >=() 193 inline timeval &operator += ( timeval &t1, sal_uLong t2 ) in operator +=() argument 195 t1.tv_sec += t2 / 1000; in operator +=() 196 t1.tv_usec += t2 ? (t2 % 1000) * 1000 : 500; in operator +=() 197 if( t1.tv_usec > 1000000 ) in operator +=() 199 t1.tv_sec++; in operator +=() 200 t1.tv_usec -= 1000000; in operator +=() [all …]
|
| /AOO41X/main/basegfx/source/workbench/ |
| H A D | bezierclip.cxx | 179 bool Impl_calcSafeParams( double& t1, in Impl_calcSafeParams() argument 190 t1 = 0.0 ; in Impl_calcSafeParams() 272 t1 = ::std::max(0.0, currLowerT); in Impl_calcSafeParams() 288 bool Impl_calcSafeParams_clip( double& t1, in Impl_calcSafeParams_clip() argument 305 return Impl_calcSafeParams( t1, t2, poly, bounds.dMin, bounds.dMax ); in Impl_calcSafeParams_clip() 308 bool bRet( Impl_calcSafeParams( t1, t2, poly, bounds.dMin, bounds.dMax ) ); in Impl_calcSafeParams_clip() 325 << t1 << ", t, " in Impl_calcSafeParams_clip() 580 bool Impl_calcClipRange( double& t1, in Impl_calcClipRange() argument 604 if( Impl_calcSafeParams_clip( t1, t2, bounds_c2, in Impl_calcClipRange() 772 bool Impl_calcSafeParams_focus( double& t1, in Impl_calcSafeParams_focus() argument [all …]
|
| /AOO41X/main/i18npool/source/inputchecker/ |
| H A D | inputsequencechecker_th.cxx | 124 sal_uInt16 t1=getCharType(Text[nStartPos]), t2=getCharType(inputChar); in correctInputSequence() local 125 if ( (CT_ABV(t1) && CT_ABV(t2)) || // 1. in correctInputSequence() 126 (t1==CT_TONE && t2==CT_TONE) )// 2. in correctInputSequence() 128 else if ( (t1==CT_TONE && CT_ABV(t2)) || // 5. in correctInputSequence() 129 (t1==CT_FV1 && t2==CT_TONE) || // 6. in correctInputSequence() 135 …sal_uInt16 t1=getCharType(Text[nStartPos-1]), t2=getCharType(Text[nStartPos]), t3=getCharType(inpu… in correctInputSequence() local 136 if (CT_ABV(t1) && t2==CT_TONE && t3==CT_TONE) // 3. in correctInputSequence() 138 else if ( (CT_ABV(t1) && t2==CT_TONE && CT_ABV(t3)) || // 4. in correctInputSequence() 139 (t1==CT_TONE && t2==CT_FV1 && t3==CT_TONE) || // 7. in correctInputSequence() 140 (CT_ABV1(t1) && Text[nStartPos]==0x0E4C && CT_ABV1(t3)) ) // 9. in correctInputSequence()
|
| /AOO41X/main/uui/source/ |
| H A D | getcontinuations.hxx | 36 template< class t1 > 40 com::sun::star::uno::Reference< t1 > * pContinuation) in setContinuation() 51 template< class t1, class t2 > 57 com::sun::star::uno::Reference< t1 > * pContinuation1, in getContinuations() 69 template< class t1, class t2, class t3 > 75 com::sun::star::uno::Reference< t1 > * pContinuation1, in getContinuations() 90 template< class t1, class t2, class t3, class t4 > 96 com::sun::star::uno::Reference< t1 > * pContinuation1, in getContinuations()
|
| /AOO41X/main/i18npool/source/transliteration/ |
| H A D | ignoreSize_ja_JP.cxx | 46 smallToLarge_ja_JP t1; in folding() local 47 return t1.transliterate(inStr, startPos, nCount, offset); in folding() 55 smallToLarge_ja_JP t1; in transliterateRange() local 58 return transliteration_Ignore::transliterateRange(str1, str2, t1, t2); in transliterateRange() 64 smallToLarge_ja_JP t1; in transliterateChar2Char() local 65 return t1.transliterateChar2Char(inChar); in transliterateChar2Char()
|
| H A D | ignoreWidth.cxx | 46 fullwidthToHalfwidth t1; in folding() local 47 return t1.transliterate(inStr, startPos, nCount, offset); in folding() 54 fullwidthToHalfwidth t1; in transliterateRange() local 57 return transliteration_Ignore::transliterateRange(str1, str2, t1, t2); in transliterateRange() 63 fullwidthToHalfwidth t1; in transliterateChar2Char() local 64 return t1.transliterateChar2Char(inChar); in transliterateChar2Char()
|
| H A D | ignoreKana.cxx | 46 hiraganaToKatakana t1; in folding() local 47 return t1.transliterate(inStr, startPos, nCount, offset); in folding() 54 hiraganaToKatakana t1; in transliterateRange() local 57 return transliteration_Ignore::transliterateRange(str1, str2, t1, t2); in transliterateRange() 63 hiraganaToKatakana t1; in transliterateChar2Char() local 64 return t1.transliterateChar2Char(inChar); in transliterateChar2Char()
|
| H A D | transliteration_Ignore.cxx | 103 XTransliteration& t1, XTransliteration& t2 ) throw(RuntimeException) in transliterateRange() argument 109 OUString s11 = t1.transliterate( str1, 0, 1, offset ); in transliterateRange() 110 OUString s12 = t1.transliterate( str2, 0, 1, offset ); in transliterateRange()
|
| /AOO41X/main/ridljar/test/com/sun/star/uno/ |
| H A D | UnoRuntime_Test.java | 123 TestThread t1 = new TestThread(); in test_currentContext() local 125 t1.start(); in test_currentContext() 127 t1.join(); in test_currentContext() 129 Object v1 = t1.context.getValueByName(""); in test_currentContext() 131 assure("", t1.context != t2.context); in test_currentContext() 132 assure("", v1 == t1); in test_currentContext()
|
| /AOO41X/main/testtools/source/bridgetest/cli/ |
| H A D | cli_vb_bridgetest.vb | 136 Dim t1 As Type = val1.GetType() 138 If t1.IsArray() 145 ElseIf t1.GetInterfaces().Length > 0 And Not t1.IsValueType 148 ElseIf Not t1.IsValueType 154 ElseIf t1.IsValueType 166 Dim t1 As Type = ar1.GetType() 170 And ar1.Length = ar2.Length And t1.GetElementType().Equals(t2.GetElementType()))) 175 Dim elemType As Type = t1.GetElementType() 190 Dim t1 As Type = val1.GetType() 192 If Not t1.Equals(t2) [all …]
|
| H A D | cli_cpp_bridgetest.cxx | 94 Type* t1 = val1->GetType(); 96 if (t1->IsArray) 102 else if (t1 == __typeof(String)) 107 else if (t1->GetInterfaces()->Length > 0 && ! t1->IsValueType) 112 else if ( ! t1->IsValueType) 116 else if (t1 == __typeof(Any)) 122 else if (t1->IsValueType) 138 Type* t1 = ar1->GetType(); 142 && ar1->Length == ar2->Length && t1->GetElementType() == t2->GetElementType())) 162 Type* t1 = val1->GetType(); [all …]
|
| H A D | cli_cs_bridgetest.cs | 74 Type t1 = val1.GetType(); in compareData() 76 if (t1.IsArray) in compareData() 81 else if (t1 == typeof(string)) in compareData() 86 else if (t1.GetInterfaces().Length > 0 && ! t1.IsValueType) in compareData() 91 else if ( ! t1.IsValueType) in compareData() 95 else if (t1 == typeof(Any)) in compareData() 101 else if (t1.IsValueType) in compareData() 117 Type t1 = ar1.GetType(); in compareSequence() 121 && ar1.Length == ar2.Length && t1.GetElementType() == t2.GetElementType())) in compareSequence() 126 Type elemType = t1.GetElementType(); in compareSequence() [all …]
|
| /AOO41X/main/writerfilter/qa/cppunittests/xxml/ |
| H A D | testXXML.cxx | 161 TimeValue t1; osl_getSystemTime(&t1); in test() local 167 …time=%is time/event=%0.10fs\n", handler.events, t2.Seconds-t1.Seconds, (double)(t2.Seconds-t1.Seco… in test()
|
| /AOO41X/main/testtools/source/bridgetest/pyuno/ |
| H A D | core.py | 145 t1 = uno.getTypeByName( "com.sun.star.lang.XComponent" ) 148 self.failUnless( t1.typeClass == \ 152 self.failUnless( t1 == t2 , "equal type test" ) 153 self.failUnless( t1 == t2 , "equal type test" ) 154 self.failUnless( t1 == self.tobj.transportAny( t1 ), "type rountrip test" )
|
| /AOO41X/main/sal/qa/osl/process/ |
| H A D | osl_Thread.cxx | 60 TimeValue t1,t2; // Start und Stopzeit member in StopWatch 94 osl_getSystemTime( &t1 ); in start() 95 t_print("# %d %d nsecs\n", t1.Seconds, t1.Nanosec); in start() 118 m_nSeconds = static_cast<sal_Int32>(t2.Seconds) - static_cast<sal_Int32>(t1.Seconds); in stop() 119 if ( t2.Nanosec > t1.Nanosec ) in stop() 120 m_nNanoSec = static_cast<sal_Int32>(t2.Nanosec) - static_cast<sal_Int32>(t1.Nanosec); in stop() 123 … m_nNanoSec = 1000000000 + static_cast<sal_Int32>(t2.Nanosec) - static_cast<sal_Int32>(t1.Nanosec); in stop()
|
| /AOO41X/main/writerfilter/unocomponent/debugservices/doctok/ |
| H A D | DocTokTestService.cxx | 103 TimeValue t1; osl_getSystemTime(&t1); in run() 111 printf("time=%is\n", t2.Seconds-t1.Seconds); in run()
|
| /AOO41X/main/ucb/source/ucp/webdav/ |
| H A D | SerfLockStore.cxx | 243 TimeValue t1; in refreshLocks() local 244 osl_getSystemTime( &t1 ); in refreshLocks() 246 <= sal_Int32( t1.Seconds ) ) in refreshLocks()
|
| /AOO41X/main/offapi/com/sun/star/rendering/ |
| H A D | InterpolationMode.idl | 42 positioned at t0 and t1, take the one which has the closest t 52 v0 and v1, positioned at t0 and t1, take the sum of v0 53 weighted with (t-t0) and v1 weighted with (t1-t).<p>
|
| /AOO41X/main/solenv/bin/ |
| H A D | cws.pl | 488 my $t1 = Benchmark->new(); 506 print_time_elapsed($t1, $t2) if $profile; 514 my $t1 = Benchmark->new(); 518 print_time_elapsed($t1, $t2) if $profile; 525 my $t1 = Benchmark->new(); 529 print_time_elapsed($t1, $t2) if $profile;
|
| /AOO41X/main/idlc/source/ |
| H A D | astservice.cxx | 51 AstDeclaration const * t1 = deconstructAndResolveTypedefs( in checkLastConstructor() local 56 if (r1 != r2 || t1->getScopedName() != t2->getScopedName()) in checkLastConstructor()
|
| /AOO41X/main/writerfilter/unocomponent/debugservices/rtftok/ |
| H A D | ScannerTestService.cxx | 403 TimeValue t1; osl_getSystemTime(&t1); in run() local 413 printf("time=%" SAL_PRIuUINT32 "s\n", t2.Seconds-t1.Seconds); in run()
|
| /AOO41X/main/javaunohelper/test/com/sun/star/lib/uno/helper/ |
| H A D | WeakBase_Test.java | 66 Type[] t1= f1.getTypes(); in getTypes() local 68 r[i++]= t1.equals(t2); in getTypes()
|