OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:splstr
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/PinyinIME/jni/share/
splparser.cpp
30
uint16 SpellingParser::splstr_to_idxs(const char *
splstr
, uint16 str_len,
33
if (NULL ==
splstr
|| 0 == max_size || 0 == str_len)
36
if (!SpellingTrie::is_valid_spl_char(
splstr
[0]))
50
char char_this =
splstr
[str_pos];
143
uint16 SpellingParser::splstr_to_idxs_f(const char *
splstr
, uint16 str_len,
146
uint16 idx_num = splstr_to_idxs(
splstr
, str_len, spl_idx, start_pos,
159
uint16 SpellingParser::splstr16_to_idxs(const char16 *
splstr
, uint16 str_len,
162
if (NULL ==
splstr
|| 0 == max_size || 0 == str_len)
165
if (!SpellingTrie::is_valid_spl_char(
splstr
[0]))
179
char16 char_this =
splstr
[str_pos]
[
all
...]
/packages/inputmethods/PinyinIME/jni/include/
splparser.h
39
// If
splstr
starts with a character not in ['a'-z'] (it is a split char),
42
uint16 splstr_to_idxs(const char *
splstr
, uint16 str_len, uint16 splidx[],
48
uint16 splstr_to_idxs_f(const char *
splstr
, uint16 str_len, uint16 splidx[],
53
uint16 splstr16_to_idxs(const char16 *
splstr
, uint16 str_len, uint16 splidx[],
67
uint16 get_splid_by_str(const char *
splstr
, uint16 str_len, bool *is_pre);
75
uint16 get_splid_by_str_f(const char *
splstr
, uint16 str_len, bool *is_pre);
86
// If
splstr
starts with a character not in [a-zA-Z] (it is a split char),
89
// The caller should guarantee NULL !=
splstr
&& str_len > 0 && NULL != splidx
90
uint16 get_splids_parallel(const char *
splstr
, uint16 str_len,
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
ComposingView.java
230
String
splStr
= mDecInfo.getOrigianlSplStr().toString();
231
canvas.drawText(
splStr
, 0,
splStr
.length(), x, y, mPaint);
Completed in 9654 milliseconds