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

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc478 for (RowSpanSet::const_iterator it_a = set_a.begin(); it_a != set_a.end();
479 ++it_a) {
481 if (it_b == set_b.end() || it_a->right < it_b->left) {
482 output->push_back(*it_a);
486 // Iterate over |set_b| spans that may intersect with |it_a|.
487 int pos = it_a->left;
488 while (it_b != set_b.end() && it_b->left < it_a->right) {
493 if (pos >= it_a->right)
498 if (pos < it_a
[all...]
/external/vulkan-validation-layers/layers/
H A Dshader_validation.cpp723 auto it_a = attribs.begin(); local
727 while ((attribs.size() > 0 && it_a != attribs.end()) || (inputs.size() > 0 && it_b != inputs.end())) {
728 bool a_at_end = attribs.size() == 0 || it_a == attribs.end();
730 auto a_first = a_at_end ? 0 : it_a->first;
739 it_a++;
746 unsigned attrib_type = get_format_type(it_a->second->format);
754 string_VkFormat(it_a->second->format), a_first, describe_type(vs, it_b->second.type_id).c_str());
787 auto it_a = outputs.begin(); local
792 while ((outputs.size() > 0 && it_a != outputs.end()) || (color_attachments.size() > 0 && it_b != color_attachments.end())) {
793 bool a_at_end = outputs.size() == 0 || it_a
[all...]

Completed in 281 milliseconds