Home
last modified time | relevance | path

Searched +full:- +full:s (Results 1 – 25 of 2145) sorted by relevance

12345678910>>...86

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/strings/basic.string/string.ops/string_compare/
H A Dsize_size_string_size_size.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
29 return -1; in sign()
33 template <class S>
35 test(const S& s, in test() argument
36 typename S::size_type pos1, in test()
37 typename S::size_type n1, in test()
38 const S& str, in test()
[all …]
H A Dsize_size_string.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
24 return -1; in sign()
28 template <class S>
29 TEST_CONSTEXPR_CXX20 void test(const S& s, typename S::size_type pos1, typename S::size_type n1, co… in test() argument
30 if (pos1 <= s.size()) in test()
31 assert(sign(s.compare(pos1, n1, str)) == sign(x)); in test()
35 TEST_IGNORE_NODISCARD s.compare(pos1, n1, str); in test()
38 assert(pos1 > s.size()); in test()
[all …]
/aosp_15_r20/external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
H A Dsize_size_string_size_size.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
29 return -1; in sign()
33 template <class S>
35 test(const S& s, typename S::size_type pos1, typename S::size_type n1, in test() argument
36 const S& str, typename S::size_type pos2, typename S::size_type n2, int x) in test()
38 if (pos1 <= s.size() && pos2 <= str.size()) in test()
39 assert(sign(s.compare(pos1, n1, str, pos2, n2)) == sign(x)); in test()
45 TEST_IGNORE_NODISCARD s.compare(pos1, n1, str, pos2, n2); in test()
50 assert(pos1 > s.size() || pos2 > str.size()); in test()
[all …]
H A Dsize_size_string.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
26 return -1; in sign()
30 template <class S>
32 test(const S& s, typename S::size_type pos1, typename S::size_type n1, in test() argument
33 const S& str, int x) in test()
35 if (pos1 <= s.size()) in test()
36 assert(sign(s.compare(pos1, n1, str)) == sign(x)); in test()
42 TEST_IGNORE_NODISCARD s.compare(pos1, n1, str); in test()
47 assert(pos1 > s.size()); in test()
[all …]
/aosp_15_r20/out/soong/.intermediates/bionic/libc/tools/genseccomp/linux_glibc_x86_64_PY3/
Dmeta_lic.rsp1 -mn genseccomp -mt python_binary_host -r bionic/libc/tools -mc UNKNOWN -k SPDX-license-identifier-A…
/aosp_15_r20/out/soong/.intermediates/bionic/libc/tools/genfunctosyscallnrs/linux_glibc_x86_64_PY3/
Dmeta_lic.rsp1 -mn genfunctosyscallnrs -mt python_binary_host -r bionic/libc/tools -mc UNKNOWN -k SPDX-license-ide…
/aosp_15_r20/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Dsize_size_string.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
23 template <class S>
25 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected) in test() argument
27 const typename S::size_type old_size = s.size(); in test()
28 S s0 = s; in test()
31 s.replace(pos1, n1, str); in test()
32 LIBCPP_ASSERT(s.__invariants()); in test()
33 assert(s == expected); in test()
34 typename S::size_type xlen = std::min(n1, old_size - pos1); in test()
[all …]
H A Diter_iter_string.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
22 template <class S>
24 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected) in test() argument
26 typename S::size_type old_size = s.size(); in test()
27 typename S::const_iterator first = s.begin() + pos1; in test()
28 typename S::const_iterator last = s.begin() + pos1 + n1; in test()
29 typename S::size_type xlen = last - first; in test()
30 s.replace(first, last, str); in test()
31 LIBCPP_ASSERT(s.__invariants()); in test()
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_string.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
22 template <class S>
23 TEST_CONSTEXPR_CXX20 void test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S in test() argument
24 typename S::size_type old_size = s.size(); in test()
25 typename S::const_iterator first = s.begin() + pos1; in test()
26 typename S::const_iterator last = s.begin() + pos1 + n1; in test()
27 typename S::size_type xlen = last - first; in test()
28 s.replace(first, last, str); in test()
[all …]
H A Dsize_size_string.pass.cpp1 //===----------------------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
23 template <class S>
24 TEST_CONSTEXPR_CXX20 void test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S in test() argument
25 const typename S::size_type old_size = s.size(); in test()
26 S s0 = s; in test()
28 s.replace(pos1, n1, str); in test()
29 LIBCPP_ASSERT(s.__invariants()); in test()
30 assert(s == expected); in test()
[all …]
/aosp_15_r20/external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
H A Dsize_string.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
22 template <class S>
24 test(S s, typename S::size_type pos, S str, S expected) in test() argument
26 const typename S::size_type old_size = s.size(); in test()
27 S s0 = s; in test()
30 s.insert(pos, str); in test()
31 LIBCPP_ASSERT(s.__invariants()); in test()
32 assert(s == expected); in test()
39 s.insert(pos, str); in test()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/android-non-updatable-stub-sources/
Dmeta_lic.rsp1 -mn android-non-updatable-stub-sources -mt filegroup -r frameworks/base -mc UNKNOWN -k SPDX-license
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-non-updatable-sources/
Dmeta_lic.rsp1 -mn framework-non-updatable-sources -mt filegroup -r frameworks/base -mc UNKNOWN -k SPDX-license-id…
/aosp_15_r20/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/
H A Dstring_string.pass.cpp1 //===----------------------------------------------------------------------===//
8 //===----------------------------------------------------------------------===//
39 template <class S>
40 void test0(const S& lhs, const S& rhs, const S& x) { in test0()
45 template <class S>
46 void test1(S&& lhs, const S& rhs, const S& x) { in test1()
50 template <class S>
51 void test2(const S& lhs, S&& rhs, const S& x) { in test2()
55 template <class S>
56 void test3(S&& lhs, S&& rhs, const S& x) { in test3()
[all …]
/aosp_15_r20/out/soong/.intermediates/frameworks/base/api/module-lib-api-stubs-docs-non-updatable/android_common/
Dmeta_lic.rsp1 -mn module-lib-api-stubs-docs-non-updatable -mt non_updatable_exportable_droidstubs -r frameworks/b…
/aosp_15_r20/out/soong/.intermediates/frameworks/base/api/system-api-stubs-docs-non-updatable/android_common/
Dmeta_lic.rsp1 -mn system-api-stubs-docs-non-updatable -mt non_updatable_exportable_droidstubs -r frameworks/base/…
/aosp_15_r20/out/soong/.intermediates/frameworks/base/api/api-stubs-docs-non-updatable/android_common/
Dmeta_lic.rsp1 -mn api-stubs-docs-non-updatable -mt non_updatable_exportable_droidstubs -r frameworks/base/api -mc…
/aosp_15_r20/out/soong/.intermediates/frameworks/base/api/test-api-stubs-docs-non-updatable/android_common/
Dmeta_lic.rsp1 -mn test-api-stubs-docs-non-updatable -mt non_updatable_exportable_droidstubs -r frameworks/base/ap…
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj/android_common/
Dmeta_lic.rsp1 -mn core-oj -mt java_library -r libcore -mc UNKNOWN -k SPDX-license-identifier-Apache-2.0 -k SPDX-l…
/aosp_15_r20/out/soong/.intermediates/libcore/core-oj/android_common_apex31/
Dmeta_lic.rsp1 -mn core-oj -mt java_library -r libcore -mc UNKNOWN -k SPDX-license-identifier-Apache-2.0 -k SPDX-l…
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/
Dmeta_lic.rsp1 -mn framework-minus-apex -mt java_library -r frameworks/base -mc UNKNOWN -k SPDX-license-identifier
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex-headers/android_common/
Dmeta_lic.rsp1 -mn framework-minus-apex-headers -mt java_library -r frameworks/base -mc UNKNOWN -k SPDX-license-id…
/aosp_15_r20/out/soong/.intermediates/libcore/openjdk_java_files/
Dmeta_lic.rsp1 -mn openjdk_java_files -mt filegroup -r libcore -mc UNKNOWN -k SPDX-license-identifier-Apache-2.0 -
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_java_files/
Dmeta_lic.rsp1 -mn core_oj_java_files -mt filegroup -r libcore -mc UNKNOWN -k SPDX-license-identifier-Apache-2.0 -
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/
Dmeta_lic.rsp1 -mn core_oj_api_files -mt gensrcs -r libcore -mc UNKNOWN -k SPDX-license-identifier-Apache-2.0 -k S…

12345678910>>...86