OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isCJKIdeographOrSymbol
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontTest.cpp
213
EXPECT_FALSE(Font::
isCJKIdeographOrSymbol
(rangeStart - 1));
214
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(rangeStart));
215
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
((UChar32)((uint64_t)rangeStart + (uint64_t)rangeEnd) / 2));
216
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(rangeEnd));
217
EXPECT_FALSE(Font::
isCJKIdeographOrSymbol
(rangeEnd + 1));
223
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(0x2C7));
224
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(0x2CA));
225
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(0x2CB));
226
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(0x2D9));
228
EXPECT_TRUE(Font::
isCJKIdeographOrSymbol
(0x2020))
[
all
...]
Font.cpp
534
bool Font::
isCJKIdeographOrSymbol
(UChar32 c)
642
if (expandAroundIdeographs &&
isCJKIdeographOrSymbol
(character)) {
663
if (expandAroundIdeographs &&
isCJKIdeographOrSymbol
(character)) {
Font.h
157
static bool
isCJKIdeographOrSymbol
(UChar32);
FontFastPath.cpp
205
if (
isCJKIdeographOrSymbol
(c)) {
283
if (characterFontData->platformData().orientation() == Vertical && !characterFontData->hasVerticalGlyphs() &&
isCJKIdeographOrSymbol
(c))
296
if (!
isCJKIdeographOrSymbol
(c) && data.fontData->platformData().orientation() != Horizontal && !data.fontData->isTextOrientationFallback())
WidthIterator.cpp
210
if (treatAsSpace || (expandAroundIdeographs && Font::
isCJKIdeographOrSymbol
(character))) {
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontComplexTextMac.cpp
179
if (
isCJKIdeographOrSymbol
(baseCharacter) && !simpleFontData->hasVerticalGlyphs()) {
ComplexTextController.cpp
645
if (treatAsSpace || Font::
isCJKIdeographOrSymbol
(ch)) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp
[
all
...]
Completed in 187 milliseconds