Searched refs:itBegin (Results 1 – 4 of 4) sorted by relevance
/third_party/boost/boost/algorithm/string/ |
D | join.hpp | 55 InputIteratorT itBegin=::boost::begin(Input); in join() local 62 if(itBegin!=itEnd) in join() 64 detail::insert(Result, ::boost::end(Result), *itBegin); in join() 65 ++itBegin; in join() 68 for(;itBegin!=itEnd; ++itBegin) in join() 73 detail::insert(Result, ::boost::end(Result), *itBegin); in join() 106 InputIteratorT itBegin=::boost::begin(Input); in join_if() local 113 while(itBegin!=itEnd && !Pred(*itBegin)) ++itBegin; in join_if() 115 if(itBegin!=itEnd) in join_if() 117 detail::insert(Result, ::boost::end(Result), *itBegin); in join_if() [all …]
|
D | regex.hpp | 518 InputIteratorT itBegin=::boost::begin(Input); in join_if() local 527 itBegin!=itEnd && in join_if() 528 … !::boost::regex_match(::boost::begin(*itBegin), ::boost::end(*itBegin), Rx, Flags)) ++itBegin; in join_if() 531 if(itBegin!=itEnd) in join_if() 533 detail::insert(Result, ::boost::end(Result), *itBegin); in join_if() 534 ++itBegin; in join_if() 537 for(;itBegin!=itEnd; ++itBegin) in join_if() 539 … if(::boost::regex_match(::boost::begin(*itBegin), ::boost::end(*itBegin), Rx, Flags)) in join_if() 544 detail::insert(Result, ::boost::end(Result), *itBegin); in join_if() 586 InputIteratorT itBegin=::boost::begin(Input); in join_if_regex() local [all …]
|
D | iter_find.hpp | 102 transform_iter_type itBegin= in iter_find() local 112 SequenceSequenceT Tmp(itBegin, itEnd); in iter_find() 176 transform_iter_type itBegin= in iter_split() local 186 SequenceSequenceT Tmp(itBegin, itEnd); in iter_split()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkDescriptorPool.cpp | 97 const auto itBegin = nodes.begin(); in findAvailableMemory() local 98 freeSpace = itBegin->set - pool; in findAvailableMemory() 106 auto nextIt = itBegin; in findAvailableMemory() 108 for(auto it = itBegin; nextIt != itEnd; ++it, ++nextIt) in findAvailableMemory() 211 const auto itBegin = nodes.begin(); in computeTotalFreeSize() local 212 totalFreeSize += itBegin->set - pool; in computeTotalFreeSize() 216 auto nextIt = itBegin; in computeTotalFreeSize() 218 for(auto it = itBegin; nextIt != itEnd; ++it, ++nextIt) in computeTotalFreeSize()
|