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

1 2 3

  /external/chromium/base/
string_piece_unittest.cc 317 ASSERT_EQ(h.find_last_of(a), StringPiece::npos);
318 ASSERT_EQ(g.find_last_of(a), g.size()-1);
319 ASSERT_EQ(a.find_last_of(b), 2U);
320 ASSERT_EQ(a.find_last_of(c), a.size()-1);
321 ASSERT_EQ(f.find_last_of(i), 6U);
322 ASSERT_EQ(a.find_last_of('a'), 0U);
323 ASSERT_EQ(a.find_last_of('b'), 1U);
324 ASSERT_EQ(a.find_last_of('z'), 25U);
325 ASSERT_EQ(a.find_last_of('a', 5), 0U);
326 ASSERT_EQ(a.find_last_of('b', 5), 1U)
    [all...]
string_piece.cc 150 size_type StringPiece::find_last_of(const StringPiece& s, size_type pos) const { function in class:base::StringPiece
156 return find_last_of(s.ptr_[0], pos);
string_piece.h 149 size_type find_last_of(const StringPiece& s, size_type pos = npos) const;
150 size_type find_last_of(char c, size_type pos = npos) const { function in class:base::StringPiece
vlog.cc 87 module.find_last_of("\\/");
  /external/llvm/include/llvm/ADT/
SmallString.h 201 /// find_last_of - Find the last character in the string that is \arg C, or
203 size_t find_last_of(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
204 return str().find_last_of(C, From);
207 /// find_last_of - Find the last character in the string that is in \arg C,
211 size_t find_last_of( function in class:llvm::SmallString
213 return str().find_last_of(Chars, From);
StringRef.h 283 /// find_last_of - Find the last character in the string that is \arg C, or
285 size_type find_last_of(char C, size_t From = npos) const {
289 /// find_last_of - Find the last character in the string that is in \arg C,
293 size_type find_last_of(StringRef Chars, size_t From = npos) const;
  /frameworks/compile/mclinker/lib/MC/
MCLDFile.cpp 40 size_t pos = pName.find_last_of(sys::fs::separator);
  /external/webrtc/test/testsupport/
fileutils.cc 53 int path_delimiter_index = current_path.find_last_of(kPathDelimiter);
64 path_delimiter_index = current_path.find_last_of(kPathDelimiter);
  /frameworks/compile/mclinker/lib/Support/
Path.cpp 146 size_t begin_pos = m_PathName.find_last_of(separator)+1;
154 size_t begin_pos = m_PathName.find_last_of('.');
  /external/chromium/third_party/libjingle/source/talk/base/
pathutils.cc 134 std::string::size_type pos = pathname.find_last_of(FOLDER_DELIMS);
163 pos = folder_.find_last_of(FOLDER_DELIMS, folder_.length() - 2);
175 pos = folder_.find_last_of(FOLDER_DELIMS, folder_.length() - 2);
  /external/oprofile/libutil++/
string_manip.cpp 26 string::size_type pos = result.find_last_of(ch);
file_manip.cpp 159 size_t pos = result.find_last_of('/');
  /external/stlport/test/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-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...]
  /external/astl/tests/
test_string.cpp 1027 EXPECT_TRUE(s.find_last_of('a') == string::npos);
1028 EXPECT_TRUE(s.find_last_of('a', 0) == string::npos);
1029 EXPECT_TRUE(s.find_last_of('a', 10) == string::npos);
1031 EXPECT_TRUE(s.find_last_of('a', 10) == 10);
1032 EXPECT_TRUE(s.find_last_of('a', 9) == 7);
1033 EXPECT_TRUE(s.find_last_of('a', 0) == 0);
1035 EXPECT_TRUE(s.find_last_of('a') == 0);
1037 // For char (set of size 1) find_last_of is equiv to rfind(char, pos).
  /external/stlport/stlport/stl/
_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
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_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
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_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
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_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
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_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
  /external/astl/include/
string 284 return find_last_of(c, pos);
299 size_type find_last_of(value_type c, size_type pos = npos) const;
  /external/protobuf/src/google/protobuf/testing/
file.cc 106 string::size_type slashpos = path.find_last_of('/');
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.cc 136 string::size_type last_slash = file->name().find_last_of('/');
211 string base_name = full_name.substr(0, full_name.find_last_of('.'));
  /external/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

Completed in 2117 milliseconds

1 2 3