OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isEmoji
(Results
1 - 8
of
8
) sorted by null
/frameworks/minikin/tests/unittest/
EmojiTest.cpp
25
EXPECT_TRUE(
isEmoji
(0x0023)); // NUMBER SIGN
26
EXPECT_TRUE(
isEmoji
(0x0035)); // DIGIT FIVE
27
EXPECT_TRUE(
isEmoji
(0x2640)); // FEMALE SIGN
28
EXPECT_TRUE(
isEmoji
(0x2642)); // MALE SIGN
29
EXPECT_TRUE(
isEmoji
(0x2695)); // STAFF OF AESCULAPIUS
30
EXPECT_TRUE(
isEmoji
(0x1F0CF)); // PLAYING CARD BLACK JOKER
31
EXPECT_TRUE(
isEmoji
(0x1F1E9)); // REGIONAL INDICATOR SYMBOL LETTER D
32
EXPECT_TRUE(
isEmoji
(0x1F6F7)); // SLED
33
EXPECT_TRUE(
isEmoji
(0x1F9E6)); // SOCKS
35
EXPECT_FALSE(
isEmoji
(0x0000)); // <control
[
all
...]
/frameworks/minikin/include/minikin/
Emoji.h
22
bool
isEmoji
(uint32_t c);
/frameworks/base/core/java/android/text/
Emoji.java
97
public static boolean
isEmoji
(int codePoint) {
/frameworks/minikin/libs/minikin/
Emoji.cpp
36
bool
isEmoji
(uint32_t c) {
GraphemeBreak.cpp
153
if (p1 == U_GCB_ZWJ &&
isEmoji
(c2) && offset_back > start) {
162
if (
isEmoji
(c0)) {
WordBreaker.cpp
144
if (codePoint == CHAR_ZWJ &&
isEmoji
(next_codepoint)) {
/frameworks/base/core/java/android/text/method/
BaseKeyListener.java
177
} else if (Emoji.
isEmoji
(codePoint)) {
242
if (Emoji.
isEmoji
(codePoint)) {
262
if (Emoji.
isEmoji
(codePoint)) {
274
if (Emoji.
isEmoji
(codePoint)) {
287
} else if (Emoji.
isEmoji
(codePoint)) {
/frameworks/base/core/tests/coretests/src/android/text/
EmojiTest.java
77
assertTrue(Integer.toHexString(c) + " should be emoji", Emoji.
isEmoji
(c));
Completed in 771 milliseconds