Searched refs:cur_path (Results 1 - 6 of 6) sorted by relevance

/external/lldb/examples/scripting/
H A Dtree_utils.py23 def DFS (root, word, cur_path):
57 return cur_path
65 cur_path = cur_path + "L"
66 return DFS (left_child_ptr, word, cur_path)
74 cur_path = cur_path + "R"
75 return DFS (right_child_ptr, word, cur_path)
/external/chromium_org/sandbox/win/tools/finder/
H A Dfinder_kernel.cc122 ATL::CString cur_path(object_directory_info->ObjectName.Buffer,
130 new_path = path + cur_path;
132 new_path = path + L"\\" + cur_path;
/external/llvm/lib/Support/Windows/
H A DPath.inc128 SmallVector<wchar_t, MAX_PATH> cur_path;
132 cur_path.reserve(len);
133 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data());
141 } while (len > cur_path.capacity());
145 cur_path.set_size(len);
146 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
/external/chromium_org/base/files/
H A Dfile_path_watcher_linux.cc548 const FilePath& cur_path = end_it->first; local
549 if (!changed_dir.IsParent(cur_path))
551 if (!DirectoryExists(cur_path))
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
H A Dwww_server.py310 cur_path = parent_path + bucket.name + '/'
311 if cur_path == path:
314 res = FindBucketByPath(child, path, cur_path)
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_manager.cc648 base::FilePath cur_path = cache.GetPathOfProfileAtIndex(i); local
650 if (cur_path != profile_dir && !cache.ProfileIsSupervisedAtIndex(i) &&
651 !IsProfileMarkedForDeletion(cur_path)) {
652 last_non_supervised_profile_path = cur_path;

Completed in 6720 milliseconds