HomeSort by relevance Sort by last modified time
    Searched refs:BaseName (Results 1 - 7 of 7) sorted by null

  /external/chromium/base/
file_util.cc 51 FilePath::StringType file_name = path.BaseName().value();
374 return FilePath::FromWStringHack(path).BaseName().ToWStringHack();
420 FilePath::StringType basename = path.BaseName().value(); local
425 return FILE_PATH_LITERAL(".") == path.BaseName().value();
429 return FILE_PATH_LITERAL("..") == path.BaseName().value();
file_path.h 40 // final path component (BaseName), and appending a relative pathname string
180 // and BaseName().value() on each child component.
210 // this is the only situation in which BaseName will return an absolute path.
211 FilePath BaseName() const;
229 // extension. Returns "" if BaseName() == "." or "..".
241 // Returns "" if BaseName() == "." or "..".
file_path_unittest.cc 141 TEST_F(FilePathTest, BaseName) {
222 FilePath observed = input.BaseName();
703 FilePath base = jpg.BaseName().RemoveExtension();
    [all...]
file_path.cc 137 base = current.BaseName();
144 base = current.BaseName();
146 ret_val.push_back(current.BaseName().value());
224 // libgen's dirname and basename aren't guaranteed to be thread-safe and aren't
253 // path_ is somewhere else, trim the basename.
264 FilePath FilePath::BaseName() const {
288 // BaseName() calls StripTrailingSeparators, so cases like /foo.baz/// work.
289 StringType base = BaseName().value();
320 StringType base = BaseName().value();
351 StringType base = BaseName().value()
    [all...]
command_line.cc 237 prctl(PR_SET_NAME, FilePath(title).BaseName().value().c_str());
  /external/chromium/net/base/
net_util.cc     [all...]
  /external/chromium/net/disk_cache/
backend_impl.cc 113 FilePath name = current_path.BaseName();
    [all...]

Completed in 725 milliseconds