Searched refs:first1 (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
D | algorithm.h | 45 bool EqualImpl(InputIter1 first1, InputIter1 last1, InputIter2 first2, in EqualImpl() argument 49 if (first1 == last1) return first2 == last2; in EqualImpl() 51 if (!pred(*first1, *first2)) return false; in EqualImpl() 52 ++first1; in EqualImpl() 58 bool EqualImpl(InputIter1 first1, InputIter1 last1, InputIter2 first2, in EqualImpl() argument 61 return (last1 - first1 == last2 - first2) && in EqualImpl() 62 std::equal(first1, last1, first2, std::forward<Pred>(pred)); in EqualImpl() 69 bool EqualImpl(InputIter1 first1, InputIter1 last1, InputIter2 first2, in EqualImpl() argument 73 return (last1 - first1 == last2 - first2) && in EqualImpl() 74 std::equal(first1, last1, first2); in EqualImpl() [all …]
|
D | container.h | 348 auto first1 = container_algorithm_internal::c_begin(c1); 353 for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) { 356 if (!(*first1 == *first2)) { 361 return std::make_pair(first1, first2); 370 auto first1 = container_algorithm_internal::c_begin(c1); 375 for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) { 376 if (!pred(*first1, *first2)) { 381 return std::make_pair(first1, first2); 567 auto first1 = container_algorithm_internal::c_begin(c1); 573 for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) { [all …]
|
/third_party/nghttp2/src/ |
D | util.h | 286 bool starts_with(InputIterator1 first1, InputIterator1 last1, in starts_with() argument 288 if (last1 - first1 < last2 - first2) { in starts_with() 291 return std::equal(first2, last2, first1); in starts_with() 305 bool istarts_with(InputIterator1 first1, InputIterator1 last1, in istarts_with() argument 307 if (last1 - first1 < last2 - first2) { in istarts_with() 310 return std::equal(first2, last2, first1, CaseCmp()); in istarts_with() 323 bool ends_with(InputIterator1 first1, InputIterator1 last1, in ends_with() argument 325 if (last1 - first1 < last2 - first2) { in ends_with() 341 bool iends_with(InputIterator1 first1, InputIterator1 last1, in iends_with() argument 343 if (last1 - first1 < last2 - first2) { in iends_with() [all …]
|
/third_party/libffi/doc/ |
D | texinfo.tex | 1538 \else\ifx\first1\adn1 \else\ifx\first2\adn2 \else\ifx\first3\adn3 1782 \else\ifx\first1\adn1 \else\ifx\first2\adn2 \else\ifx\first3\adn3
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
D | texinfo.tex | 1414 \else\ifx\first1\adn1 \else\ifx\first2\adn2 \else\ifx\first3\adn3
|
/third_party/libabigail/tests/data/test-read-dwarf/ |
D | test9-pr18818-clang.so.abi | 5459 …<parameter type-id='type-id-177' name='first1' filepath='src/third_party/boost-1.56.0/libs/filesys…
|
D | test10-pr18818-gcc.so.abi | 7207 …<parameter type-id='type-id-301' name='first1' filepath='src/third_party/boost-1.56.0/libs/filesys…
|