HomeSort by relevance Sort by last modified time
    Searched refs:find_last_not_of (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/libcxx/test/std/experimental/string.view/string.view.find/
find_last_not_of_char_size.pass.cpp 12 // const size_type find_last_not_of(charT c, size_type pos = npos) const;
24 assert(s.find_last_not_of(c, pos) == x);
33 assert(s.find_last_not_of(c) == x);
75 static_assert (sv1.find_last_not_of( 'i', 0 ) == SV::npos, "" );
76 static_assert (sv1.find_last_not_of( 'i', 1 ) == SV::npos, "" );
77 static_assert (sv2.find_last_not_of( 'a', 0 ) == SV::npos, "" );
78 static_assert (sv2.find_last_not_of( 'a', 1 ) == 1, "" );
79 static_assert (sv2.find_last_not_of( 'e', 5 ) == 3, "" );
find_last_not_of_pointer_size.pass.cpp 12 // constexpr size_type find_last_not_of(const charT* s, size_type pos = npos) const;
24 assert(s.find_last_not_of(str, pos) == x);
33 assert(s.find_last_not_of(str) == x);
158 static_assert (sv1.find_last_not_of( "", 0) == SV::npos, "" );
159 static_assert (sv1.find_last_not_of( "irkhs", 5) == SV::npos, "" );
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_not_of_pointer_size_size.pass.cpp 12 // constexpr size_type find_last_not_of(const charT* s, size_type pos, size_type n) const;
24 assert(s.find_last_not_of(str, pos, n) == x);
385 static_assert (sv1.find_last_not_of( "", 0, 0) == SV::npos, "" );
386 static_assert (sv1.find_last_not_of( "irkhs", 0, 5) == SV::npos, "" );
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, "" );
find_last_not_of_string_view_size.pass.cpp 12 // size_type find_last_not_of(const basic_string& str, size_type pos = npos) const;
21 assert(s.find_last_not_of(str, pos) == x);
30 assert(s.find_last_not_of(str) == x);
  /external/libcxx/test/std/strings/basic.string/string.ops/string_find.last.not.of/
char_size.pass.cpp 12 // size_type find_last_not_of(charT c, size_type pos = npos) const;
24 assert(s.find_last_not_of(c, pos) == x);
33 assert(s.find_last_not_of(c) == x);
pointer_size.pass.cpp 12 // size_type find_last_not_of(const charT* s, size_type pos = npos) const;
24 assert(s.find_last_not_of(str, pos) == x);
33 assert(s.find_last_not_of(str) == x);
string_size.pass.cpp 12 // size_type find_last_not_of(const basic_string& str, size_type pos = npos) const;
23 assert(s.find_last_not_of(str, pos) == x);
32 assert(s.find_last_not_of(str) == x);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
char_size.pass.cpp 12 // size_type find_last_not_of(charT c, size_type pos = npos) const;
24 assert(s.find_last_not_of(c, pos) == x);
33 assert(s.find_last_not_of(c) == x);
pointer_size.pass.cpp 12 // size_type find_last_not_of(const charT* s, size_type pos = npos) const;
24 assert(s.find_last_not_of(str, pos) == x);
33 assert(s.find_last_not_of(str) == x);
string_size.pass.cpp 12 // size_type find_last_not_of(const basic_string& str, size_type pos = npos) const;
23 assert(s.find_last_not_of(str, pos) == x);
32 assert(s.find_last_not_of(str) == x);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
algorithm.hpp 179 find_last_not_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, function in namespace:boost::unit_test
203 find_last_not_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, function in namespace:boost::unit_test
  /external/parameter-framework/remote-processor/
RequestMessage.cpp 164 strTrimmed.erase(strTrimmed.find_last_not_of(gacDelimiters) + 1 );
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_basic_string.i 171 find_last_not_of(const basic_string& __str, size_type __pos = npos) const;
174 find_last_not_of(const _CharT* __s, size_type __pos,
178 find_last_not_of(_CharT __c, size_type __pos = npos) const;
  /external/llvm/include/llvm/ADT/
StringRef.h 313 size_t find_last_not_of(char C, size_t From = npos) const;
319 size_t find_last_not_of(StringRef Chars, size_t From = npos) const;
518 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }
  /art/runtime/
signal_catcher.cc 52 current_cmd_line.resize(current_cmd_line.find_last_not_of('\0') + 1); // trim trailing '\0's
  /frameworks/rs/api/
Utilities.cpp 63 const size_t end = s->find_last_not_of(" ");
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 774 // find_last_not_of
775 size_type find_last_not_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
776 { return _M_non_dbg_impl.find_last_not_of(__s._M_non_dbg_impl, __pos); }
777 size_type find_last_not_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
780 return _M_non_dbg_impl.find_last_not_of(__s, __pos);
782 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
785 return _M_non_dbg_impl.find_last_not_of(__s, __pos, __n);
787 size_type find_last_not_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
788 { return _M_non_dbg_impl.find_last_not_of(__c, __pos); }

Completed in 609 milliseconds

1 2 3 4