chromium/third_party/icu/source/i18n/string_segment.cpp

// © 2018 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html

#include "unicode/utypes.h"

#if !UCONFIG_NO_FORMATTING

// Allow implicit conversion from char16_t* to UnicodeString for this file:
// Helpful in toString methods and elsewhere.
#define UNISTR_FROM_STRING_EXPLICIT

#include "numparse_types.h"
#include "string_segment.h"
#include "putilimp.h"
#include "unicode/utf16.h"
#include "unicode/uniset.h"

U_NAMESPACE_BEGIN


StringSegment::StringSegment(const UnicodeString& str, bool ignoreCase)
        :{}

int32_t StringSegment::getOffset() const {}

void StringSegment::setOffset(int32_t start) {}

void StringSegment::adjustOffset(int32_t delta) {}

void StringSegment::adjustOffsetByCodePoint() {}

void StringSegment::setLength(int32_t length) {}

void StringSegment::resetLength() {}

int32_t StringSegment::length() const {}

char16_t StringSegment::charAt(int32_t index) const {}

UChar32 StringSegment::codePointAt(int32_t index) const {}

UnicodeString StringSegment::toUnicodeString() const {}

const UnicodeString StringSegment::toTempUnicodeString() const {}

UChar32 StringSegment::getCodePoint() const {}

bool StringSegment::startsWith(UChar32 otherCp) const {}

bool StringSegment::startsWith(const UnicodeSet& uniset) const {}

bool StringSegment::startsWith(const UnicodeString& other) const {}

int32_t StringSegment::getCommonPrefixLength(const UnicodeString& other) {}

int32_t StringSegment::getCaseSensitivePrefixLength(const UnicodeString& other) {}

int32_t StringSegment::getPrefixLengthInternal(const UnicodeString& other, bool foldCase) {}

bool StringSegment::codePointsEqual(UChar32 cp1, UChar32 cp2, bool foldCase) {}

bool StringSegment::operator==(const UnicodeString& other) const {}


U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_FORMATTING */