HomeSort by relevance Sort by last modified time
    Searched defs:SV (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/libcxx/test/std/strings/string.view/string.view.template/
ends_with.char.pass.cpp 24 typedef std::string_view SV;
25 SV sv1 {};
26 SV sv2 { "abcde", 5 };
38 typedef std::basic_string_view<char, constexpr_char_traits<char>> SV;
39 constexpr SV sv1 {};
40 constexpr SV sv2 { "abcde", 5 };
starts_with.char.pass.cpp 24 typedef std::string_view SV;
25 SV sv1 {};
26 SV sv2 { "abcde", 5 };
38 typedef std::basic_string_view<char, constexpr_char_traits<char>> SV;
39 constexpr SV sv1 {};
40 constexpr SV sv2 { "abcde", 5 };
  /external/elfutils/backends/
aarch64_cfi.c 57 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
59 SV (19), SV (20), SV (21), SV (22), SV (23),
60 SV (24), SV (25), SV (26), SV (27), SV (28)
    [all...]
m68k_cfi.c 42 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
44 SV (2), SV (3), SV (4), SV (5), SV (6), SV (7),
45 SV (10), SV (11), SV (12), SV (13), SV (14)
    [all...]
ppc_cfi.c 53 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
54 SV (2), /* r2 is TOC pointer. */
55 SV (13), /* Reserved as system thread id (is it for CFI?). */
57 SV (14), SV (15), SV (16), SV (17), SV (18), SV (19), SV (20), SV (21)
    [all...]
riscv_cfi.c 50 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
53 SV (1),
56 SV(8), SV (9), SV (18), SV (19), SV (20), SV (21),
57 SV (22), SV (23), SV (24), SV (25), SV (26), SV (27)
    [all...]
s390_cfi.c 50 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
51 SV (6), SV (7), SV (8), SV (9), SV (10), /* r6-r13, r15 */
52 SV (11), SV (12), SV (13), SV (15)
    [all...]
sparc_cfi.c 43 #define SV(n) DW_CFA_same_value, ULEB128_7 (n)
45 SV (0), SV (1), SV (2), SV (3), SV (4), SV (5), SV (6), SV (7),
47 SV (8), SV (9), SV (10), SV (11), SV (12), SV (13), SV (14), SV (15)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_append/
string_view.pass.cpp 13 // append(basic_string_view<charT,traits> sv);
22 template <class S, class SV>
24 test(S s, SV sv, S expected)
26 s.append(sv);
35 typedef std::string_view SV;
36 test(S(), SV(), S());
37 test(S(), SV("12345"), S("12345"));
38 test(S(), SV("1234567890"), S("1234567890"));
39 test(S(), SV("12345678901234567890"), S("12345678901234567890"))
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op!=/
string_string_view.pass.cpp 19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string SV;
31 test(S(""), SV(""), false);
32 test(S(""), SV("abcde"), true);
33 test(S(""), SV("abcdefghij"), true);
34 test(S(""), SV("abcdefghijklmnopqrst"), true);
35 test(S("abcde"), SV(""), true);
36 test(S("abcde"), SV("abcde"), false);
37 test(S("abcde"), SV("abcdefghij"), true)
    [all...]
string_view_string.pass.cpp 19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV;
31 test(SV(""), S(""), false);
32 test(SV(""), S("abcde"), true);
33 test(SV(""), S("abcdefghij"), true);
34 test(SV(""), S("abcdefghijklmnopqrst"), true);
35 test(SV("abcde"), S(""), true);
36 test(SV("abcde"), S("abcde"), false);
37 test(SV("abcde"), S("abcdefghij"), true)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_operator==/
string_string_view.pass.cpp 19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV;
31 test(S(""), SV(""), true);
32 test(S(""), SV("abcde"), false);
33 test(S(""), SV("abcdefghij"), false);
34 test(S(""), SV("abcdefghijklmnopqrst"), false);
35 test(S("abcde"), SV(""), false);
36 test(S("abcde"), SV("abcde"), true);
37 test(S("abcde"), SV("abcdefghij"), false)
    [all...]
string_view_string.pass.cpp 19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV;
31 test(SV(""), S(""), true);
32 test(SV(""), S("abcde"), false);
33 test(SV(""), S("abcdefghij"), false);
34 test(SV(""), S("abcdefghijklmnopqrst"), false);
35 test(SV("abcde"), S(""), false);
36 test(SV("abcde"), S("abcde"), true);
37 test(SV("abcde"), S("abcdefghij"), false)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_opgt/
string_string_view.pass.cpp 19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV;
31 test(S(""), SV(""), false);
32 test(S(""), SV("abcde"), false);
33 test(S(""), SV("abcdefghij"), false);
34 test(S(""), SV("abcdefghijklmnopqrst"), false);
35 test(S("abcde"), SV(""), true);
36 test(S("abcde"), SV("abcde"), false);
37 test(S("abcde"), SV("abcdefghij"), false)
    [all...]
string_view_string.pass.cpp 19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV;
31 test(SV(""), S(""), false);
32 test(SV(""), S("abcde"), false);
33 test(SV(""), S("abcdefghij"), false);
34 test(SV(""), S("abcdefghijklmnopqrst"), false);
35 test(SV("abcde"), S(""), true);
36 test(SV("abcde"), S("abcde"), false);
37 test(SV("abcde"), S("abcdefghij"), false)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_opgt=/
string_string_view.pass.cpp 19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV;
31 test(S(""), SV(""), true);
32 test(S(""), SV("abcde"), false);
33 test(S(""), SV("abcdefghij"), false);
34 test(S(""), SV("abcdefghijklmnopqrst"), false);
35 test(S("abcde"), SV(""), true);
36 test(S("abcde"), SV("abcde"), true);
37 test(S("abcde"), SV("abcdefghij"), false)
    [all...]
string_view_string.pass.cpp 19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV;
31 test(SV(""), S(""), true);
32 test(SV(""), S("abcde"), false);
33 test(SV(""), S("abcdefghij"), false);
34 test(SV(""), S("abcdefghijklmnopqrst"), false);
35 test(SV("abcde"), S(""), true);
36 test(SV("abcde"), S("abcde"), true);
37 test(SV("abcde"), S("abcdefghij"), false)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt/
string_string_view.pass.cpp 19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV;
31 test(S(""), SV(""), false);
32 test(S(""), SV("abcde"), true);
33 test(S(""), SV("abcdefghij"), true);
34 test(S(""), SV("abcdefghijklmnopqrst"), true);
35 test(S("abcde"), SV(""), false);
36 test(S("abcde"), SV("abcde"), false);
37 test(S("abcde"), SV("abcdefghij"), true)
    [all...]
string_view_string.pass.cpp 19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV;
31 test(SV(""), S(""), false);
32 test(SV(""), S("abcde"), true);
33 test(SV(""), S("abcdefghij"), true);
34 test(SV(""), S("abcdefghijklmnopqrst"), true);
35 test(SV("abcde"), S(""), false);
36 test(SV("abcde"), S("abcde"), false);
37 test(SV("abcde"), S("abcdefghij"), true)
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt=/
string_string_view.pass.cpp 19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV;
31 test(S(""), SV(""), true);
32 test(S(""), SV("abcde"), true);
33 test(S(""), SV("abcdefghij"), true);
34 test(S(""), SV("abcdefghijklmnopqrst"), true);
35 test(S("abcde"), SV(""), false);
36 test(S("abcde"), SV("abcde"), true);
37 test(S("abcde"), SV("abcdefghij"), true)
    [all...]
string_view_string.pass.cpp 19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV;
31 test(SV(""), S(""), true);
32 test(SV(""), S("abcde"), true);
33 test(SV(""), S("abcdefghij"), true);
34 test(SV(""), S("abcdefghijklmnopqrst"), true);
35 test(SV("abcde"), S(""), false);
36 test(SV("abcde"), S("abcde"), true);
37 test(SV("abcde"), S("abcdefghij"), true)
    [all...]
  /external/libcxx/test/std/strings/string.view/string.view.cons/
from_ptr_len.pass.cpp 26 typedef std::basic_string_view<CharT> SV;
27 LIBCPP_ASSERT_NOEXCEPT(SV(s, sz));
29 SV sv1 ( s, sz );
from_string.pass.cpp 27 typedef std::basic_string_view<CharT, Traits> SV;
28 ASSERT_NOEXCEPT(SV(str));
30 SV sv1 ( str );
  /external/libcxx/test/std/strings/string.view/string.view.modifiers/
remove_prefix.pass.cpp 23 typedef std::basic_string_view<CharT> SV;
25 SV sv1 ( s );
44 typedef std::basic_string_view<char> SV;
45 SV sv1{ "ABCDEFGHIJKL", n };
remove_suffix.pass.cpp 22 typedef std::basic_string_view<CharT> SV;
24 SV sv1 ( s );
44 typedef std::basic_string_view<char> SV;
45 SV sv1{ "ABCDEFGHIJKL", n };

Completed in 602 milliseconds

1 2 3 4 5 6