HomeSort by relevance Sort by last modified time
    Searched defs:kCurrentDirectory (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
file_path.h 149 static const CharType kCurrentDirectory[];
206 // kCurrentDirectory. If this object already refers to the root directory,
254 // If this object's path is kCurrentDirectory, a new FilePath corresponding
file_path.cc 38 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL(".");
123 if (path == FilePath::kCurrentDirectory || path == FilePath::kParentDirectory)
230 if (!base.value().empty() && base.value() != kCurrentDirectory)
326 new_path.path_ = kCurrentDirectory;
386 if (base == kCurrentDirectory || base == kParentDirectory) {
417 if (base == kCurrentDirectory || base == kParentDirectory) {
447 if (path_.compare(kCurrentDirectory) == 0) {
449 // when appending to kCurrentDirectory, just return a new path for the
450 // component argument. Appending component to kCurrentDirectory would
453 // only kCurrentDirectory when calling DirName on a single relative pat
    [all...]

Completed in 64 milliseconds