HomeSort by relevance Sort by last modified time
    Searched refs:pending_paths_ (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/base/files/
file_enumerator_win.cc 52 pending_paths_.push(root_path);
67 pending_paths_.push(root_path);
88 while (has_find_data_ || !pending_paths_.empty()) {
91 root_path_ = pending_paths_.top();
92 pending_paths_.pop();
135 // add it to pending_paths_ so we scan it after we finish scanning this
137 pending_paths_.push(cur_file);
file_enumerator_posix.cc 49 pending_paths_.push(root_path);
68 pending_paths_.push(root_path);
79 if (pending_paths_.empty())
82 root_path_ = pending_paths_.top();
84 pending_paths_.pop();
103 pending_paths_.push(full_path);
file_enumerator.h 149 std::stack<FilePath> pending_paths_; member in class:base::FileEnumerator
  /external/chromium/base/
file_util_posix.cc 626 pending_paths_.push(root_path);
645 pending_paths_.push(root_path);
656 if (pending_paths_.empty())
659 root_path_ = pending_paths_.top();
661 pending_paths_.pop();
680 pending_paths_.push(full_path);
file_util_win.cc 850 pending_paths_.push(root_path);
864 pending_paths_.push(root_path);
893 while (has_find_data_ || !pending_paths_.empty()) {
896 root_path_ = pending_paths_.top();
897 pending_paths_.pop();
940 // add it to pending_paths_ so we scan it after we finish scanning this
942 pending_paths_.push(cur_file);
    [all...]
file_util.h 502 std::stack<FilePath> pending_paths_; member in class:file_util::FileEnumerator

Completed in 1000 milliseconds