Home
last modified time | relevance | path

Searched refs:ss2 (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/libs/date_time/test/gregorian/
Dtestfacet.cpp223 std::stringstream ss2; in main() local
224 ss2 << dur; in main()
225 check("date_duration stream out", ss2.str() == std::string("26")); in main()
228 ss2.str(""); in main()
229 ss2 << dur; in main()
230 check("date_duration stream out", ss2.str() == std::string("+infinity")); in main()
238 ss2.str(""); in main()
239 ss2 << pd; in main()
240 check("partial date stream out", ss2.str() == std::string("26 Jun")); in main()
242 ss2.str(""); in main()
[all …]
/third_party/boost/libs/stacktrace/example/
Dterminate_handler.cpp206 boost::stacktrace::stacktrace ss2; in test_inplace() local
212 if (ss1.size() + 1 != frames_ss1 || ss2.size() != ss1.size()) { in test_inplace()
213 …1: Stacktraces differ. Dumped size == " << frames_ss1 << ".\n" << ss1 << "\n vs \n" << ss2 << '\n'; in test_inplace()
214 } else if (ss1.size() > 1 && ss1[1].name() != ss2[1].name()) { in test_inplace()
215 std::cerr << "52: Stacktraces differ:\n" << ss1 << "\n vs \n" << ss2 << '\n'; in test_inplace()
225 boost::stacktrace::stacktrace ss2; in test_inplace() local
228 if (ss1.size() + 1 != frames_ss1 || ss1.size() != ss2.size()) { in test_inplace()
229 …3: Stacktraces differ. Dumped size == " << frames_ss1 << ".\n" << ss1 << "\n vs \n" << ss2 << '\n'; in test_inplace()
230 } else if (ss1.size() > 1 && ss1[1].name() != ss2[1].name()) { in test_inplace()
231 std::cerr << "54: Stacktraces differ:\n" << ss1 << "\n vs \n" << ss2 << '\n'; in test_inplace()
[all …]
/third_party/boost/libs/locale/test/
Dtest_ios_prop.cpp59 std::stringstream ss,ss2; in main() local
61 ss2.copyfmt(ss); in main()
63 TEST(prop_type::has(ss2)); in main()
65 TEST(prop_type::get(ss2).x==2); in main()
66 prop_type::get(ss2).x=3; in main()
67 TEST(prop_type::get(ss2).x==3); in main()
71 ss2.imbue(std::locale::classic()); in main()
/third_party/boost/libs/container/test/
Dstring_test.cpp343 StdString ss2 = string_literals<CharType>::String(); in string_test() local
347 StdString ss4 = ss2 + ss3; in string_test()
353 ss4 = ss2 + StdString(); in string_test()
359 ss4 = StdString() + ss2; in string_test()
365 ss4 = StdString() + boost::move(ss2); in string_test()
371 ss2 = string_literals<CharType>::String(); in string_test()
373 ss4 = boost::move(ss2) + StdString(); in string_test()
379 ss2 = string_literals<CharType>::String(); in string_test()
381 ss4 = string_literals<CharType>::Prefix() + boost::move(ss2); in string_test()
387 ss2 = string_literals<CharType>::String(); in string_test()
[all …]
/third_party/boost/libs/uuid/test/
Dtest_io.cpp54 std::stringstream ss2; in uuroundtrip() local
55 ss2 << expect; in uuroundtrip()
56 ss2 >> out; in uuroundtrip()
57 BOOST_TEST_EQ(false, ss2.fail()); in uuroundtrip()
70 std::wstringstream ss2; in uuroundtrip() local
71 ss2 << expect; in uuroundtrip()
72 ss2 >> out; in uuroundtrip()
73 BOOST_TEST_EQ(false, ss2.fail()); in uuroundtrip()
/third_party/googletest/googlemock/test/
Dgmock-cardinalities_test.cc99 stringstream ss2; in TEST() local
100 Cardinality::DescribeActualCallCountTo(2, &ss2); in TEST()
101 EXPECT_EQ("called twice", ss2.str()); in TEST()
170 stringstream ss2; in TEST() local
171 c.DescribeTo(&ss2); in TEST()
173 ss2.str()); in TEST()
225 stringstream ss2; in TEST() local
226 c.DescribeTo(&ss2); in TEST()
228 ss2.str()); in TEST()
376 stringstream ss2; in TEST() local
[all …]
/third_party/pulseaudio/src/tests/
Dremix-test.c85 pa_sample_spec ss1, ss2; in main() local
88 ss2.channels = maps[j].channels; in main()
90 ss1.rate = ss2.rate = 44100; in main()
91 ss1.format = ss2.format = PA_SAMPLE_S16NE; in main()
97 … r = pa_resampler_new(pool, &ss1, &maps[i], &ss2, &maps[j], crossover_freq, PA_RESAMPLER_AUTO, in main()
/third_party/boost/libs/stacktrace/test/
Dtest.cpp74 std::stringstream ss1, ss2; in test_nested() local
77 ss2 << res.second; in test_nested()
79 std::cout << "'" << ss1.str() << "'\n\n" << ss2.str() << std::endl; in test_nested()
82 BOOST_TEST(!ss2.str().empty()); in test_nested()
85 BOOST_TEST(ss2.str().find(" 0# ") != std::string::npos); in test_nested()
88 BOOST_TEST(ss2.str().find(" 1# ") != std::string::npos); in test_nested()
91 BOOST_TEST(ss2.str().find(" in ") != std::string::npos); in test_nested()
95 BOOST_TEST(ss2.str().find("main") != std::string::npos); in test_nested()
98 BOOST_TEST(ss2.str().find("function_from_library") != std::string::npos); in test_nested()
101 BOOST_TEST(ss2.str().find("function_from_main_translation_unit") != std::string::npos); in test_nested()
/third_party/boost/libs/multi_index/test/
Dtest_list_ops.cpp80 Sequence ss,ss2; in test_list_ops_unique_seq() local
81 sequenced_index &si=get<1>(ss),&si2=get<1>(ss2); in test_list_ops_unique_seq()
182 Sequence ss2; in test_list_ops_non_unique_seq() local
183 ss2.splice(ss2.end(),ss,ss.begin(),it); in test_list_ops_non_unique_seq()
184 ss2.reverse(); in test_list_ops_non_unique_seq()
185 ss.merge(ss2); in test_list_ops_non_unique_seq()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/
Dresize_cubic_op.cc138 int ss0, ss1, ss2; in ImagingHorizontalInterp() local
156 ss0 = ss1 = ss2 = 1 << (PrecisionBits - 1); in ImagingHorizontalInterp()
160 ss2 += (input_ptr[(yy + offset) * input_width + (x + x_min) * 3 + 2]) * k[x]; in ImagingHorizontalInterp()
164 bgr_buf[2] = clip8(ss2); in ImagingHorizontalInterp()
174 int ss0, ss1, ss2; in ImagingVerticalInterp() local
191 ss0 = ss1 = ss2 = 1 << (PrecisionBits - 1); in ImagingVerticalInterp()
195 ss2 += (input_ptr[(y + y_min) * input_width + xx * 3 + 2]) * k[y]; in ImagingVerticalInterp()
199 bgr_buf[2] = clip8(ss2); in ImagingVerticalInterp()
/third_party/ffmpeg/libavformat/
Dsubviewerdec.c58 int hh2, mm2, ss2, ms2; in read_ts() local
62 &hh1, &mm1, &ss1, &ms1, &hh2, &mm2, &ss2, &ms2) == 8) { in read_ts()
65 &hh1, &mm1, &ss1, &ms1, &hh2, &mm2, &ss2, &ms2) == 8) { in read_ts()
69 &hh1, &mm1, &ss1, &ms1, &hh2, &mm2, &ss2, &ms2) == 8) { in read_ts()
72 end = (hh2*3600LL + mm2*60LL + ss2) * 1000LL + ms2 * multiplier; in read_ts()
Dstldec.c57 int hh2, mm2, ss2, ms2; in get_pts() local
62 &hh2, &mm2, &ss2, &ms2, &len) >= 8 && len > 0) { in get_pts()
64 int64_t end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2; in get_pts()
Dassenc.c163 int hh2, mm2, ss2, ms2; in write_packet() local
185 ss2 = (int)(end / 100) % 60; ms2 = (int)(end % 100); in write_packet()
187 if (hh2 > 9) hh2 = 9, mm2 = 59, ss2 = 59, ms2 = 99; in write_packet()
191 layer, hh1, mm1, ss1, ms1, hh2, mm2, ss2, ms2, p); in write_packet()
Dassdec.c66 int hh2, mm2, ss2, ms2; in read_dialogue() local
70 &hh2, &mm2, &ss2, &ms2, &pos) >= 8 && pos > 0) { in read_dialogue()
78 end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2; in read_dialogue()
Dsrtdec.c75 int hh2, mm2, ss2, ms2; in get_event_info() local
83 &hh2, &mm2, &ss2, &ms2, in get_event_info()
86 const int64_t end = (hh2*3600LL + mm2*60LL + ss2) * 1000LL + ms2; in get_event_info()
/third_party/boost/libs/regex/test/regress/
Dtest_mfc.cpp35 const std::string& ss2 = test_info<char>::expression(); in test_mfc() local
37 CAtlStringA s2(ss2.c_str(), ss2.size()); in test_mfc()
213 const std::wstring& ss2 = test_info<wchar_t>::expression(); in test_mfc() local
215 CAtlStringW s2(ss2.c_str(), ss2.size()); in test_mfc()
/third_party/ffmpeg/libavutil/ppc/
Dfloat_dsp_altivec.c78 vec_f d, ss0, ss1, ss2, t0, t1, edges; in ff_vector_fmul_add_altivec() local
85 ss2 = vec_ld(0, src2 + i); in ff_vector_fmul_add_altivec()
87 d = vec_madd(ss0, ss1, ss2); in ff_vector_fmul_add_altivec()
/third_party/e2fsprogs/debugfs/
Dset_fields.c309 struct field_set_info *ss, *ss2; in do_verify_field_set_info() local
325 for (ss2 = fields ; ss2 != ss ; ss2++) { in do_verify_field_set_info()
327 assert(strcmp(ss->name, ss2->name)); in do_verify_field_set_info()
329 if (ss->flags & FLAG_ALIAS || ss2->flags & FLAG_ALIAS) in do_verify_field_set_info()
332 assert(!ss->ptr || (ss->ptr != ss2->ptr && in do_verify_field_set_info()
333 ss->ptr != ss2->ptr2)); in do_verify_field_set_info()
334 assert(!ss->ptr2 || (ss->ptr2 != ss2->ptr && in do_verify_field_set_info()
335 ss->ptr2 != ss2->ptr2)); in do_verify_field_set_info()
/third_party/json/test/src/
Dunit-deserialization.cpp195 std::stringstream ss1, ss2, ss3; variable
197 ss2 << "[\"foo\",1,2,3,false,{\"one\":1}]";
200 CHECK(json::accept(ss2));
281 std::stringstream ss1, ss2, ss3, ss4, ss5; variable
283 ss2 << "[\"foo\",1,2,3,false,{\"one\":1}";
290 CHECK_THROWS_WITH(_ = json::parse(ss2),
337 std::stringstream ss1, ss2; variable
339 ss2 << "[\"foo\",1,2,3,false,{\"one\":1}";
342 CHECK_THROWS_WITH(j << ss2,
348 std::stringstream ss1, ss2; variable
[all …]
/third_party/boost/boost/geometry/strategies/spherical/
Dpoint_in_poly_winding.hpp478 PointOfSegment ss1, ss2; in side_equal() local
481 set<1>(ss2, get<1>(se)); in side_equal()
492 set<0>(ss2, ss20); in side_equal()
495 return m_side_strategy.apply(ss1, ss2, point); in side_equal()
/third_party/googletest/googletest/test/
Dgoogletest-printers-test.cc1697 ::std::stringstream ss2;
1698 UniversalTersePrint(s2, &ss2);
1699 EXPECT_EQ("\"abc\"", ss2.str());
1734 ::std::stringstream ss2;
1735 UniversalPrint(s2, &ss2);
1736 EXPECT_EQ(PrintPointer(s2) + " pointing to \"abc\"", std::string(ss2.str()));
1751 ::std::stringstream ss2;
1752 UniversalPrint(mutable_str, &ss2);
1753 EXPECT_EQ("\"\\\"Line\\0 1\\\"\\nLine 2\"", ss2.str());
/third_party/glslang/Test/
Dspv.noLocation.vert29 out SS ss2; // ERROR
/third_party/e2fsprogs/debian/attic/libs/
Dcontrol34 Conflicts: e2fsprogs (<< 1.10-6), ss2
/third_party/mesa3d/src/intel/isl/
Disl_format_layout.csv277 R10G10B10A2_SSCALED , 32, 1, 1, 1, ss10, ss10, ss10, ss2, , , , rgba, line…
281 B10G10R10A2_SSCALED , 32, 1, 1, 1, ss10, ss10, ss10, ss2, , , , rgba, line…
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
DULocaleTest.java1443 String ss2 = ULocale.getDisplayKeywordValue(localeID, key, "en_US"); in TestDisplayKeyword() local
1445 if (!ss1.equals(ss2) || !ss1.equals(ss3)) { in TestDisplayKeyword()
1461 ss2 = ULocale.getDisplayKeywordValue(localeID, key, "zh_Hans"); in TestDisplayKeyword()
1463 if (!ss1.equals(ss2) || !ss1.equals(ss3)) { in TestDisplayKeyword()

12