Searched refs:it_b (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc474 RowSpanSet::const_iterator it_b = set_b.begin(); local
481 if (it_b == set_b.end() || it_a->right < it_b->left) {
488 while (it_b != set_b.end() && it_b->left < it_a->right) {
489 if (it_b->left > pos)
490 output->push_back(RowSpan(pos, it_b->left));
491 if (it_b->right > pos) {
492 pos = it_b->right;
496 ++it_b;
[all...]
/external/chromium_org/content/browser/speech/
H A Dgoogle_streaming_remote_engine_unittest.cc467 SpeechRecognitionResults::const_iterator it_b = b.begin(); local
468 for (; it_a != a.end() && it_b != b.end(); ++it_a, ++it_b) {
469 if (it_a->is_provisional != it_b->is_provisional ||
470 it_a->hypotheses.size() != it_b->hypotheses.size()) {
475 const SpeechRecognitionHypothesis& hyp_b = it_b->hypotheses[i];

Completed in 1450 milliseconds