Searched defs:aIter (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsDeque.cpp476 * @param aIter is the object to be compared to
479 PRBool nsDequeIterator::operator!=(nsDequeIterator& aIter) { argument
480 return PRBool(!this->operator==(aIter));
486 * @param aIter is the other iterator to be compared to
488 * the element pointed to by aIter.
489 * FALSE if this and aIter are not iterating over the same deque.
491 PRBool nsDequeIterator::operator<(nsDequeIterator& aIter) { argument
492 return PRBool(((mIndex<aIter.mIndex) && (&mDeque==&aIter.mDeque)));
498 * @param aIter i
501 operator ==(nsDequeIterator& aIter) argument
513 operator >=(nsDequeIterator& aIter) argument
[all...]

Completed in 58 milliseconds