Home | History | Annotate | Download | only in OpenglCodecCommon

Lines Matching refs:it

40     IndexRangeMap::const_iterator it =
44 if (it != mIndexRangeCache.end()) {
45 if (start_out) *start_out = it->second.start;
46 if (end_out) *end_out = it->second.end;
60 IndexRangeMap::iterator it =
67 while (it != mIndexRangeCache.end()) {
68 size_t rangeStart = it->first.offset;
70 it->first.offset +
71 it->first.count * glSizeof(it->first.type);
75 ++it;
77 mIndexRangeCache.erase(it++);