HomeSort by relevance Sort by last modified time
    Searched full:it_b (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
desktop_region.cc 474 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/
google_streaming_remote_engine_unittest.cc 467 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 510 milliseconds