Searched refs:rfind (Results 26 - 50 of 210) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dwebkit_finder.py54 tools_index = module_path.rfind('Tools')
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dsimplefileflags.py59 suffix = filename[filename.rfind('.'):]
/external/chromium_org/webkit/browser/database/
H A Ddatabase_util.cc24 size_t last_pound_index = vfs_file_name.rfind('#');
/external/llvm/include/llvm/ADT/
H A DStringRef.h244 size_t rfind(char C, size_t From = npos) const {
259 size_t rfind(StringRef Str) const;
286 return rfind(C, From);
484 size_t Idx = rfind(Separator);
/external/chromium/base/
H A Dstring_piece.h140 size_type rfind(const StringPiece& s, size_type pos = npos) const;
141 size_type rfind(char c, size_type pos = npos) const;
151 return rfind(c, pos);
H A Dstring_piece.cc55 size_type StringPiece::rfind(const StringPiece& s, size_type pos) const { function in class:base::StringPiece
67 size_type StringPiece::rfind(char c, size_type pos) const { function in class:base::StringPiece
H A Dvlog.cc90 base::StringPiece::size_type extension_start = module.rfind('.');
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
H A Dstring_piece.h140 size_type rfind(const StringPiece& s, size_type pos = npos) const;
141 size_type rfind(char c, size_type pos = npos) const;
151 return rfind(c, pos);
H A Dstring_piece.cc61 size_type StringPiece::rfind(const StringPiece& s, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
73 size_type StringPiece::rfind(char c, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
/external/chromium_org/base/strings/
H A Dstring_piece.h175 BASE_EXPORT StringPieceDetail<std::string>::size_type rfind(
179 BASE_EXPORT StringPieceDetail<std::string>::size_type rfind(
295 size_type rfind(const BasicStringPiece& s, size_type pos = npos) const { function in class:base::BasicStringPiece
296 return internal::rfind(*this, s, pos);
299 size_type rfind(char c, size_type pos = npos) const { function in class:base::BasicStringPiece
300 return internal::rfind(*this, c, pos);
326 return rfind(c, pos);
H A Dstring_piece.cc79 StringPiece::size_type rfind(const StringPiece& self, function in namespace:base::internal
96 StringPiece::size_type rfind(const StringPiece& self, function in namespace:base::internal
193 return rfind(self, s.data()[0], pos);
/external/llvm/unittests/ADT/
H A DStringRefTest.cpp280 EXPECT_EQ(3U, Str.rfind('l'));
281 EXPECT_EQ(StringRef::npos, Str.rfind('z'));
282 EXPECT_EQ(StringRef::npos, Str.rfind("helloworld"));
283 EXPECT_EQ(0U, Str.rfind("hello"));
284 EXPECT_EQ(1U, Str.rfind("ello"));
285 EXPECT_EQ(StringRef::npos, Str.rfind("zz"));
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_ls.cc207 string16::size_type pos = entry.name.rfind(ASCIIToUTF16(" -> "));
/external/chromium_org/base/process/
H A Dprocess_iterator_freebsd.cc101 size_t last_slash = data.rfind('/', exec_name_end);
H A Dprocess_iterator_mac.cc115 size_t last_slash = data.rfind('/', exec_name_end);
H A Dprocess_iterator_openbsd.cc109 size_t last_slash = data.rfind('/', exec_name_end);
/external/chromium_org/tools/json_schema_compiler/
H A Dcode.py99 last_space = line.rfind(' ')
/external/stlport/stlport/stl/
H A D_string_sum.h194 size_type rfind(const _BString& __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum
195 size_type rfind(const _CharT* __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum
196 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { return _M_get_storage().rfind(__s, __pos, __n); } function in class:__bstr_sum
197 size_type rfind(_CharT __c, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__c, __pos); } function in class:__bstr_sum
215 { return _M_get_storage().rfind(__c, __pos); }
/external/chromium_org/chrome/test/install_test/
H A Dchrome_installer_win.py185 root = key_name[:key_name.rfind('\\')]
186 child = key_name[key_name.rfind('\\') + 1:]
/external/chromium_org/tools/metrics/histograms/
H A Dpretty_print.py93 if s.rfind('\n') == -1: return len(s)
94 return len(s) - s.rfind('\n') - len('\n')
/external/oprofile/libpp/
H A Dparse_filename.cpp182 pos = filename_spec.rfind('.');
183 pos = filename_spec.rfind('.', pos-1);
/external/stlport/stlport/stl/debug/
H A D_string.h710 // rfind.
711 size_type rfind(const _Self& __s, size_type __pos = npos) const function in class:basic_string
712 { return _M_non_dbg_impl.rfind(__s._M_non_dbg_impl, __pos); }
713 size_type rfind(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string
716 return _M_non_dbg_impl.rfind(__s, __pos);
718 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string
721 return _M_non_dbg_impl.rfind(__s, __pos, __n);
723 size_type rfind(_CharT __c, size_type __pos = npos) const function in class:basic_string
724 { return _M_non_dbg_impl.rfind(__c, __pos); }
756 { return _M_non_dbg_impl.rfind(__
[all...]
/external/chromium_org/chrome/utility/importer/
H A Dbookmark_html_reader.cc263 size_t tag_end = line.rfind('>', end) + 1;
322 size_t tag_end = line.rfind('>', end) + 1;
399 size_t tag_end = line.rfind('>', end) + 1;
/external/chromium/testing/
H A Dgenerate_gmock_mutant.py299 n = 1 + line[:width].rfind(",")
/external/chromium_org/base/
H A Dvlog.cc90 base::StringPiece::size_type extension_start = module.rfind('.');

Completed in 483 milliseconds

123456789