HomeSort by relevance Sort by last modified time
    Searched full:iterator1 (Results 1 - 8 of 8) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
iterator.h 43 template<typename Iterator1, typename Iterator2, typename IteratorCategory>
44 class iterator_pair : public std::pair<Iterator1, Iterator2>
47 typedef iterator_pair<Iterator1, Iterator2, IteratorCategory> type;
48 typedef std::pair<Iterator1, Iterator2> base_type;
54 typedef std::iterator_traits<Iterator1> traits_type;
61 iterator_pair(const Iterator1& first, const Iterator2& second)
117 template<typename Iterator1, typename Iterator2, typename Iterator3,
122 typedef iterator_triple<Iterator1, Iterator2, Iterator3,
128 typedef typename std::iterator_traits<Iterator1>::difference_type
133 Iterator1 first
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer.h 145 template <class Iterator1, class Iterator2>
146 bool SortedCollectionsIntersect(Iterator1 begin1, Iterator1 end1,
148 Iterator1 i1 = begin1;
  /external/icu4c/test/intltest/
apicoll.cpp 666 CollationElementIterator *iterator1 = ((RuleBasedCollator*)col)->createCollationElementIterator(testString1); local
675 int32_t offset = iterator1->getOffset();
680 iterator1->setOffset(6, success);
685 iterator1->setOffset(0, success);
687 doAssert((*iterator1 == *iterator2), "The two iterators should be the same");
688 doAssert((*iterator1 != *iterator3), "The two iterators should be different");
690 doAssert((*coliter == *iterator1), "The two iterators should be the same");
694 order1 = iterator1->next(success);
701 doAssert((*iterator1 != *iterator2), "The first iterator advance failed");
711 doAssert((*iterator1 == *iterator2), "The second iterator advance failed")
    [all...]
  /external/icu4c/test/cintltst/
capitst.c 1283 UCollationElements *iterator1, *iterator2, *iterator3; local
    [all...]
citertst.c 722 log_err_status(status, "ERROR: in creation of collation element iterator1 using ucol_openElements()\n %s\n",
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 513 final Iterator<Entry<E>> iterator1 = multiset1.entrySet().iterator(); local
517 while (iterator1.hasNext()) {
518 Entry<E> entry1 = iterator1.next();
Iterators.java 249 * More specifically, this method returns {@code true} if {@code iterator1}
251 * of {@code iterator1} is equal to the corresponding element of
258 Iterator<?> iterator1, Iterator<?> iterator2) {
259 while (iterator1.hasNext()) {
263 Object o1 = iterator1.next();
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 247 * More specifically, this method returns {@code true} if {@code iterator1}
249 * of {@code iterator1} is equal to the corresponding element of
256 Iterator<?> iterator1, Iterator<?> iterator2) {
257 while (iterator1.hasNext()) {
261 Object o1 = iterator1.next();
    [all...]

Completed in 431 milliseconds