Searched refs:SV (Results 1 - 25 of 160) sorted by relevance

1234567

/external/elfutils/backends/
H A Dsparc_cfi.c43 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
45 SV (0), SV (1), SV (2), SV (3), SV (4), SV (5), SV (6), SV (7),
47 SV (
72 #undef SV macro
[all...]
H A Ds390_cfi.c50 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
51 SV (6), SV (7), SV (8), SV (9), SV (10), /* r6-r13, r15 */
52 SV (11), SV (12), SV (13), SV (1
55 #undef SV macro
[all...]
H A Daarch64_cfi.c57 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
59 SV (19), SV (20), SV (21), SV (22), SV (23),
60 SV (24), SV (25), SV (26), SV (2
68 #undef SV macro
[all...]
H A Dppc_cfi.c53 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
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 (2
63 #undef SV macro
[all...]
H A Darm_cfi.c60 #define SV(n) DW_CFA_same_value, ULEB128_7 (n) macro
62 SV (4), SV (5), SV (6), SV (7), SV (8), SV (10), SV (11),
65 SV (14),
67 #undef SV macro
72 #define SV macro
81 #undef SV macro
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
H A Dsize_size_T_size_size.pass.cpp35 template <class S, class SV>
38 SV sv, typename S::size_type pos2, typename S::size_type n2, int x)
40 static_assert((!std::is_same<S, SV>::value), "");
59 template <class S, class SV>
62 SV sv, typename S::size_type pos2, int x)
64 static_assert((!std::is_same<S, SV>::value), "");
83 template <class S, class SV>
86 test(S(""), 0, 0, SV(""), 0, 0, 0);
87 test(S(""), 0, 0, SV(""), 0, 1, 0);
88 test(S(""), 0, 0, SV(""),
5848 typedef std::string_view SV; typedef
5909 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
5970 typedef std::string_view SV; typedef
[all...]
H A Dsize_size_string_view.pass.cpp31 template <class S, class SV>
34 SV sv, int x)
54 template <class S, class SV>
57 test(S(""), 0, 0, SV(""), 0);
58 test(S(""), 0, 0, SV("abcde"), -5);
59 test(S(""), 0, 0, SV("abcdefghij"), -10);
60 test(S(""), 0, 0, SV("abcdefghijklmnopqrst"), -20);
61 test(S(""), 0, 1, SV(""), 0);
62 test(S(""), 0, 1, SV("abcde"), -5);
63 test(S(""), 0, 1, SV("abcdefghi
369 typedef std::string_view SV; typedef
377 typedef std::string_view SV; typedef
[all...]
H A Dstring_view.pass.cpp28 template <class S, class SV>
30 test(const S& s, SV sv, int x)
39 typedef std::string_view SV; typedef
40 test(S(""), SV(""), 0);
41 test(S(""), SV("abcde"), -5);
42 test(S(""), SV("abcdefghij"), -10);
43 test(S(""), SV("abcdefghijklmnopqrst"), -20);
44 test(S("abcde"), SV(""), 5);
45 test(S("abcde"), SV("abcde"), 0);
46 test(S("abcde"), SV("abcdefghi
60 typedef std::string_view SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Dsize_size_string_view.pass.cpp23 template <class S, class SV>
25 test(S s, typename S::size_type pos1, typename S::size_type n1, SV sv, S expected)
55 template <class S, class SV>
58 test(S(""), 0, 0, SV(""), S(""));
59 test(S(""), 0, 0, SV("12345"), S("12345"));
60 test(S(""), 0, 0, SV("1234567890"), S("1234567890"));
61 test(S(""), 0, 0, SV("12345678901234567890"), S("12345678901234567890"));
62 test(S(""), 0, 1, SV(""), S(""));
63 test(S(""), 0, 1, SV("12345"), S("12345"));
64 test(S(""), 0, 1, SV("123456789
370 typedef std::string_view SV; typedef
378 typedef std::string_view SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op!=/
H A Dstring_string_view.pass.cpp19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string SV; typedef
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("abcdefghi
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
H A Dstring_view_string.pass.cpp19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcd
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_operator==/
H A Dstring_string_view.pass.cpp19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcdefghi
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
H A Dstring_view_string.pass.cpp19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcd
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_opgt/
H A Dstring_string_view.pass.cpp19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcdefghi
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
H A Dstring_view_string.pass.cpp19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcd
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_opgt=/
H A Dstring_string_view.pass.cpp19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcdefghi
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
H A Dstring_view_string.pass.cpp19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcd
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt/
H A Dstring_string_view.pass.cpp19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcdefghi
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
H A Dstring_view_string.pass.cpp19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcd
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_oplt=/
H A Dstring_string_view.pass.cpp19 template <class S, class SV>
21 test(const S& lhs, SV rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcdefghi
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
H A Dstring_view_string.pass.cpp19 template <class S, class SV>
21 test(SV lhs, const S& rhs, bool x)
30 typedef std::string_view SV; typedef
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("abcd
51 typedef std::basic_string_view<char, std::char_traits<char>> SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find/
H A Dstring_view_size.pass.cpp19 template <class S, class SV>
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x)
28 template <class S, class SV>
30 test(const S& s, SV sv, typename S::size_type x)
37 template <class S, class SV>
40 test(S(""), SV(""), 0, 0);
41 test(S(""), SV("abcde"), 0, S::npos);
42 test(S(""), SV("abcdeabcde"), 0, S::npos);
43 test(S(""), SV("abcdeabcdeabcdeabcde"), 0, S::npos);
44 test(S(""), SV(""),
147 typedef std::string_view SV; typedef
154 typedef std::string_view SV; typedef
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.not.of/
H A Dstring_view_size.pass.cpp19 template <class S, class SV>
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x)
28 template <class S, class SV>
30 test(const S& s, SV sv, typename S::size_type x)
37 template <class S, class SV>
40 test(S(""), SV(""), 0, S::npos);
41 test(S(""), SV("laenf"), 0, S::npos);
42 test(S(""), SV("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), SV("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), SV(""),
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.first.of/
H A Dstring_view_size.pass.cpp19 template <class S, class SV>
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x)
28 template <class S, class SV>
30 test(const S& s, SV sv, typename S::size_type x)
37 template <class S, class SV>
40 test(S(""), SV(""), 0, S::npos);
41 test(S(""), SV("laenf"), 0, S::npos);
42 test(S(""), SV("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), SV("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), SV(""),
[all...]
/external/libcxx/test/std/strings/basic.string/string.ops/string_find.last.of/
H A Dstring_view_size.pass.cpp19 template <class S, class SV>
21 test(const S& s, SV sv, typename S::size_type pos, typename S::size_type x)
28 template <class S, class SV>
30 test(const S& s, SV sv, typename S::size_type x)
37 template <class S, class SV>
40 test(S(""), SV(""), 0, S::npos);
41 test(S(""), SV("laenf"), 0, S::npos);
42 test(S(""), SV("pqlnkmbdjo"), 0, S::npos);
43 test(S(""), SV("qkamfogpnljdcshbreti"), 0, S::npos);
44 test(S(""), SV(""),
[all...]

Completed in 455 milliseconds

1234567