HomeSort by relevance Sort by last modified time
    Searched refs:sv1 (Results 101 - 125 of 243) sorted by null

1 2 3 45 6 7 8 910

  /external/libcxx/test/std/experimental/string.view/string.view.find/
find_first_not_of_char_size.pass.cpp 75 constexpr SV sv1;
78 static_assert (sv1.find_first_not_of( 'q', 0 ) == SV::npos, "" );
79 static_assert (sv1.find_first_not_of( 'q', 1 ) == SV::npos, "" );
find_first_of_char_size.pass.cpp 73 constexpr SV sv1;
76 static_assert (sv1.find_first_of( 'e', 0 ) == SV::npos, "" );
77 static_assert (sv1.find_first_of( 'e', 1 ) == SV::npos, "" );
find_last_of_char_size.pass.cpp 73 constexpr SV sv1;
76 static_assert (sv1.find_last_of( 'i', 0 ) == SV::npos, "" );
77 static_assert (sv1.find_last_of( 'i', 1 ) == SV::npos, "" );
find_string_view_size.pass.cpp 155 constexpr SV sv1; local
158 static_assert (sv1.find(sv1) == 0, "" );
159 static_assert (sv1.find(sv2) == SV::npos, "" );
160 static_assert (sv2.find(sv1) == 0, "" );
rfind_string_view_size.pass.cpp 155 constexpr SV sv1; local
158 static_assert (sv1.rfind(sv1) == 0, "" );
159 static_assert (sv1.rfind(sv2) == SV::npos, "" );
160 static_assert (sv2.rfind(sv1) == 5, "" );
find_first_not_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_first_not_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_first_not_of( "irkhs", 0) == SV::npos, "" );
find_first_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_first_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_first_of( "irkhs", 0) == SV::npos, "" );
find_last_not_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_last_not_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_last_not_of( "irkhs", 5) == SV::npos, "" );
find_last_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_last_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_last_of( "irkhs", 5) == SV::npos, "" );
find_pointer_size.pass.cpp 162 constexpr SV sv1; local
165 static_assert (sv1.find( "") == 0, "" );
166 static_assert (sv1.find( "abcde") == SV::npos, "" );
rfind_pointer_size.pass.cpp 162 constexpr SV sv1; local
165 static_assert (sv1.rfind( "") == 0, "" );
166 static_assert (sv1.rfind( "abcde") == SV::npos, "" );
  /external/libcxx/test/std/strings/string.view/string.view.find/
find_char_size.pass.cpp 73 constexpr SV sv1; local
76 static_assert (sv1.find( 'c', 0 ) == SV::npos, "" );
77 static_assert (sv1.find( 'c', 1 ) == SV::npos, "" );
find_first_of_char_size.pass.cpp 73 constexpr SV sv1;
76 static_assert (sv1.find_first_of( 'e', 0 ) == SV::npos, "" );
77 static_assert (sv1.find_first_of( 'e', 1 ) == SV::npos, "" );
find_last_of_char_size.pass.cpp 73 constexpr SV sv1;
76 static_assert (sv1.find_last_of( 'i', 0 ) == SV::npos, "" );
77 static_assert (sv1.find_last_of( 'i', 1 ) == SV::npos, "" );
find_string_view_size.pass.cpp 155 constexpr SV sv1; local
158 static_assert (sv1.find(sv1) == 0, "" );
159 static_assert (sv1.find(sv2) == SV::npos, "" );
160 static_assert (sv2.find(sv1) == 0, "" );
rfind_string_view_size.pass.cpp 155 constexpr SV sv1; local
158 static_assert (sv1.rfind(sv1) == 0, "" );
159 static_assert (sv1.rfind(sv2) == SV::npos, "" );
160 static_assert (sv2.rfind(sv1) == 5, "" );
find_first_not_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_first_not_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_first_not_of( "irkhs", 0) == SV::npos, "" );
find_first_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_first_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_first_of( "irkhs", 0) == SV::npos, "" );
find_last_not_of_pointer_size.pass.cpp 156 constexpr SV sv1;
159 static_assert (sv1.find_last_not_of( "", 0) == SV::npos, "" );
160 static_assert (sv1.find_last_not_of( "irkhs", 5) == SV::npos, "" );
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.find/
find_char_size.pass.cpp 72 constexpr SV sv1; local
75 static_assert (sv1.find( 'c', 0 ) == SV::npos, "" );
76 static_assert (sv1.find( 'c', 1 ) == SV::npos, "" );
find_first_not_of_char_size.pass.cpp 74 constexpr SV sv1;
77 static_assert (sv1.find_first_not_of( 'q', 0 ) == SV::npos, "" );
78 static_assert (sv1.find_first_not_of( 'q', 1 ) == SV::npos, "" );
find_first_of_char_size.pass.cpp 72 constexpr SV sv1;
75 static_assert (sv1.find_first_of( 'e', 0 ) == SV::npos, "" );
76 static_assert (sv1.find_first_of( 'e', 1 ) == SV::npos, "" );
find_last_of_char_size.pass.cpp 72 constexpr SV sv1;
75 static_assert (sv1.find_last_of( 'i', 0 ) == SV::npos, "" );
76 static_assert (sv1.find_last_of( 'i', 1 ) == SV::npos, "" );
find_string_view_size.pass.cpp 154 constexpr SV sv1; local
157 static_assert (sv1.find(sv1) == 0, "" );
158 static_assert (sv1.find(sv2) == SV::npos, "" );
159 static_assert (sv2.find(sv1) == 0, "" );
rfind_string_view_size.pass.cpp 154 constexpr SV sv1; local
157 static_assert (sv1.rfind(sv1) == 0, "" );
158 static_assert (sv1.rfind(sv2) == SV::npos, "" );
159 static_assert (sv2.rfind(sv1) == 5, "" );

Completed in 894 milliseconds

1 2 3 45 6 7 8 910