Searched refs:ct2 (Results 1 – 8 of 8) sorted by relevance
/third_party/icu/icu4c/source/test/intltest/ |
D | cpdtrtst.cpp | 126 CompoundTransliterator *ct2=new CompoundTransliterator("Greek-Latin", parseError, status); in TestCloneEqual() local 130 delete ct2; in TestCloneEqual() 138 CompoundTransliterator *copyct2=new CompoundTransliterator(*ct2); in TestCloneEqual() 146 if(copyct1->getID() != ct1->getID() || copyct2->getID() != ct2->getID() || in TestCloneEqual() 147 copyct1->getCount() != ct1->getCount() || copyct2->getCount() != ct2->getCount() || in TestCloneEqual() 148 copyct2->getID() == ct1->getID() || copyct1->getID() == ct2->getID() || in TestCloneEqual() 149 copyct2->getCount() == ct1->getCount() || copyct1->getCount() == ct2->getCount() ){ in TestCloneEqual() 153 if(equalct1.getID() != ct1->getID() || equalct2.getID() != ct2->getID() || in TestCloneEqual() 155 equalct1.getCount() != ct1->getCount() || equalct2.getCount() != ct2->getCount() || in TestCloneEqual() 156 copyct2->getID() == ct1->getID() || copyct1->getID() == ct2->getID() || in TestCloneEqual() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | hermite.h | 29 double ct0, ct1, ct2, ct3; in hermite_interpolation() local 39 ct2 = -3 * p0 - 2 * m0 + 3 * p1 - m1; in hermite_interpolation() 42 return ct3 * t3 + ct2 * t2 + ct1 * t + ct0; in hermite_interpolation()
|
/third_party/gstreamer/gstreamer/libs/gst/controller/ |
D | gsttimedvaluecontrolsource.c | 144 GstClockTime ct2 = ((GstControlPoint *) p2)->timestamp; in gst_control_point_compare() local 146 return ((ct1 < ct2) ? -1 : ((ct1 == ct2) ? 0 : 1)); in gst_control_point_compare() 162 GstClockTime ct2 = *(GstClockTime *) p2; in gst_control_point_find() local 164 return ((ct1 < ct2) ? -1 : ((ct1 == ct2) ? 0 : 1)); in gst_control_point_find()
|
/third_party/gstreamer/gstreamer/tests/check/gst/ |
D | gstevent.c | 179 GstClockTime ct1 = G_GUINT64_CONSTANT (20), ct2; in GST_START_TEST() local 188 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST() 191 fail_unless (ct1 == ct2); in GST_START_TEST() 192 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST() 196 fail_unless (ct1 == ct2); in GST_START_TEST() 201 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST() 206 gst_event_parse_qos (event, &t2, &p2, &ctd2, &ct2); in GST_START_TEST() 210 fail_unless (ct1 == ct2); in GST_START_TEST()
|
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | CompoundTransliteratorTest.java | 176 Transliterator ct2=null; in TestTransliterate() local 179 ct2=Transliterator.getInstance(Data[i+0]); in TestTransliterate() 184 expect(ct2, Data[i+1], Data[i+2]); in TestTransliterate()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/ |
D | CompoundTransliteratorTest.java | 179 Transliterator ct2=null; in TestTransliterate() local 182 ct2=Transliterator.getInstance(Data[i+0]); in TestTransliterate() 187 expect(ct2, Data[i+1], Data[i+2]); in TestTransliterate()
|
/third_party/skia/src/effects/imagefilters/ |
D | SkDisplacementMapImageFilter.cpp | 501 auto [colorView, ct2, at2] = d->randomView(); in TestCreate()
|
/third_party/python/Lib/test/ |
D | test_typing.py | 498 ct2 = Callable[[str, float], int] 499 self.assertEqual(repr(ct2), f'{fullname}[[str, float], int]')
|