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

1 2

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
algorithm.hpp 132 find_last_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, function in namespace:boost::unit_test
156 find_last_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, function in namespace:boost::unit_test
  /build/kati/
string_piece.cc 175 size_type StringPiece::find_last_of(const StringPiece& s, size_type pos) const { function in class:StringPiece
181 return find_last_of(s.ptr_[0], pos);
string_piece.h 166 size_type find_last_of(const StringPiece& s, size_type pos = npos) const;
167 size_type find_last_of(char c, size_type pos = npos) const { function in class:StringPiece
  /external/libweave/third_party/chromium/base/strings/
string_piece.cc 237 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { function in namespace:base::internal
string_piece.h 68 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos);
69 size_t find_last_of(const StringPiece& self, char c, size_t pos);
252 // find_last_of: Find the last occurence of one of a set of characters.
253 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
255 return internal::find_last_of(*this, s, pos);
257 size_type find_last_of(value_type c, function in class:base::BasicStringPiece
  /external/llvm/include/llvm/ADT/
SmallString.h 205 size_t find_last_of(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
206 return str().find_last_of(C, From);
213 size_t find_last_of( function in class:llvm::SmallString
215 return str().find_last_of(Chars, From);
  /external/libchrome/base/strings/
string_piece.cc 304 size_t find_last_of(const StringPiece& self, const StringPiece& s, size_t pos) { function in namespace:base::internal
324 size_t find_last_of(const StringPiece16& self, function in namespace:base::internal
string_piece.h 113 BASE_EXPORT size_t find_last_of(const StringPiece& self,
116 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
119 BASE_EXPORT size_t find_last_of(const StringPiece& self,
122 BASE_EXPORT size_t find_last_of(const StringPiece16& self,
333 // find_last_of: Find the last occurence of one of a set of characters.
334 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
336 return internal::find_last_of(*this, s, pos);
338 size_type find_last_of(value_type c, function in class:base::BasicStringPiece
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 742 // find_last_of
743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
744 { return _M_non_dbg_impl.find_last_of(__s._M_non_dbg_impl, __pos); }
745 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
748 return _M_non_dbg_impl.find_last_of(__s, __pos);
750 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
753 return _M_non_dbg_impl.find_last_of(__s, __pos, __n);
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/debug/
_string.h 742 // find_last_of
743 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
744 { return _M_non_dbg_impl.find_last_of(__s._M_non_dbg_impl, __pos); }
745 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
748 return _M_non_dbg_impl.find_last_of(__s, __pos);
750 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
753 return _M_non_dbg_impl.find_last_of(__s, __pos, __n);
755 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
stringpiece.h 387 stringpiece_ssize_type find_last_of(StringPiece s,
389 stringpiece_ssize_type find_last_of(char c, size_type pos = npos) const { function in class:google::protobuf::StringPiece
  /external/opencv3/modules/core/include/opencv2/core/
cvstd.hpp 544 size_t find_last_of(const char* s, size_t pos, size_t n) const;
545 size_t find_last_of(char c, size_t pos = npos) const;
546 size_t find_last_of(const String& str, size_t pos = npos) const;
547 size_t find_last_of(const char* s, size_t pos = npos) const;
911 size_t String::find_last_of(const char* s, size_t pos, size_t n) const function in class:cv::String
924 size_t String::find_last_of(char c, size_t pos) const function in class:cv::String
926 return find_last_of(&c, pos, 1);
930 size_t String::find_last_of(const String& str, size_t pos) const function in class:cv::String
932 return find_last_of(str.c_str(), pos, str.len_);
936 size_t String::find_last_of(const char* s, size_t pos) cons function in class:cv::String
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string.c 496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_string_sum.h 208 size_type find_last_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
209 { return _M_get_storage().find_last_of(__s, __pos); }
210 size_type find_last_of(const _CharT* __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
211 { return _M_get_storage().find_last_of(__s, __pos); }
212 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
213 { return _M_get_storage().find_last_of(__s, __pos, __n); }
214 size_type find_last_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
_string.h 988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 1783 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 1783 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 1783 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 1923 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_string.c 496 basic_string<_CharT,_Traits,_Alloc> ::find_last_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_string_sum.h 208 size_type find_last_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
209 { return _M_get_storage().find_last_of(__s, __pos); }
210 size_type find_last_of(const _CharT* __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
211 { return _M_get_storage().find_last_of(__s, __pos); }
212 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
213 { return _M_get_storage().find_last_of(__s, __pos, __n); }
214 size_type find_last_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
_string.h 988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 65 CPPUNIT_TEST(find_last_of);
124 void find_last_of();
781 void StringTest::find_last_of() function in class:StringTest
786 CPPUNIT_ASSERT( s.find_last_of("abcde") == 26 );
790 CPPUNIT_CHECK( test.find_last_of( "a", 2, 1 ) == 2 );
791 CPPUNIT_CHECK( test.find_last_of( "a", 1, 1 ) == 0 );
792 CPPUNIT_CHECK( test.find_last_of( "a", 0, 1 ) == 0 );
794 CPPUNIT_CHECK( test.find_last_of( 'a', 2 ) == 2 );
795 CPPUNIT_CHECK( test.find_last_of( 'a', 1 ) == 0 );
796 CPPUNIT_CHECK( test.find_last_of( 'a', 0 ) == 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 65 CPPUNIT_TEST(find_last_of);
124 void find_last_of();
781 void StringTest::find_last_of() function in class:StringTest
786 CPPUNIT_ASSERT( s.find_last_of("abcde") == 26 );
790 CPPUNIT_CHECK( test.find_last_of( "a", 2, 1 ) == 2 );
791 CPPUNIT_CHECK( test.find_last_of( "a", 1, 1 ) == 0 );
792 CPPUNIT_CHECK( test.find_last_of( "a", 0, 1 ) == 0 );
794 CPPUNIT_CHECK( test.find_last_of( 'a', 2 ) == 2 );
795 CPPUNIT_CHECK( test.find_last_of( 'a', 1 ) == 0 );
796 CPPUNIT_CHECK( test.find_last_of( 'a', 0 ) == 0 )
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
basic_string.h 2065 find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
    [all...]

Completed in 4134 milliseconds

1 2