Searched refs:cur_path (Results 1 – 5 of 5) sorted by relevance
/llvm-project/lldb/examples/scripting/ |
H A D | tree_utils.py | 22 def DFS(root, word, cur_path): argument 56 return cur_path 63 cur_path = cur_path + "L" 64 return DFS(left_child_ptr, word, cur_path) 71 cur_path = cur_path + "R" 72 return DFS(right_child_ptr, word, cur_path)
|
/llvm-project/lldb/scripts/ |
H A D | analyze-project-deps.py | 120 cur_path = path_queue.pop(0) 121 if is_existing_cycle(cur_path, cycles): 125 last_component = cur_path[-1] 131 if item in cur_path: 135 new_index = cur_path.index(item) 136 cycle = cur_path[new_index:] 142 path_queue.append(cur_path + [item])
|
/llvm-project/lldb/docs/use/ |
H A D | python.rst | 64 1: def DFS (root, word, cur_path): 76 13: return cur_path 81 18: cur_path = cur_path + "L" 82 19: return DFS (left_child_ptr, word, cur_path) 87 24: cur_path = cur_path + "R" 88 25: return DFS (right_child_ptr, word, cur_path) 518 def DFS(root, word, cur_path): 552 return cur_path 560 cur_path = cur_path + "L" 561 return DFS(left_child_ptr, word, cur_path) [all …]
|
/llvm-project/llvm/lib/Support/Windows/ |
H A D | Path.inc | 199 SmallVector<wchar_t, MAX_PATH> cur_path; 203 cur_path.resize_for_overwrite(len); 204 len = ::GetCurrentDirectoryW(cur_path.size(), cur_path.data()); 212 } while (len > cur_path.size()); 216 cur_path.truncate(len); 219 UTF16ToUTF8(cur_path.begin(), cur_path.size(), result))
|
/llvm-project/lldb/source/Commands/ |
H A D | CommandCompletions.cpp | 295 std::string cur_path = context.module_sp->GetFileSpec().GetPath(); in SearchCallback() local 296 llvm::StringRef cur_path_view = cur_path; in SearchCallback()
|