Home
last modified time | relevance | path

Searched refs:dir_q (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/platform/
Dfile_system_helper.cc72 std::deque<string> dir_q; in GetMatchingPaths() local
73 dir_q.push_back(dir); in GetMatchingPaths()
80 while (!dir_q.empty()) { in GetMatchingPaths()
81 string current_dir = dir_q.front(); in GetMatchingPaths()
82 dir_q.pop_front(); in GetMatchingPaths()
114 dir_q.push_back(child_path); in GetMatchingPaths()
Dfile_system.cc88 std::deque<string> dir_q; // Queue for the BFS in DeleteRecursively() local
90 dir_q.push_back(dirname); in DeleteRecursively()
95 while (!dir_q.empty()) { in DeleteRecursively()
96 string dir = dir_q.front(); in DeleteRecursively()
97 dir_q.pop_front(); in DeleteRecursively()
111 dir_q.push_back(child_path); in DeleteRecursively()