Lines Matching full:text
12 * platform/text/TextCodecICU.cpp: Replace use of TRUE with true
22 * wtf/text/icu/UTextProvider.h:
23 * wtf/text/icu/UTextProviderLatin1.cpp:
24 * wtf/text/icu/UTextProviderUTF16.cpp:
32 Source/WebCore/platform/text/TextCodecICU.cpp | 2 +-
33 Source/WebCore/platform/text/icu/UTextProvider.h | 8 ++++----
34 .../platform/text/icu/UTextProviderLatin1.cpp | 14 +++++++-------
35 .../platform/text/icu/UTextProviderUTF16.cpp | 4 ++--
38 diff --git a/Source/WebCore/platform/text/TextCodecICU.cpp b/Source/WebCore/platform/text/TextCodec…
40 --- a/Source/WebCore/platform/text/TextCodecICU.cpp
41 +++ b/Source/WebCore/platform/text/TextCodecICU.cpp
51 diff --git a/Source/WebCore/platform/text/icu/UTextProvider.h b/Source/WebCore/platform/text/icu/UT…
53 --- a/Source/WebCore/platform/text/icu/UTextProvider.h
54 +++ b/Source/WebCore/platform/text/icu/UTextProvider.h
55 @@ -80,12 +80,12 @@ inline bool uTextAccessInChunkOrOutOfRange(UText* text, int64_t nativeIndex, int
58 …text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : …
63 if (nativeIndex >= nativeLength && text->chunkNativeLimit == nativeLength) {
64 text->chunkOffset = text->chunkLength;
70 @@ -94,12 +94,12 @@ inline bool uTextAccessInChunkOrOutOfRange(UText* text, int64_t nativeIndex, int
73 …text->chunkOffset = offset < std::numeric_limits<int32_t>::max() ? static_cast<int32_t>(offset) : …
78 if (nativeIndex <= 0 && !text->chunkNativeStart) {
79 text->chunkOffset = 0;
85 diff --git a/Source/WebCore/platform/text/icu/UTextProviderLatin1.cpp b/Source/WebCore/platform/tex…
87 --- a/Source/WebCore/platform/text/icu/UTextProviderLatin1.cpp
88 +++ b/Source/WebCore/platform/text/icu/UTextProviderLatin1.cpp
126 @@ -336,7 +336,7 @@ static int64_t uTextLatin1ContextAwareNativeLength(UText* text)
127 static UBool uTextLatin1ContextAwareAccess(UText* text, int64_t nativeIndex, UBool forward)
129 if (!text->context)
132 int64_t nativeLength = uTextLatin1ContextAwareNativeLength(text);
134 if (uTextAccessInChunkOrOutOfRange(text, nativeIndex, nativeLength, forward, isAccessible))
135 @@ -356,7 +356,7 @@ static UBool uTextLatin1ContextAwareAccess(UText* text, int64_t nativeIndex, UBo
137 textLatin1ContextAwareSwitchToPriorContext(text, nativeIndex, nativeLength, forward);
144 diff --git a/Source/WebCore/platform/text/icu/UTextProviderUTF16.cpp b/Source/WebCore/platform/text…
146 --- a/Source/WebCore/platform/text/icu/UTextProviderUTF16.cpp
147 +++ b/Source/WebCore/platform/text/icu/UTextProviderUTF16.cpp
148 @@ -125,7 +125,7 @@ static inline int64_t uTextUTF16ContextAwareNativeLength(UText* text)
149 static UBool uTextUTF16ContextAwareAccess(UText* text, int64_t nativeIndex, UBool forward)
151 if (!text->context)
154 int64_t nativeLength = uTextUTF16ContextAwareNativeLength(text);
156 if (uTextAccessInChunkOrOutOfRange(text, nativeIndex, nativeLength, forward, isAccessible))
157 @@ -145,7 +145,7 @@ static UBool uTextUTF16ContextAwareAccess(UText* text, int64_t nativeIndex, UBoo
159 textUTF16ContextAwareSwitchToPriorContext(text, nativeIndex, nativeLength, forward);