Lines Matching refs:ForwardCharacterIterator
45 * <p>ForwardCharacterIterator provides nextPostInc() to access
70 * void function1(ForwardCharacterIterator &it) {
78 * void function1(ForwardCharacterIterator &it) {
80 * while((c=it.nextPostInc())!=ForwardCharacterIterator::DONE) {
89 class U_COMMON_API ForwardCharacterIterator : public UObject {
92 * Value returned by most of ForwardCharacterIterator's functions
102 virtual ~ForwardCharacterIterator();
107 * @param that The ForwardCharacterIterator to be compared for equality
112 virtual UBool operator==(const ForwardCharacterIterator& that) const = 0;
118 * @param that The ForwardCharacterIterator to be compared for inequality
124 inline UBool operator!=(const ForwardCharacterIterator& that) const;
134 * Returns a UClassID for this ForwardCharacterIterator ("poor man's
137 * @return a UClassID for this ForwardCharacterIterator
175 ForwardCharacterIterator();
178 ForwardCharacterIterator(const ForwardCharacterIterator &other);
184 ForwardCharacterIterator &operator=(const ForwardCharacterIterator&) { return *this; }
196 * <li>CharacterIterator is now a subclass of ForwardCharacterIterator.</li>
203 * <li>Just like ForwardCharacterIterator, it provides access to
210 * See ForwardCharacterIterator for examples for using the new forward iteration
356 class U_COMMON_API CharacterIterator : public ForwardCharacterIterator {
687 ForwardCharacterIterator::operator!=(const ForwardCharacterIterator& that) const {