Lines Matching refs:mCharIndex
7763 MOZ_ASSERT(mCharIndex >= 0); in GetBeforeOffset()
7764 return mDirection < 0 ? GetAfterInternal() : mCharIndex; in GetBeforeOffset()
7770 MOZ_ASSERT(mCharIndex >= 0); in GetAfterOffset()
7771 return mDirection > 0 ? GetAfterInternal() : mCharIndex; in GetAfterOffset()
7787 int32_t mCharIndex; member in ClusterIterator
7900 NS_ASSERTION(mCharIndex >= 0, "No cluster selected"); in IsInlineWhitespace()
7901 return IsSelectionInlineWhitespace(mFrag, mCharIndex); in IsInlineWhitespace()
7905 NS_ASSERTION(mCharIndex >= 0, "No cluster selected"); in IsNewline()
7906 return IsSelectionNewline(mFrag, mCharIndex); in IsNewline()
7910 NS_ASSERTION(mCharIndex >= 0, "No cluster selected"); in IsPunctuation()
7914 uint32_t ch = mFrag->CharAt(mCharIndex); in IsPunctuation()
7940 if (mFrag->IsHighSurrogateFollowedByLowSurrogateAt(mCharIndex)) { in GetAfterInternal()
7941 return mCharIndex + 2; in GetAfterInternal()
7943 return mCharIndex + 1; in GetAfterInternal()
7958 mCharIndex = mIterator.GetOriginalOffset(); in NextCluster()
7969 mCharIndex = mIterator.GetOriginalOffset(); in NextCluster()
7984 mCharIndex(-1), in ClusterIterator()