Searched refs:cur_path (Results 1 – 6 of 6) sorted by relevance
/external/lldb/examples/scripting/ |
D | tree_utils.py | 23 def DFS (root, word, cur_path): argument 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/ |
D | finder_kernel.cc | 122 ATL::CString cur_path(object_directory_info->ObjectName.Buffer, in ParseKernelObjects() local 130 new_path = path + cur_path; in ParseKernelObjects() 132 new_path = path + L"\\" + cur_path; in ParseKernelObjects()
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 128 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/ |
D | file_path_watcher_linux.cc | 548 const FilePath& cur_path = end_it->first; in UpdateRecursiveWatches() local 549 if (!changed_dir.IsParent(cur_path)) in UpdateRecursiveWatches() 551 if (!DirectoryExists(cur_path)) in UpdateRecursiveWatches()
|
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/ |
D | www_server.py | 310 cur_path = parent_path + bucket.name + '/' 311 if cur_path == path: 314 res = FindBucketByPath(child, path, cur_path)
|
/external/chromium_org/chrome/browser/profiles/ |
D | profile_manager.cc | 648 base::FilePath cur_path = cache.GetPathOfProfileAtIndex(i); in ScheduleProfileForDeletion() local 650 if (cur_path != profile_dir && !cache.ProfileIsSupervisedAtIndex(i) && in ScheduleProfileForDeletion() 651 !IsProfileMarkedForDeletion(cur_path)) { in ScheduleProfileForDeletion() 652 last_non_supervised_profile_path = cur_path; in ScheduleProfileForDeletion()
|