Searched refs:charOfShowingText (Results 1 – 8 of 8) sorted by relevance
21 bool TextLayoutadapter::IsLeftToRight(int32_t charOfShowingText) in IsLeftToRight() argument23 UChar32 uCharOfShowingText = charOfShowingText; in IsLeftToRight()26 bool TextLayoutadapter::IsRightToLeft(int32_t charOfShowingText) in IsRightToLeft() argument28 UChar32 uCharOfShowingText = charOfShowingText; in IsRightToLeft()31 bool TextLayoutadapter::IsRightTOLeftArabic(int32_t charOfShowingText) in IsRightTOLeftArabic() argument33 UChar32 uCharOfShowingText = charOfShowingText; in IsRightTOLeftArabic()
19 bool TextLayoutadapter::IsLeftToRight(int32_t charOfShowingText) in IsLeftToRight() argument23 bool TextLayoutadapter::IsRightToLeft(int32_t charOfShowingText) in IsRightToLeft() argument27 bool TextLayoutadapter::IsRightTOLeftArabic(int32_t charOfShowingText) in IsRightTOLeftArabic() argument
25 static bool IsLeftToRight(int32_t charOfShowingText);26 static bool IsRightToLeft(int32_t charOfShowingText);27 static bool IsRightTOLeftArabic(int32_t charOfShowingText);
415 for (const auto& charOfShowingText : showingTextForWString) { in GetTextDirectionByContent() local416 if (TextLayoutadapter::IsLeftToRight(charOfShowingText)) { in GetTextDirectionByContent()418 } else if (TextLayoutadapter::IsRightToLeft(charOfShowingText)) { in GetTextDirectionByContent()420 } else if (TextLayoutadapter::IsRightTOLeftArabic(charOfShowingText)) { in GetTextDirectionByContent()
631 for (const auto& charOfShowingText : showingTextForWString) { in DidExceedMaxLines() local632 if (u_charDirection(charOfShowingText) == UCharDirection::U_LEFT_TO_RIGHT) { in DidExceedMaxLines()635 } else if (u_charDirection(charOfShowingText) == UCharDirection::U_RIGHT_TO_LEFT) { in DidExceedMaxLines()639 u_charDirection(charOfShowingText) == UCharDirection::U_RIGHT_TO_LEFT_ARABIC) { in DidExceedMaxLines()
650 for (const auto& charOfShowingText : showingTextForWString) { in GetTextDirection() local651 if (TextLayoutadapter::IsLeftToRight(charOfShowingText)) { in GetTextDirection()654 if (TextLayoutadapter::IsRightToLeft(charOfShowingText) || in GetTextDirection()655 TextLayoutadapter::IsRightTOLeftArabic(charOfShowingText)) { in GetTextDirection()
899 for (const auto& charOfShowingText : showingTextForWString) { in GetTextDirection() local900 if (TextLayoutadapter::IsLeftToRight(charOfShowingText)) { in GetTextDirection()903 if (TextLayoutadapter::IsRightToLeft(charOfShowingText) || in GetTextDirection()904 TextLayoutadapter::IsRightTOLeftArabic(charOfShowingText)) { in GetTextDirection()
1193 for (const auto& charOfShowingText : showingTextForWString) { local1194 auto charDirection = u_charDirection(charOfShowingText);