/external/llvm-project/lldb/examples/scripting/ |
D | tree_utils.py | 24 def DFS(root, word, cur_path): argument 58 return cur_path 66 cur_path = cur_path + "L" 67 return DFS(left_child_ptr, word, cur_path) 75 cur_path = cur_path + "R" 76 return DFS(right_child_ptr, word, cur_path)
|
/external/ltp/testcases/kernel/controllers/cgroup_fj/ |
D | cgroup_fj_stress.sh | 81 local cur_path="$1" 89 create_subgroup "$cur_path" 93 build_subgroups "$cur_path/$i" $((cur_depth+1)) 99 local cur_path="$1" 116 if ! attach_and_check "$pid" "$cur_path"; then 121 local new_path="$cur_path/$i" 126 if ! attach_and_check "$pid" "$cur_path"; then
|
/external/llvm-project/lldb/scripts/ |
D | analyze-project-deps.py | 105 cur_path = path_queue.pop(0) 106 if is_existing_cycle(cur_path, cycles): 110 last_component = cur_path[-1] 116 if item in cur_path: 120 new_index = cur_path.index(item) 121 cycle = cur_path[new_index:] 127 path_queue.append(cur_path + [item])
|
/external/python/pycparser/utils/internal/ |
D | fake_includes.py | 3 for cur_path, dirs, files in os.walk('.'): 4 if cur_path == '.':
|
/external/perfetto/src/trace_processor/importers/common/ |
D | clock_tracker.cc | 180 ClockPath cur_path = queue.front(); in FindPath() local 183 const ClockId cur_clock_id = cur_path.last; in FindPath() 185 return cur_path; in FindPath() 187 if (cur_path.len >= ClockPath::kMaxLen) in FindPath() 198 queue.push(ClockPath(cur_path, next_clock_id, hash)); in FindPath()
|
/external/ltp/testcases/kernel/fs/iso9660/ |
D | isofs.sh | 22 local cur_path="$1" 29 new_path="$cur_path/subdir_$i"
|
/external/e2fsprogs/contrib/android/ |
D | fsmap.c | 116 char *filename, *cur_path, *name = de->name; in walk_ext_dir() local 142 cur_path = pdata->path; in walk_ext_dir() 146 pdata->path = cur_path; in walk_ext_dir()
|
D | perms.c | 268 char *cur_path = params->path; in walk_dir() local 275 params->path = cur_path; in walk_dir()
|
/external/llvm-project/lldb/docs/use/ |
D | python.rst | 67 1: def DFS (root, word, cur_path): 79 13: return cur_path 84 18: cur_path = cur_path + "L" 85 19: return DFS (left_child_ptr, word, cur_path) 90 24: cur_path = cur_path + "R" 91 25: return DFS (right_child_ptr, word, cur_path) 522 def DFS(root, word, cur_path): 556 return cur_path 564 cur_path = cur_path + "L" 565 return DFS(left_child_ptr, word, cur_path) [all …]
|
/external/libchrome/base/files/ |
D | file_path_watcher_linux.cc | 562 const FilePath& cur_path = end_it->first; in UpdateRecursiveWatches() local 563 if (!changed_dir.IsParent(cur_path)) in UpdateRecursiveWatches() 565 if (!DirectoryExists(cur_path)) in UpdateRecursiveWatches()
|
D | file_util_posix.cc | 573 for (const StringPiece& cur_path : in ExecutableExistsInPath() local 575 FilePath file(cur_path); in ExecutableExistsInPath()
|
/external/ruy/ruy/ |
D | trace.h | 502 Path cur_path = static_cast<Path>(1 << bit); in str() local 503 if ((paths & cur_path) != Path::kNone) { in str() 508 switch (cur_path) { in str() 531 static_cast<int>(cur_path)); in str()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 182 SmallVector<wchar_t, MAX_PATH> cur_path; 186 cur_path.reserve(len); 187 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 195 } while (len > cur_path.capacity()); 199 cur_path.set_size(len); 200 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 188 SmallVector<wchar_t, MAX_PATH> cur_path; 192 cur_path.reserve(len); 193 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 201 } while (len > cur_path.capacity()); 205 cur_path.set_size(len); 206 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|
/external/libchrome/base/ |
D | values.cc | 377 const StringPiece* cur_path = path.begin(); in SetPath() local 378 for (; (cur_path + 1) < path.end(); ++cur_path) { in SetPath() 383 const StringPiece path_component = *cur_path; in SetPath() 398 return cur->SetKey(*cur_path, std::move(value)); in SetPath()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 193 SmallVector<wchar_t, MAX_PATH> cur_path; 197 cur_path.reserve(len); 198 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 206 } while (len > cur_path.capacity()); 210 cur_path.set_size(len); 211 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|
/external/llvm-project/llvm/lib/Support/Windows/ |
D | Path.inc | 192 SmallVector<wchar_t, MAX_PATH> cur_path; 196 cur_path.reserve(len); 197 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 205 } while (len > cur_path.capacity()); 209 cur_path.set_size(len); 210 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|