Searched refs:isGraphemeBreak (Results 1 – 4 of 4) sorted by relevance
/frameworks/minikin/tests/ |
D | GraphemeBreakTests.cpp | 29 return GraphemeBreak::isGraphemeBreak(buf, 0, size, offset); in IsBreak() 186 EXPECT_TRUE(GraphemeBreak::isGraphemeBreak(string, 2, 3, 2)); in TEST() 187 EXPECT_FALSE(GraphemeBreak::isGraphemeBreak(string, 2, 3, 3)); in TEST() 188 EXPECT_TRUE(GraphemeBreak::isGraphemeBreak(string, 2, 3, 4)); in TEST() 189 EXPECT_TRUE(GraphemeBreak::isGraphemeBreak(string, 2, 3, 5)); in TEST()
|
/frameworks/minikin/libs/minikin/ |
D | GraphemeBreak.cpp | 69 bool GraphemeBreak::isGraphemeBreak(const uint16_t* buf, size_t start, size_t count, in isGraphemeBreak() function in android::GraphemeBreak 189 while (!isGraphemeBreak(buf, start, count, offset)) { in getTextRunCursor() 199 while (!isGraphemeBreak(buf, start, count, offset)) { in getTextRunCursor() 204 if (!isGraphemeBreak(buf, start, count, offset)) { in getTextRunCursor()
|
D | Measurement.cpp | 56 if (GraphemeBreak::isGraphemeBreak(buf, start, count, i)) { in getRunAdvance() 88 if (GraphemeBreak::isGraphemeBreak(buf, start, count, i)) { in getOffsetForAdvance() 105 if (GraphemeBreak::isGraphemeBreak(buf, start, count, i)) { in getOffsetForAdvance()
|
/frameworks/minikin/include/minikin/ |
D | GraphemeBreak.h | 37 static bool isGraphemeBreak(const uint16_t* buf, size_t start, size_t count, size_t offset);
|