HomeSort by relevance Sort by last modified time
    Searched refs:old_path (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium/net/base/
net_util_posix.cc 36 std::string old_path = url.path();
38 if (old_path.empty())
42 old_path = UnescapeURLComponent(old_path,
48 new_path = old_path;
50 old_path.swap(new_path);
51 } while (new_path != old_path);
53 file_path_str.assign(old_path);
  /external/chromium_org/ash/resources/
PRESUBMIT.py 35 old_path = sys.path
38 sys.path = [resources] + old_path
45 sys.path = old_path
  /external/chromium_org/chrome/app/theme/
PRESUBMIT.py 35 old_path = sys.path
38 sys.path = [resources] + old_path
45 sys.path = old_path
  /external/chromium_org/ui/resources/
PRESUBMIT.py 34 old_path = sys.path
37 sys.path = [resources] + old_path
44 sys.path = old_path
  /external/chromium_org/third_party/libjingle/source/talk/base/
fileutils.h 171 // This moves a file from old_path to new_path, where "old_path" is a
172 // plain file. This ASSERTs and returns false if old_path points to a
176 virtual bool MoveFolder(const Pathname &old_path,
179 // This moves a directory from old_path to new_path, where "old_path" is a
180 // directory. This ASSERTs and returns false if old_path points to a plain
184 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path) = 0;
186 // This attempts to move whatever is located at old_path to new_path,
188 bool MoveFileOrFolder(const Pathname &old_path, const Pathname &new_path)
    [all...]
unixfilesystem.h 77 // This moves a file from old_path to new_path, where "file" can be a plain
80 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
81 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path);
83 // This copies a file from old_path to _new_path where "file" can be a plain
86 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path);
win32filesystem.h 59 // This moves a file from old_path to new_path. If the new path is on a
63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
65 // Moves a folder from old_path to new_path. If the new path is on a different
68 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path);
70 // This copies a file from old_path to _new_path
72 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path);
unixfilesystem.cc 214 bool UnixFilesystem::MoveFile(const Pathname &old_path,
216 if (!IsFile(old_path)) {
217 ASSERT(IsFile(old_path));
220 LOG(LS_VERBOSE) << "Moving " << old_path.pathname()
222 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
225 if (!CopyFile(old_path, new_path))
227 if (!DeleteFile(old_path))
233 bool UnixFilesystem::MoveFolder(const Pathname &old_path,
235 if (!IsFolder(old_path)) {
236 ASSERT(IsFolder(old_path));
    [all...]
win32filesystem.cc 247 bool Win32Filesystem::MoveFile(const Pathname &old_path,
249 if (!IsFile(old_path)) {
250 ASSERT(IsFile(old_path));
253 LOG(LS_INFO) << "Moving " << old_path.pathname()
255 return ::MoveFile(ToUtf16(old_path.pathname()).c_str(),
259 bool Win32Filesystem::MoveFolder(const Pathname &old_path,
261 if (!IsFolder(old_path)) {
262 ASSERT(IsFolder(old_path));
265 LOG(LS_INFO) << "Moving " << old_path.pathname()
267 if (::MoveFile(ToUtf16(old_path.pathname()).c_str()
    [all...]
  /external/chromium_org/net/base/
net_util_posix.cc 44 std::string old_path = url.path();
46 if (old_path.empty())
50 old_path = UnescapeURLComponent(old_path,
56 new_path = old_path;
58 old_path.swap(new_path);
59 } while (new_path != old_path);
61 file_path_str.assign(old_path);
  /external/chromium_org/tools/valgrind/drmemory/
PRESUBMIT.py 17 old_path = sys.path
23 sys.path = old_path
  /external/chromium_org/tools/valgrind/tsan/
PRESUBMIT.py 17 old_path = sys.path
23 sys.path = old_path
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.h 169 // This moves a file from old_path to new_path, where "old_path" is a
170 // plain file. This ASSERTs and returns false if old_path points to a
174 virtual bool MoveFolder(const Pathname &old_path,
177 // This moves a directory from old_path to new_path, where "old_path" is a
178 // directory. This ASSERTs and returns false if old_path points to a plain
182 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path) = 0;
184 // This attempts to move whatever is located at old_path to new_path,
186 bool MoveFileOrFolder(const Pathname &old_path, const Pathname &new_path)
    [all...]
unixfilesystem.h 60 // This moves a file from old_path to new_path, where "file" can be a plain file
63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
64 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path);
66 // This copies a file from old_path to _new_path where "file" can be a plain file
69 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path);
win32filesystem.h 59 // This moves a file from old_path to new_path. If the new path is on a
63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
65 // Moves a folder from old_path to new_path. If the new path is on a different
68 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path);
70 // This copies a file from old_path to _new_path
72 virtual bool CopyFile(const Pathname &old_path, const Pathname &new_path);
unixfilesystem.cc 220 bool UnixFilesystem::MoveFile(const Pathname &old_path,
222 if (!IsFile(old_path)) {
223 ASSERT(IsFile(old_path));
226 LOG(LS_VERBOSE) << "Moving " << old_path.pathname()
228 if (rename(old_path.pathname().c_str(), new_path.pathname().c_str()) != 0) {
231 if (!CopyFile(old_path, new_path))
233 if (!DeleteFile(old_path))
239 bool UnixFilesystem::MoveFolder(const Pathname &old_path,
241 if (!IsFolder(old_path)) {
242 ASSERT(IsFolder(old_path));
    [all...]
win32filesystem.cc 247 bool Win32Filesystem::MoveFile(const Pathname &old_path,
249 if (!IsFile(old_path)) {
250 ASSERT(IsFile(old_path));
253 LOG(LS_INFO) << "Moving " << old_path.pathname()
255 return ::MoveFile(ToUtf16(old_path.pathname()).c_str(),
259 bool Win32Filesystem::MoveFolder(const Pathname &old_path,
261 if (!IsFolder(old_path)) {
262 ASSERT(IsFolder(old_path));
265 LOG(LS_INFO) << "Moving " << old_path.pathname()
267 if (::MoveFile(ToUtf16(old_path.pathname()).c_str()
    [all...]
  /external/chromium_org/chrome/browser/resources/
PRESUBMIT.py 41 old_path = sys.path
44 sys.path = [resources] + old_path
58 sys.path = old_path
  /external/chromium_org/tools/telemetry/
PRESUBMIT.py 33 old_path = sys.path
36 sys.path = prepended_path + old_path
39 sys.path = old_path
  /external/chromium/net/test/
python_utils.cc 20 std::string old_path; local
27 if (!env->GetVar(kPythonPathEnv, &old_path)) {
29 } else if (old_path.find(dir_path) == std::string::npos) {
30 std::string new_path(old_path);
  /external/chromium_org/net/test/
python_utils.cc 21 std::string old_path; local
28 if (!env->GetVar(kPythonPathEnv, &old_path)) {
30 } else if (old_path.find(dir_path) == std::string::npos) {
31 std::string new_path(old_path);
  /external/chromium-trace/trace-viewer/
PRESUBMIT.py 66 old_path = sys.path
69 sys.path = prepended_path + old_path
72 sys.path = old_path
  /external/linux-tools-perf/util/
exec_cmd.c 84 const char *old_path = getenv("PATH"); local
90 if (old_path)
91 strbuf_addstr(&new_path, old_path);
  /external/chromium_org/media/tools/layout_tests/
test_expectations_history.py 103 old_path = TestExpectationsHistory.GetTestExpectationsPathForRevision(
107 url_or_path=old_path,
  /frameworks/compile/mclinker/lib/MC/
MCLDDirectory.cpp 96 std::string old_path = Directory::m_Path.native(); local
99 Directory::m_Path.native() += old_path;

Completed in 1223 milliseconds

1 2