Searched refs:find_last_of (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium/base/
H A Dstring_piece_unittest.cc317 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('
[all...]
H A Dstring_piece.cc150 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);
H A Dstring_piece.h149 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
H A Dvlog.cc87 module.find_last_of("\\/");
/external/chromium_org/chrome/test/webdriver/
H A Dframe_path.cc45 size_t i = path_.find_last_of("\n");
52 size_t i = path_.find_last_of("\n");
/external/chromium_org/base/strings/
H A Dstring_piece_unittest.cc379 ASSERT_EQ(h.find_last_of(a), StringPiece::npos);
380 ASSERT_EQ(g.find_last_of(a), g.size()-1);
381 ASSERT_EQ(a.find_last_of(b), 2U);
382 ASSERT_EQ(a.find_last_of(c), a.size()-1);
383 ASSERT_EQ(f.find_last_of(i), 6U);
384 ASSERT_EQ(a.find_last_of('a'), 0U);
385 ASSERT_EQ(a.find_last_of('b'), 1U);
386 ASSERT_EQ(a.find_last_of('z'), 25U);
387 ASSERT_EQ(a.find_last_of('a', 5), 0U);
388 ASSERT_EQ(a.find_last_of('
[all...]
H A Dstring_piece.h195 BASE_EXPORT StringPieceDetail<std::string>::size_type find_last_of(
199 BASE_EXPORT StringPieceDetail<std::string>::size_type find_last_of(
320 size_type find_last_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
322 return internal::find_last_of(*this, s, pos);
325 size_type find_last_of(char c, size_type pos = npos) const { function in class:base::BasicStringPiece
/external/eigen/scripts/
H A Deigen_gen_credits.cpp85 size_t last_space = line.find_last_of(' ');
112 size_t last_space = name.find_last_of(' ');
142 size_t last_bar = line.find_last_of('|');
148 last_bar = line.find_last_of('|');
154 last_bar = line.find_last_of('|');
/external/chromium_org/chrome/browser/chromeos/cros/
H A Dnetwork_property_ui_data.cc31 size_t pos = property_key.find_last_of('.');
/external/llvm/include/llvm/ADT/
H A DSmallString.h208 size_t find_last_of(char C, size_t From = StringRef::npos) const { function in class:llvm::SmallString
209 return str().find_last_of(C, From);
216 size_t find_last_of( function in class:llvm::SmallString
218 return str().find_last_of(Chars, From);
/external/chromium_org/tools/traceline/traceline/
H A Dsym_resolver.h80 size_t last_slash = filename.find_last_of('\\');
82 filename = filename.substr(filename.find_last_of('\\') + 1);
/external/webrtc/test/testsupport/
H A Dfileutils.cc53 int path_delimiter_index = current_path.find_last_of(kPathDelimiter);
64 path_delimiter_index = current_path.find_last_of(kPathDelimiter);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dpathutils.cc134 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/chromium_org/third_party/libjingle/source/talk/base/
H A Dpathutils.cc134 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/chromium_org/net/quic/crypto/
H A Dcrypto_utils.cc58 sni.find_last_of('.') != string::npos;
/external/chromium_org/webkit/common/database/
H A Ddatabase_identifier.cc66 size_t last_underscore = identifier.find_last_of('_');
/external/oprofile/libutil++/
H A Dstring_manip.cpp26 string::size_type pos = result.find_last_of(ch);
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.cc156 size_type StringPiece::find_last_of(const StringPiece& s, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
162 return find_last_of(s.ptr_[0], pos);
H A Dstring_piece.h149 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:i18n::phonenumbers::StringPiece
/external/stlport/test/unit/
H A Dstring_test.cpp65 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( '
[all...]
/external/stlport/stlport/stl/
H A D_string_sum.h208 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/chromium_org/base/
H A Dvlog.cc87 module.find_last_of("\\/");
/external/chromium_org/chrome/renderer/plugins/
H A Dplugin_uma.cc121 size_t last_dot = extension_file_path.find_last_of('.');
/external/chromium_org/sandbox/win/src/
H A DWow64.cc146 size_t name_pos = path.find_last_of(L"\\");
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dfile.cc106 string::size_type slashpos = path.find_last_of('/');

Completed in 1971 milliseconds

1234