Home
last modified time | relevance | path

Searched refs:sb1 (Results 1 – 25 of 33) sorted by relevance

12

/third_party/boost/libs/asio/test/
Dread_until.cpp113 std::string::allocator_type> sb1 = boost::asio::dynamic_buffer(data1); in test_dynamic_string_read_until_char() local
119 sb1.consume(sb1.size()); in test_dynamic_string_read_until_char()
120 std::size_t length = boost::asio::read_until(s, sb1, 'Z'); in test_dynamic_string_read_until_char()
125 sb1.consume(sb1.size()); in test_dynamic_string_read_until_char()
126 length = boost::asio::read_until(s, sb1, 'Z'); in test_dynamic_string_read_until_char()
131 sb1.consume(sb1.size()); in test_dynamic_string_read_until_char()
132 length = boost::asio::read_until(s, sb1, 'Z'); in test_dynamic_string_read_until_char()
136 sb1.consume(sb1.size()); in test_dynamic_string_read_until_char()
137 length = boost::asio::read_until(s, sb1, 'Z', ec); in test_dynamic_string_read_until_char()
143 sb1.consume(sb1.size()); in test_dynamic_string_read_until_char()
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DFormattedStringBuilderTest.java32 StringBuilder sb1 = new StringBuilder(); in testInsertAppendCharSequence() local
36 sb1.append(str); in testInsertAppendCharSequence()
39 assertCharSequenceEquals(str, sb1, sb2); in testInsertAppendCharSequence()
84 StringBuilder sb1 = new StringBuilder(); in testSplice() local
92 sb1.setLength(0); in testSplice()
93 sb1.append(input); in testSplice()
94 sb1.replace(startThis, endThis, replacement); in testSplice()
98 assertCharSequenceEquals(input, sb1, sb2); in testSplice()
104 sb1.setLength(0); in testSplice()
105 sb1.append(input); in testSplice()
[all …]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DFormattedStringBuilderTest.java35 StringBuilder sb1 = new StringBuilder(); in testInsertAppendCharSequence() local
39 sb1.append(str); in testInsertAppendCharSequence()
42 assertCharSequenceEquals(str, sb1, sb2); in testInsertAppendCharSequence()
87 StringBuilder sb1 = new StringBuilder(); in testSplice() local
95 sb1.setLength(0); in testSplice()
96 sb1.append(input); in testSplice()
97 sb1.replace(startThis, endThis, replacement); in testSplice()
101 assertCharSequenceEquals(input, sb1, sb2); in testSplice()
107 sb1.setLength(0); in testSplice()
108 sb1.append(input); in testSplice()
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dformatted_string_builder_test.cpp58 UnicodeString sb1; in testInsertAppendUnicodeString() local
64 sb1.append(str); in testInsertAppendUnicodeString()
69 assertEqualsImpl(sb1, sb2); in testInsertAppendUnicodeString()
116 UnicodeString sb1; in testSplice() local
123 sb1.remove(); in testSplice()
124 sb1.append(cas.input); in testSplice()
125 sb1.replace(cas.startThis, cas.endThis - cas.startThis, replacement); in testSplice()
130 assertEqualsImpl(sb1, sb2); in testSplice()
136 sb1.remove(); in testSplice()
137 sb1.append(cas.input); in testSplice()
[all …]
Dnumbertest_modifiers.cpp126 FormattedStringBuilder sb1(sb); in testCurrencySpacingEnabledModifier() local
127 assertModifierEquals(mod2, sb1, 3, true, u"USD\u00A0123", u"$$$niii", status); in testCurrencySpacingEnabledModifier()
136 assertTrue(sb1.toDebugString() + " vs " + sb2.toDebugString(), sb1.contentEquals(sb2)); in testCurrencySpacingEnabledModifier()
/third_party/typescript/tests/baselines/reference/
DintersectionWithIndexSignatures.js15 declare let sb1: { x: A } & { y: B };
18 tb1 = sb1; // Error
45 tb1 = sb1; // Error
DintersectionWithIndexSignatures.types48 declare let sb1: { x: A } & { y: B };
49 >sb1 : { x: A; } & { y: B; }
57 tb1 = sb1; // Error
58 >tb1 = sb1 : { x: A; } & { y: B; }
60 >sb1 : { x: A; } & { y: B; }
DintersectionWithIndexSignatures.symbols52 declare let sb1: { x: A } & { y: B };
53 >sb1 : Symbol(sb1, Decl(intersectionWithIndexSignatures.ts, 13, 11))
64 tb1 = sb1; // Error
66 >sb1 : Symbol(sb1, Decl(intersectionWithIndexSignatures.ts, 13, 11))
DintersectionWithIndexSignatures.errors.txt27 declare let sb1: { x: A } & { y: B };
30 tb1 = sb1; // Error
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
DModifierTest.java107 FormattedStringBuilder sb1 = new FormattedStringBuilder(sb); in testCurrencySpacingEnabledModifier() local
108 assertModifierEquals(mod2, sb1, 3, true, "USD\u00A0123", "$$$niii"); in testCurrencySpacingEnabledModifier()
114 assertTrue(sb1.toDebugString() + " vs " + sb2.toDebugString(), sb1.contentEquals(sb2)); in testCurrencySpacingEnabledModifier()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DModifierTest.java104 FormattedStringBuilder sb1 = new FormattedStringBuilder(sb); in testCurrencySpacingEnabledModifier() local
105 assertModifierEquals(mod2, sb1, 3, true, "USD\u00A0123", "$$$niii"); in testCurrencySpacingEnabledModifier()
111 assertTrue(sb1.toDebugString() + " vs " + sb2.toDebugString(), sb1.contentEquals(sb2)); in testCurrencySpacingEnabledModifier()
/third_party/mesa3d/src/intel/compiler/
Dbrw_fs_scoreboard.cpp634 const scoreboard &sb0, const scoreboard &sb1) in merge() argument
639 sb.grf_deps[i] = merge(eq, sb0.grf_deps[i], sb1.grf_deps[i]); in merge()
641 sb.addr_dep = merge(eq, sb0.addr_dep, sb1.addr_dep); in merge()
642 sb.accum_dep = merge(eq, sb0.accum_dep, sb1.accum_dep); in merge()
652 shadow(const scoreboard &sb0, const scoreboard &sb1) in shadow() argument
657 sb.grf_deps[i] = shadow(sb0.grf_deps[i], sb1.grf_deps[i]); in shadow()
659 sb.addr_dep = shadow(sb0.addr_dep, sb1.addr_dep); in shadow()
660 sb.accum_dep = shadow(sb0.accum_dep, sb1.accum_dep); in shadow()
684 operator==(const scoreboard &sb0, const scoreboard &sb1) in operator ==() argument
687 if (sb0.grf_deps[i] != sb1.grf_deps[i]) in operator ==()
[all …]
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionWithIndexSignatures.ts16 declare let sb1: { x: A } & { y: B }; variable
19 tb1 = sb1; // Error
/third_party/musl/src/math/
Derf.c169 sb1 = 3.03380607434824582924e+01, /* 0x403E568B, 0x261D5190 */ variable
205 S = 1.0+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erfc2()
Derff.c79 sb1 = 3.0338060379e+01, /* 0x41f2b459 */ variable
115 S = 1.0f+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erfc2()
/third_party/musl/porting/liteos_a/kernel/src/math/
Derff.c79 sb1 = 3.0338060379e+01, /* 0x41f2b459 */ variable
115 S = 1.0f+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erfc2()
Derf.c169 sb1 = 3.03380607434824582924e+01, /* 0x403E568B, 0x261D5190 */ variable
205 S = 1.0+s*(sb1+s*(sb2+s*(sb3+s*(sb4+s*( in erfc2()
/third_party/boost/libs/io/test/
Dios_state_unit_test.cpp218 std::stringbuf sb1, sb2("Hi there"); in ios_rdbuf_saver_unit_test() local
219 boost::io::ios_rdbuf_saver irs(s, &sb1); in ios_rdbuf_saver_unit_test()
220 BOOST_TEST_EQ(&sb1, s.rdbuf()); in ios_rdbuf_saver_unit_test()
/third_party/boost/tools/build/src/tools/features/
Dinstruction-set-feature.jam52 r6000 r8000 rm7000 rm9000 orion sb1 vr4100 vr4111 vr4120 vr4130 vr4300
/third_party/openssl/crypto/aria/
Daria.c756 static const unsigned char sb1[256] = { variable
995 o->c[i ] = sb1[x->c[i ] ^ y->c[i ]]; in sl1()
1012 o[i + 2] = sb1[x->c[i + 2] ^ y->c[i + 2]]; in sl2()
/third_party/boost/libs/program_options/doc/
Drecipes.dox52 @subsection sb1 Everything's global
/third_party/mksh/
Dfuncs.c2783 mtimecmp(const struct stat *sb1, const struct stat *sb2) in mtimecmp() argument
2785 if (sb1->st_mtime < sb2->st_mtime) in mtimecmp()
2787 if (sb1->st_mtime > sb2->st_mtime) in mtimecmp()
2790 if (sb1->st_mtimensec < sb2->st_mtimensec) in mtimecmp()
2792 if (sb1->st_mtimensec > sb2->st_mtimensec) in mtimecmp()
/third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_lib/
Dlibcpuset.c436 struct stat sb1, sb2; in samefile() local
438 if (stat(path1, &sb1) != 0) in samefile()
442 return sb1.st_ino == sb2.st_ino && sb1.st_dev == sb2.st_dev; in samefile()
/third_party/wayland_standard/
Dconfig.sub1080 sb1-*)
/third_party/libevdev/build-aux/
Dconfig.sub1076 sb1-*)

12