OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:toBaseCodePoint
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/native/jni/tests/utils/
char_utils_test.cpp
85
EXPECT_EQ('A', CharUtils::
toBaseCodePoint
('A'));
86
EXPECT_EQ('Z', CharUtils::
toBaseCodePoint
('Z'));
87
EXPECT_EQ('a', CharUtils::
toBaseCodePoint
('a'));
88
EXPECT_EQ('z', CharUtils::
toBaseCodePoint
('z'));
89
EXPECT_EQ('@', CharUtils::
toBaseCodePoint
('@'));
90
EXPECT_EQ(' ', CharUtils::
toBaseCodePoint
(' '));
91
EXPECT_EQ('A', CharUtils::
toBaseCodePoint
(0x00C0 /* LATIN CAPITAL LETTER A WITH GRAVE */));
92
EXPECT_EQ('a', CharUtils::
toBaseCodePoint
(0x00E0 /* LATIN SMALL LETTER A WITH GRAVE */));
96
CharUtils::
toBaseCodePoint
(0x0410 /* CYRILLIC CAPITAL LETTER A */));
98
CharUtils::
toBaseCodePoint
(0x0430 /* CYRILLIC SMALL LETTER A */))
[
all
...]
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/typing/
typing_weighting.cpp
53
} else if (primaryCodePoint == CharUtils::
toBaseCodePoint
(nodeCodePoint)) {
56
} else if (CharUtils::
toBaseCodePoint
(primaryCodePoint)
57
== CharUtils::
toBaseCodePoint
(nodeCodePoint)) {
/packages/inputmethods/LatinIME/native/jni/src/utils/
char_utils.h
49
return toLowerCase(
toBaseCodePoint
(c));
66
static AK_FORCE_INLINE int
toBaseCodePoint
(int c) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp
267
const int baseLowerCodePoint = CharUtils::
toBaseCodePoint
(lowerCodePoint);
Completed in 189 milliseconds