HomeSort by relevance Sort by last modified time
    Searched defs:to_visit (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/sync/syncable/
nigori_util.cc 109 std::queue<Id> to_visit; local
111 to_visit.push(id_string);
112 while (!to_visit.empty()) {
113 id_string = to_visit.front();
114 to_visit.pop();
126 to_visit.push(child_id_string);
143 to_visit.push(child.GetSuccessorId());
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bvgraph.h 112 BV &to_visit = t1, local
114 to_visit.copyFrom(v[from]);
117 while (!to_visit.empty()) {
118 uptr idx = to_visit.getAndClearFirstOne();
120 to_visit.setUnion(v[idx]);
  /external/chromium_org/sync/internal_api/
change_reorder_buffer.cc 185 queue<int64> to_visit; local
186 to_visit.push(traversal.top());
187 while (!to_visit.empty()) {
188 int64 next = to_visit.front();
189 to_visit.pop();
204 // Now add the children of |next| to |to_visit|.
209 to_visit.push(j->second);
sync_encryption_handler_impl.cc 800 std::queue<int64> to_visit; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfgloop.h 546 vec<int> to_visit; member in struct:__anon48372
557 while (li->to_visit.iterate (li->idx, &anum))
565 li->to_visit.release ();
579 li->to_visit.create (0);
584 li->to_visit.create (number_of_loops ());
593 li->to_visit.quick_push (aloop->num);
597 /* Push the loops to LI->TO_VISIT in postorder. */
606 li->to_visit.quick_push (aloop->num);
623 /* Push the loops to LI->TO_VISIT in preorder. */
628 li->to_visit.quick_push (aloop->num)
    [all...]

Completed in 220 milliseconds