Home | History | Annotate | Download | only in IlmImf

Lines Matching full:last

237                   Iterator &last)
239 channelsWithPrefix (layerName + '.', first, last);
246 ConstIterator &last) const
248 channelsWithPrefix (layerName + '.', first, last);
255 Iterator &last)
257 first = last = _map.lower_bound (prefix);
260 while (last != Iterator (_map.end()) &&
261 strncmp (last.name(), prefix, n) <= 0)
263 ++last;
271 ConstIterator &last) const
273 first = last = _map.lower_bound (prefix);
276 while (last != ConstIterator (_map.end()) &&
277 strncmp (last.name(), prefix, n) <= 0)
279 ++last;
287 Iterator &last)
289 return channelsWithPrefix (prefix.c_str(), first, last);
296 ConstIterator &last) const
298 return channelsWithPrefix (prefix.c_str(), first, last);