Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 25 of 49) sorted by relevance

12

/AOO42X/main/o3tl/qa/
H A Dtest-range.cxx47 t1(12,88); in int_test() local
52 ASSERT_TRUE(t1.begin() == 12) << "int ctor1"; in int_test()
53 ASSERT_TRUE(t1.end() == 88) << "int ctor2"; in int_test()
62 ASSERT_TRUE(t1.size() == size_t(t1.end() - t1.begin())) << "int size1"; in int_test()
77 ASSERT_TRUE(t1.contains(t1)) << "int contains1"; in int_test()
78 ASSERT_TRUE(t1.contains(t2)) << "int contains2"; in int_test()
79 ASSERT_TRUE(! t1.contains(t3)) << "int contains3"; in int_test()
80 ASSERT_TRUE(! t1.contains(t4)) << "int contains4"; in int_test()
81 ASSERT_TRUE(t1.contains(t5)) << "int contains5"; in int_test()
82 ASSERT_TRUE(t1.contains(t6)) << "int contains6"; in int_test()
[all …]
H A Dtest-heap_ptr.cxx66 t1( new Help(10) ); in TEST_F() local
79 ASSERT_TRUE(t1.is()) << "ctor7"; in TEST_F()
80 ASSERT_TRUE((*t1).Value() == 10) << "ctor8"; in TEST_F()
81 ASSERT_TRUE(t1->Value() == 10) << "ctor9"; in TEST_F()
82 ASSERT_TRUE(t1.get() == t1.operator->()) << "ctor10"; in TEST_F()
83 ASSERT_TRUE(t1.get() == &(*t1)) << "ctor11"; in TEST_F()
92 ASSERT_TRUE(t1.is() == static_cast<bool>(t1)) << "bool3"; in TEST_F()
97 Help * hp = t1.release(); in TEST_F()
98 ASSERT_TRUE(! t1.is()) << "release1"; in TEST_F()
99 ASSERT_TRUE(t1.get() == 0) << "release2"; in TEST_F()
[all …]
/AOO42X/main/vcl/inc/unx/
H A Dsalunx.h49 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 …]
/AOO42X/main/vcl/unx/headless/
H A Dsvpinst.cxx187 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 …]
/AOO42X/main/basegfx/source/workbench/
H A Dbezierclip.cxx179 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 …]
/AOO42X/main/i18npool/source/inputchecker/
H A Dinputsequencechecker_th.cxx124 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()
/AOO42X/main/uui/source/
H A Dgetcontinuations.hxx36 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()
/AOO42X/main/i18npool/source/transliteration/
H A DignoreKana.cxx46 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 DignoreWidth.cxx46 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 DignoreSize_ja_JP.cxx46 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 Dtransliteration_Ignore.cxx103 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()
/AOO42X/main/ridljar/test/com/sun/star/uno/
H A DUnoRuntime_Test.java123 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()
/AOO42X/main/testtools/source/bridgetest/cli/
H A Dcli_vb_bridgetest.vb136 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 Dcli_cpp_bridgetest.cxx94 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 Dcli_cs_bridgetest.cs74 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 …]
/AOO42X/main/writerfilter/qa/cppunittests/xxml/
H A DtestXXML.cxx165 TimeValue t1; osl_getSystemTime(&t1); in test() local
171 …time=%is time/event=%0.10fs\n", handler.events, t2.Seconds-t1.Seconds, (double)(t2.Seconds-t1.Seco… in test()
/AOO42X/main/testtools/source/bridgetest/pyuno/
H A Dcore.py145 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 roundtrip test" )
/AOO42X/main/sal/qa/osl/process/
H A Dosl_Thread.cxx60 TimeValue t1,t2; // Start und Stopzeit member in StopWatch
94 osl_getSystemTime( &t1 ); in start()
95 printf("# %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()
/AOO42X/main/writerfilter/unocomponent/debugservices/doctok/
H A DDocTokTestService.cxx103 TimeValue t1; osl_getSystemTime(&t1); in run()
111 printf("time=%is\n", t2.Seconds-t1.Seconds); in run()
/AOO42X/main/ucb/source/ucp/webdav/
H A DCurlLockStore.cxx243 TimeValue t1; in refreshLocks() local
244 osl_getSystemTime( &t1 ); in refreshLocks()
246 <= sal_Int32( t1.Seconds ) ) in refreshLocks()
/AOO42X/main/test/source/java/org/openoffice/test/
H A DOfficeConnection.java150 final Thread t1 = Thread.currentThread(); in waitForProcess() local
156 t1.interrupt(); in waitForProcess()
176 t1.interrupt(); // reset old status in waitForProcess()
/AOO42X/main/offapi/com/sun/star/rendering/
H A DInterpolationMode.idl42 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>
/AOO42X/main/idlc/source/
H A Dastservice.cxx51 AstDeclaration const * t1 = deconstructAndResolveTypedefs( in checkLastConstructor() local
56 if (r1 != r2 || t1->getScopedName() != t2->getScopedName()) in checkLastConstructor()
/AOO42X/main/writerfilter/unocomponent/debugservices/rtftok/
H A DScannerTestService.cxx403 TimeValue t1; osl_getSystemTime(&t1); in run() local
413 printf("time=%" SAL_PRIuUINT32 "s\n", t2.Seconds-t1.Seconds); in run()
/AOO42X/main/javaunohelper/test/com/sun/star/lib/uno/helper/
H A DWeakBase_Test.java66 Type[] t1= f1.getTypes(); in getTypes() local
68 r[i++]= t1.equals(t2); in getTypes()

12