/third_party/googletest/googlemock/test/ |
H A D | gmock-cardinalities_test.cc | 97 stringstream ss2; in TEST() local 98 Cardinality::DescribeActualCallCountTo(2, &ss2); in TEST() 99 EXPECT_EQ("called twice", ss2.str()); in TEST() 167 stringstream ss2; in TEST() local 168 c.DescribeTo(&ss2); in TEST() 169 EXPECT_PRED_FORMAT2(IsSubstring, "at least twice", ss2.str()); in TEST() 220 stringstream ss2; in TEST() local 221 c.DescribeTo(&ss2); in TEST() 222 EXPECT_PRED_FORMAT2(IsSubstring, "called at most twice", ss2.str()); in TEST() 371 stringstream ss2; in TEST() local [all...] |
H A D | gmock-matchers-misc_test.cc | 649 stringstream ss2; in TEST_P() local 652 std::make_tuple(2, 'b'), &ss2); in TEST_P() 658 ss2.str()); // Failed match where both arguments need explanation. in TEST_P()
|
/third_party/pulseaudio/src/tests/ |
H A D | remix-test.c | 85 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/ffmpeg/libavformat/ |
H A D | stldec.c | 57 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()
|
H A D | assenc.c | 163 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()
|
H A D | assdec.c | 58 int hh2, mm2, ss2, ms2; in read_dialogue() local 62 &hh2, &mm2, &ss2, &ms2, &pos) >= 8 && pos > 0) { in read_dialogue() 70 end = (hh2*3600LL + mm2*60LL + ss2) * 100LL + ms2; in read_dialogue()
|
H A D | subviewerdec.c | 66 int hh2, mm2, ss2, ms2; in read_ts() local 71 &hh1, &mm1, &ss1, &ms1p1, &ms1, &ms1p2, &hh2, &mm2, &ss2, &ms2p1, &ms2, &ms2p2) == 8) { in read_ts() 77 end = (hh2*3600LL + mm2*60LL + ss2) * 1000LL + ms2 * multiplier2; in read_ts()
|
H A D | srtdec.c | 75 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/ffmpeg/libavutil/ppc/ |
H A D | float_dsp_altivec.c | 78 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/googletest/googletest/test/ |
H A D | googletest-printers-test.cc | 1721 ::std::stringstream ss2; in TEST() local 1722 UniversalTersePrint(s2, &ss2); in TEST() 1723 EXPECT_EQ("\"abc\"", ss2.str()); in TEST() 1758 ::std::stringstream ss2; in TEST() local 1759 UniversalPrint(s2, &ss2); in TEST() 1760 EXPECT_EQ(PrintPointer(s2) + " pointing to \"abc\"", std::string(ss2.str())); in TEST() 1775 ::std::stringstream ss2; in TEST() local 1776 UniversalPrint(mutable_str, &ss2); in TEST() 1777 EXPECT_EQ("\"\\\"Line\\0 1\\\"\\nLine 2\"", ss2.str()); in TEST()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
H A D | ULocaleTest.java | 1443 String ss2 = ULocale.getDisplayKeywordValue(localeID, key, "en_US"); in TestDisplayKeyword() 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()
|
/third_party/json/tests/src/ |
H A D | unit-deserialization.cpp | 226 std::stringstream ss2; variable 229 ss2 << R"(["foo",1,2,3,false,{"one":1}])"; 232 CHECK(json::accept(ss2));
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | ULocaleTest.java | 1511 String ss2 = ULocale.getDisplayKeywordValue(localeID, key, "en_US"); in TestDisplayKeyword() 1513 if (!ss1.equals(ss2) || !ss1.equals(ss3)) { in TestDisplayKeyword() 1529 ss2 = ULocale.getDisplayKeywordValue(localeID, key, "zh_Hans"); in TestDisplayKeyword() 1531 if (!ss1.equals(ss2) || !ss1.equals(ss3)) { in TestDisplayKeyword()
|
/third_party/node/deps/v8/src/diagnostics/mips/ |
H A D | disasm-mips.cc | 916 DCHECK(STRING_STARTS_WITH(format, "ss2")); /* ins size */ in FormatOption() 1449 Format(instr, "ins 'rt, 'rs, 'sa, 'ss2"); in DecodeTypeRegisterSPECIAL3()
|