Searched refs:find_last_of (Results 26 - 50 of 90) sorted by relevance

1234

/external/marisa-trie/tools/
H A Dmarisa-build.cc44 const std::string::size_type delim_pos = line.find_last_of('\t');
/external/marisa-trie/v0_1_5/tools/
H A Dmarisa_alpha-build.cc44 const std::string::size_type delim_pos = line.find_last_of('\t');
/external/oprofile/libutil++/
H A Dfile_manip.cpp159 size_t pos = result.find_last_of('/');
/external/protobuf/src/google/protobuf/testing/
H A Dfile.cc106 string::size_type slashpos = path.find_last_of('/');
/external/llvm/include/llvm/ADT/
H A DStringRef.h285 size_t find_last_of(char C, size_t From = npos) const {
293 size_t find_last_of(StringRef Chars, size_t From = npos) const;
/external/stlport/stlport/stl/debug/
H A D_string.h742 // 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
/external/llvm/lib/Support/
H A DPath.cpp93 size_t pos = str.find_last_of(separators, str.size() - 1);
97 pos = str.find_last_of(':', str.size() - 2);
439 size_t pos = p.find_last_of('.');
478 size_t pos = fname.find_last_of('.');
491 size_t pos = fname.find_last_of('.');
/external/chromium_org/webkit/common/fileapi/
H A Dfile_system_util.cc40 path.find_last_of(base::FilePath::kSeparators);
60 path.find_last_of(base::FilePath::kSeparators);
/external/chromium/net/tools/dump_cache/
H A Durl_to_filename_encoder.cc100 size_t start_of_segment = filename_prefix.find_last_of(dir_separator);
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc210 size_t tld_start = domain.find_last_of('.');
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlnsstack.cc155 size_t i = ns.find_last_of('.');
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dmedia_file_validator_browsertest.cc136 size_t extension_index = filename.find_last_of(".");
/external/chromium_org/chrome/test/logging/win/
H A Dlog_file_printer.cc64 size_t last_slash_pos = filename.find_last_of("\\/");
/external/chromium_org/net/tools/dump_cache/
H A Durl_to_filename_encoder.cc100 size_t start_of_segment = filename_prefix.find_last_of(dir_separator);
/external/chromium_org/net/tools/tld_cleanup/
H A Dtld_cleanup_util.cc187 size_t tld_start = domain.find_last_of('.');
/external/chromium_org/third_party/libjingle/source/talk/xmllite/
H A Dxmlnsstack.cc147 size_t i = ns.find_last_of('.');
/external/chromium_org/tools/win/link_limiter/
H A Dlimiter.cc316 size_t last_slash = shimmed_plus_pipename.find_last_of(L"/\\");
/external/llvm/lib/MC/
H A DMCObjectDisassembler.cpp154 BBName = BBName.substr(0, BBName.find_last_of(':'));
/external/oprofile/libpp/
H A Dparse_filename.cpp125 string::size_type pos = filename.find_last_of('/');
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc126 string::size_type last_slash = file->name().find_last_of('/');
/external/protobuf/src/google/protobuf/compiler/javamicro/
H A Djavamicro_helpers.cc129 string::size_type last_slash = file->name().find_last_of('/');
/external/stlport/stlport/stl/
H A D_string.h987 public: // find_last_of
988 size_type find_last_of(const _Self& __s, size_type __pos = npos) const function in class:basic_string
989 { return find_last_of(__s._M_Start(), __pos, __s.size()); }
991 size_type find_last_of(const _CharT* __s, size_type __pos = npos) const function in class:basic_string
992 { _STLP_FIX_LITERAL_BUG(__s) return find_last_of(__s, __pos, _Traits::length(__s)); }
994 size_type find_last_of(const _CharT* __s, size_type __pos, size_type __n) const;
996 size_type find_last_of(_CharT __c, size_type __pos = npos) const function in class:basic_string
/external/chromium/chrome/browser/net/
H A Dpredictor.cc340 size_t left_start = left_host.find_last_of('.', left_already_matched - 1);
349 size_t right_start = right_host.find_last_of('.',
/external/chromium/chrome/browser/safe_browsing/
H A Dfilter_false_positive_perftest.cc243 std::string::size_type pos = url.find_last_of(",");
/external/chromium_org/base/strings/
H A Dstring_piece.cc185 StringPiece::size_type find_last_of(const StringPiece& self, function in namespace:base::internal

Completed in 1042 milliseconds

1234