• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/WTF-7600.1.24/icu/unicode/

Lines Matching refs:iter

96  * @param iter the UCharIterator structure ("this pointer")
105 UCharIteratorGetIndex(UCharIterator *iter, UCharIteratorOrigin origin);
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
130 * @param iter the UCharIterator structure ("this pointer")
142 UCharIteratorMove(UCharIterator *iter, int32_t delta, UCharIteratorOrigin origin);
150 * @param iter the UCharIterator structure ("this pointer")
157 UCharIteratorHasNext(UCharIterator *iter);
164 * @param iter the UCharIterator structure ("this pointer")
171 UCharIteratorHasPrevious(UCharIterator *iter);
179 * @param iter the UCharIterator structure ("this pointer")
186 UCharIteratorCurrent(UCharIterator *iter);
195 * @param iter the UCharIterator structure ("this pointer")
202 UCharIteratorNext(UCharIterator *iter);
211 * @param iter the UCharIterator structure ("this pointer")
218 UCharIteratorPrevious(UCharIterator *iter);
224 * @param iter the UCharIterator structure ("this pointer")
232 UCharIteratorReserved(UCharIterator *iter, int32_t something);
270 * @param iter the UCharIterator structure ("this pointer")
279 UCharIteratorGetState(const UCharIterator *iter);
296 * @param iter the UCharIterator structure ("this pointer")
307 UCharIteratorSetState(UCharIterator *iter, uint32_t state, UErrorCode *pErrorCode);
485 * @param iter the UCharIterator structure ("this pointer")
494 uiter_current32(UCharIterator *iter);
503 * @param iter the UCharIterator structure ("this pointer")
511 uiter_next32(UCharIterator *iter);
520 * @param iter the UCharIterator structure ("this pointer")
528 uiter_previous32(UCharIterator *iter);
532 * This is a convenience function that calls iter->getState(iter)
533 * if iter->getState is not NULL;
540 * @param iter the UCharIterator structure ("this pointer")
549 uiter_getState(const UCharIterator *iter);
553 * This is a convenience function that calls iter->setState(iter, state, pErrorCode)
554 * if iter->setState is not NULL; if it is NULL, then U_UNSUPPORTED_ERROR is set.
556 * @param iter the UCharIterator structure ("this pointer")
567 uiter_setState(UCharIterator *iter, uint32_t state, UErrorCode *pErrorCode);
584 * @param iter UCharIterator structure to be set for iteration
592 uiter_setString(UCharIterator *iter, const UChar *s, int32_t length);
605 * @param iter UCharIterator structure to be set for iteration
615 uiter_setUTF16BE(UCharIterator *iter, const char *s, int32_t length);
643 * @param iter UCharIterator structure to be set for iteration
651 uiter_setUTF8(UCharIterator *iter, const char *s, int32_t length);
669 * @param iter UCharIterator structure to be set for iteration
676 uiter_setCharacterIterator(UCharIterator *iter, U_NAMESPACE_QUALIFIER CharacterIterator *charIter);
694 * @param iter UCharIterator structure to be set for iteration
701 uiter_setReplaceable(UCharIterator *iter, const U_NAMESPACE_QUALIFIER Replaceable *rep);