/external/libcxx/test/std/experimental/string.view/string.view.find/ |
find_first_not_of_pointer_size.pass.cpp | 156 constexpr SV sv2 { "abcde", 5 }; 160 static_assert (sv2.find_first_not_of( "", 0) == 0, "" ); 161 static_assert (sv2.find_first_not_of( "gfsrt", 0) == 0, "" ); 162 static_assert (sv2.find_first_not_of( "lecar", 0) == 1, "" );
|
find_first_of_pointer_size.pass.cpp | 156 constexpr SV sv2 { "abcde", 5 }; 160 static_assert (sv2.find_first_of( "", 0) == SV::npos, "" ); 161 static_assert (sv2.find_first_of( "gfsrt", 0) == SV::npos, "" ); 162 static_assert (sv2.find_first_of( "lecar", 0) == 0, "" );
|
find_last_not_of_pointer_size.pass.cpp | 156 constexpr SV sv2 { "abcde", 5 }; 160 static_assert (sv2.find_last_not_of( "", 0) == 0, "" ); 161 static_assert (sv2.find_last_not_of( "gfsrt", 5) == 4, "" ); 162 static_assert (sv2.find_last_not_of( "lecar", 5) == 3, "" );
|
find_last_of_pointer_size.pass.cpp | 156 constexpr SV sv2 { "abcde", 5 }; 160 static_assert (sv2.find_last_of( "", 0) == SV::npos, "" ); 161 static_assert (sv2.find_last_of( "gfsrt", 5) == SV::npos, "" ); 162 static_assert (sv2.find_last_of( "lecar", 5) == 4, "" );
|
find_pointer_size.pass.cpp | 162 constexpr SV sv2 { "abcde", 5 }; 166 static_assert (sv2.find( "") == 0, "" ); 167 static_assert (sv2.find( "abcde") == 0, "" ); 168 static_assert (sv2.find( "abcde", 1) == SV::npos, "" );
|
rfind_pointer_size.pass.cpp | 162 constexpr SV sv2 { "abcde", 5 }; 166 static_assert (sv2.rfind( "") == 5, "" ); 167 static_assert (sv2.rfind( "abcde") == 0, "" ); 168 static_assert (sv2.rfind( "abcde", 1) == 0, "" );
|
find_last_not_of_pointer_size_size.pass.cpp | 383 constexpr SV sv2 { "abcde", 5 }; 387 static_assert (sv2.find_last_not_of( "", 0, 0) == 0, "" ); 388 static_assert (sv2.find_last_not_of( "gfsrt", 5, 0) == 4, "" ); 389 static_assert (sv2.find_last_not_of( "lecar", 5, 0) == 4, "" );
|
rfind_pointer_size_size.pass.cpp | 382 constexpr SV sv2 { "abcde", 5 }; 387 static_assert (sv2.rfind( "", 0, 0 ) == 0, "" ); 388 static_assert (sv2.rfind( "abcde", 0, 0 ) == 0, "" ); 389 static_assert (sv2.rfind( "abcde", 0, 1 ) == 0, "" );
|
find_first_not_of_pointer_size_size.pass.cpp | 383 constexpr SV sv2 { "abcde", 5 }; 387 static_assert (sv2.find_first_not_of( "", 0, 0) == 0, "" ); 388 static_assert (sv2.find_first_not_of( "gfsrt", 0, 5) == 0, "" ); 389 static_assert (sv2.find_first_not_of( "lecar", 0, 5) == 1, "" );
|
find_first_of_pointer_size_size.pass.cpp | 383 constexpr SV sv2 { "abcde", 5 }; 387 static_assert (sv2.find_first_of( "", 0, 0) == SV::npos, "" ); 388 static_assert (sv2.find_first_of( "gfsrt", 0, 5) == SV::npos, "" ); 389 static_assert (sv2.find_first_of( "lecar", 0, 5) == 0, "" );
|
find_last_of_pointer_size_size.pass.cpp | 383 constexpr SV sv2 { "abcde", 5 }; 387 static_assert (sv2.find_last_of( "", 0, 0) == SV::npos, "" ); 388 static_assert (sv2.find_last_of( "gfsrt", 5, 5) == SV::npos, "" ); 389 static_assert (sv2.find_last_of( "lecar", 5, 5) == 4, "" );
|
find_pointer_size_size.pass.cpp | 383 constexpr SV sv2 { "abcde", 5 }; 388 static_assert (sv2.find( "", 0, 0 ) == 0, "" ); 389 static_assert (sv2.find( "abcde", 0, 0 ) == 0, "" ); 390 static_assert (sv2.find( "abcde", 0, 1 ) == 0, "" );
|
/external/libcxx/test/std/experimental/string.view/string.view.ops/ |
compare.pointer_size.pass.cpp | 437 constexpr SV sv2 { "abcde", 5 }; 440 static_assert ( sv2.compare(0, 2, "") == 1, "" ); 441 static_assert ( sv2.compare(0, 6, "abcde") == 0, "" );
|
compare.size_size_sv_pointer_size.pass.cpp | [all...] |
compare.size_size_sv_size_size.pass.cpp | 25 std::experimental::basic_string_view<CharT> sv2, size_t pos2, size_t n2, 30 assert ( sign( sv1.compare(pos1, n1, sv2, pos2, n2)) == sign(expected)); 32 assert(pos2 <= sv2.size()); 34 catch (const std::out_of_range&) { assert(pos1 > sv1.size() || pos2 > sv2.size()); } 45 string_view_t sv2 ( s2 ); 46 test1(sv1, pos1, n1, sv2, pos2, n2, expected); [all...] |
/prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/ |
saxon-9.1.0.8.jar | |