You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-15 13:51:40 +00:00
Update ICU to 75.1
This commit is contained in:
24
thirdparty/icu4c/common/unicode/normlzr.h
vendored
24
thirdparty/icu4c/common/unicode/normlzr.h
vendored
@@ -466,7 +466,7 @@ public:
|
||||
* @return the current normalized code point
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
UChar32 current(void);
|
||||
UChar32 current();
|
||||
|
||||
/**
|
||||
* Return the first character in the normalized text.
|
||||
@@ -476,7 +476,7 @@ public:
|
||||
* @return the first normalized code point
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
UChar32 first(void);
|
||||
UChar32 first();
|
||||
|
||||
/**
|
||||
* Return the last character in the normalized text.
|
||||
@@ -486,7 +486,7 @@ public:
|
||||
* @return the last normalized code point
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
UChar32 last(void);
|
||||
UChar32 last();
|
||||
|
||||
/**
|
||||
* Return the next character in the normalized text.
|
||||
@@ -502,7 +502,7 @@ public:
|
||||
* @return the next normalized code point
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
UChar32 next(void);
|
||||
UChar32 next();
|
||||
|
||||
/**
|
||||
* Return the previous character in the normalized text and decrement.
|
||||
@@ -518,7 +518,7 @@ public:
|
||||
* @return the previous normalized code point
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
UChar32 previous(void);
|
||||
UChar32 previous();
|
||||
|
||||
/**
|
||||
* Set the iteration position in the input text that is being normalized,
|
||||
@@ -536,7 +536,7 @@ public:
|
||||
* This is equivalent to setIndexOnly(startIndex)).
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
void reset(void);
|
||||
void reset();
|
||||
|
||||
/**
|
||||
* Retrieve the current iteration position in the input text that is
|
||||
@@ -552,7 +552,7 @@ public:
|
||||
* @return the current index in the input text
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
int32_t getIndex(void) const;
|
||||
int32_t getIndex() const;
|
||||
|
||||
/**
|
||||
* Retrieve the index of the start of the input text. This is the begin index
|
||||
@@ -562,7 +562,7 @@ public:
|
||||
* @return the smallest index in the input text where the Normalizer operates
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
int32_t startIndex(void) const;
|
||||
int32_t startIndex() const;
|
||||
|
||||
/**
|
||||
* Retrieve the index of the end of the input text. This is the end index
|
||||
@@ -574,7 +574,7 @@ public:
|
||||
* @return the first index in the input text where the Normalizer does not operate
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
int32_t endIndex(void) const;
|
||||
int32_t endIndex() const;
|
||||
|
||||
/**
|
||||
* Returns true when both iterators refer to the same character in the same
|
||||
@@ -610,7 +610,7 @@ public:
|
||||
* @return the hash code
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
int32_t hashCode(void) const;
|
||||
int32_t hashCode() const;
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// Property access methods
|
||||
@@ -643,7 +643,7 @@ public:
|
||||
* @see #setMode
|
||||
* @deprecated ICU 56 Use Normalizer2 instead.
|
||||
*/
|
||||
UNormalizationMode getUMode(void) const;
|
||||
UNormalizationMode getUMode() const;
|
||||
|
||||
/**
|
||||
* Set options that affect this <code>Normalizer</code>'s operation.
|
||||
@@ -749,7 +749,7 @@ private:
|
||||
UBool previousNormalize();
|
||||
|
||||
void init();
|
||||
void clearBuffer(void);
|
||||
void clearBuffer();
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// Private data
|
||||
|
||||
Reference in New Issue
Block a user