Home
last modified time | relevance | path

Searched refs:ss1 (Results 1 - 17 of 17) sorted by relevance

/third_party/googletest/googlemock/test/
H A Dgmock-cardinalities_test.cc93 stringstream ss1; in TEST() local
94 Cardinality::DescribeActualCallCountTo(1, &ss1); in TEST()
95 EXPECT_EQ("called once", ss1.str()); in TEST()
163 stringstream ss1; in TEST() local
164 AtLeast(1).DescribeTo(&ss1); in TEST()
165 EXPECT_PRED_FORMAT2(IsSubstring, "at least once", ss1.str()); in TEST()
216 stringstream ss1; in TEST() local
217 AtMost(1).DescribeTo(&ss1); in TEST()
218 EXPECT_PRED_FORMAT2(IsSubstring, "called at most once", ss1.str()); in TEST()
367 stringstream ss1; in TEST() local
[all...]
H A Dgmock-matchers-misc_test.cc643 stringstream ss1; in TEST_P() local
646 std::make_tuple('a', 10), &ss1); in TEST_P()
647 EXPECT_EQ("", ss1.str()); // Successful match. in TEST_P()
/third_party/pulseaudio/src/tests/
H A Dremix-test.c85 pa_sample_spec ss1, ss2; in main() local
87 ss1.channels = maps[i].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 Dstldec.c56 int hh1, mm1, ss1, ms1; in get_pts() local
61 &hh1, &mm1, &ss1, &ms1, in get_pts()
63 int64_t start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1; in get_pts()
H A Dassenc.c162 int hh1, mm1, ss1, ms1; in write_packet() local
184 ss1 = (int)(start / 100) % 60; ms1 = (int)(start % 100); in write_packet()
186 if (hh1 > 9) hh1 = 9, mm1 = 59, ss1 = 59, ms1 = 99; in write_packet()
191 layer, hh1, mm1, ss1, ms1, hh2, mm2, ss2, ms2, p); in write_packet()
H A Dassdec.c57 int hh1, mm1, ss1, ms1; in read_dialogue() local
61 &hh1, &mm1, &ss1, &ms1, in read_dialogue()
71 *start = (hh1*3600LL + mm1*60LL + ss1) * 100LL + ms1; in read_dialogue()
H A Dsubviewerdec.c65 int hh1, mm1, ss1, ms1; in read_ts() local
71 &hh1, &mm1, &ss1, &ms1p1, &ms1, &ms1p2, &hh2, &mm2, &ss2, &ms2p1, &ms2, &ms2p2) == 8) { in read_ts()
78 *start = (hh1*3600LL + mm1*60LL + ss1) * 1000LL + ms1 * multiplier1; in read_ts()
H A Dsrtdec.c74 int hh1, mm1, ss1, ms1; in get_event_info() local
82 &hh1, &mm1, &ss1, &ms1, in get_event_info()
85 const int64_t start = (hh1*3600LL + mm1*60LL + ss1) * 1000LL + ms1; in get_event_info()
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/
H A Darpa_inet_test.cpp304 sockaddr_storage ss1; in HWTEST_F() local
305 EXPECT_EQ(1, inet_pton(AF_INET6, "::1", &ss1)); in HWTEST_F()
308 const char* result1 = inet_ntop(AF_INET6, &ss1, s1, INET_ADDRSTRLEN); in HWTEST_F()
309 const char* result2 = inet_ntop(AF_INET6, &ss1, s1, INET6_ADDRSTRLEN); in HWTEST_F()
310 const char* result3 = inet_ntop(AF_INET6, &ss1, s1, 2 * INET6_ADDRSTRLEN); in HWTEST_F()
/third_party/ffmpeg/libavutil/ppc/
H A Dfloat_dsp_altivec.c78 vec_f d, ss0, ss1, ss2, t0, t1, edges; in ff_vector_fmul_add_altivec() local
84 ss1 = vec_ld(0, src1 + i); in ff_vector_fmul_add_altivec()
87 d = vec_madd(ss0, ss1, ss2); in ff_vector_fmul_add_altivec()
/third_party/typescript/tests/baselines/reference/
H A DtypeGuardsInClassAccessors.js80 private static get ss1() {
91 private static set ss1(param: string | number) {
184 Object.defineProperty(ClassWithAccessors, "ss1", {
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DULocaleTest.java1442 String ss1 = loc.getDisplayKeywordValue(key, ULocale.US); in TestDisplayKeyword()
1445 if (!ss1.equals(ss2) || !ss1.equals(ss3)) { in TestDisplayKeyword()
1448 if (ULocale.getDefault().equals(ULocale.US) && !ss1.equals(ss0)) { in TestDisplayKeyword()
1451 if (!ss1.equals(h[0].get(type))) { in TestDisplayKeyword()
1453 " in English expected \"" + h[0].get(type) + "\" saw \"" + ss1 + "\" instead"); in TestDisplayKeyword()
1455 logln("OK: getDisplayKeywordValue for key: " + key + " in English got " + ss1); in TestDisplayKeyword()
1460 ss1 = loc.getDisplayKeywordValue(key, ULocale.CHINA); in TestDisplayKeyword()
1463 if (!ss1.equals(ss2) || !ss1 in TestDisplayKeyword()
[all...]
/third_party/googletest/googletest/test/
H A Dgoogletest-printers-test.cc1716 ::std::stringstream ss1; in TEST() local
1717 UniversalTersePrint(s1, &ss1); in TEST()
1718 EXPECT_EQ("\"abc\"", ss1.str()); in TEST()
1753 ::std::stringstream ss1; in TEST() local
1754 UniversalPrint(s1, &ss1); in TEST()
1755 EXPECT_EQ(PrintPointer(s1) + " pointing to \"abc\"", std::string(ss1.str())); in TEST()
1770 ::std::stringstream ss1; in TEST() local
1771 UniversalPrint(str, &ss1); in TEST()
1772 EXPECT_EQ("\"\\\"Line\\0 1\\\"\\nLine 2\"", ss1.str()); in TEST()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DULocaleTest.java1510 String ss1 = loc.getDisplayKeywordValue(key, ULocale.US); in TestDisplayKeyword()
1513 if (!ss1.equals(ss2) || !ss1.equals(ss3)) { in TestDisplayKeyword()
1516 if (ULocale.getDefault().equals(ULocale.US) && !ss1.equals(ss0)) { in TestDisplayKeyword()
1519 if (!ss1.equals(h[0].get(type))) { in TestDisplayKeyword()
1521 " in English expected \"" + h[0].get(type) + "\" saw \"" + ss1 + "\" instead"); in TestDisplayKeyword()
1523 logln("OK: getDisplayKeywordValue for key: " + key + " in English got " + ss1); in TestDisplayKeyword()
1528 ss1 = loc.getDisplayKeywordValue(key, ULocale.CHINA); in TestDisplayKeyword()
1531 if (!ss1.equals(ss2) || !ss1 in TestDisplayKeyword()
[all...]
/third_party/json/tests/src/
H A Dunit-deserialization.cpp225 std::stringstream ss1; variable
228 ss1 << R"(["foo",1,2,3,false,{"one":1}])";
231 json j = json::parse(ss1);
313 std::stringstream ss1; variable
317 ss1 << R"(["foo",1,2,3,false,{"one":1})";
323 CHECK_THROWS_WITH_AS(_ = json::parse(ss1), "[json.exception.parse_error.101] parse error at line 1, column 29: syntax error while parsing array - unexpected end of input; expected ']'", json::parse_error&);
/third_party/toybox/toys/posix/
H A Dfind.c554 char *name, *ss1 = ss[1]; in do_find() local
566 fprintf(stderr, "[%s] %s", ss1, name); in do_find()
/third_party/node/deps/v8/src/diagnostics/mips/
H A Ddisasm-mips.cc912 DCHECK(STRING_STARTS_WITH(format, "ss1")); /* ext size */ in FormatOption()
1457 Format(instr, "ext 'rt, 'rs, 'sa, 'ss1"); in DecodeTypeRegisterSPECIAL3()

Completed in 21 milliseconds