• Home
  • Raw
  • Download

Lines Matching refs:StringSegment

23 StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase)  in StringSegment()  function in StringSegment
27 int32_t StringSegment::getOffset() const { in getOffset()
31 void StringSegment::setOffset(int32_t start) { in setOffset()
35 void StringSegment::adjustOffset(int32_t delta) { in adjustOffset()
39 void StringSegment::adjustOffsetByCodePoint() { in adjustOffsetByCodePoint()
43 void StringSegment::setLength(int32_t length) { in setLength()
47 void StringSegment::resetLength() { in resetLength()
51 int32_t StringSegment::length() const { in length()
55 char16_t StringSegment::charAt(int32_t index) const { in charAt()
59 UChar32 StringSegment::codePointAt(int32_t index) const { in codePointAt()
63 UnicodeString StringSegment::toUnicodeString() const { in toUnicodeString()
67 const UnicodeString StringSegment::toTempUnicodeString() const { in toTempUnicodeString()
72 UChar32 StringSegment::getCodePoint() const { in getCodePoint()
83 bool StringSegment::startsWith(UChar32 otherCp) const { in startsWith()
87 bool StringSegment::startsWith(const UnicodeSet& uniset) const { in startsWith()
97 bool StringSegment::startsWith(const UnicodeString& other) const { in startsWith()
106 int32_t StringSegment::getCommonPrefixLength(const UnicodeString& other) { in getCommonPrefixLength()
110 int32_t StringSegment::getCaseSensitivePrefixLength(const UnicodeString& other) { in getCaseSensitivePrefixLength()
114 int32_t StringSegment::getPrefixLengthInternal(const UnicodeString& other, bool foldCase) { in getPrefixLengthInternal()
129 bool StringSegment::codePointsEqual(UChar32 cp1, UChar32 cp2, bool foldCase) { in codePointsEqual()
141 bool StringSegment::operator==(const UnicodeString& other) const { in operator ==()