Searched refs:dir_q (Results 1 – 2 of 2) sorted by relevance
72 std::deque<string> dir_q; in GetMatchingPaths() local73 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()
88 std::deque<string> dir_q; // Queue for the BFS in DeleteRecursively() local90 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()