OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lma_id
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/PinyinIME/jni/share/
searchutility.cpp
23
bool is_system_lemma(LemmaIdType
lma_id
) {
24
return (0 <
lma_id
&&
lma_id
<= kSysDictIdEnd);
27
bool is_user_lemma(LemmaIdType
lma_id
) {
28
return (kUserDictIdStart <=
lma_id
&&
lma_id
<= kUserDictIdEnd);
31
bool is_composing_lemma(LemmaIdType
lma_id
) {
32
return (kLemmaIdComposing ==
lma_id
);
ngram.cpp
229
float NGram::get_uni_psb(LemmaIdType
lma_id
) {
230
return static_cast<float>(freq_codes_[lma_freq_idx_[
lma_id
]]) +
matrixsearch.cpp
663
LemmaIdType
lma_id
= lma_id_[pos];
local
664
if (is_user_lemma(
lma_id
)) {
665
user_dict_->update_lemma(
lma_id
, 1, true);
670
uint16 tmp = get_lemma_str(
lma_id
, word_str + spl_id_fr,
674
tmp = get_lemma_splids(
lma_id
, spl_ids + spl_id_fr, lma_len, true);
[
all
...]
/packages/inputmethods/PinyinIME/jni/include/
searchutility.h
111
bool is_system_lemma(LemmaIdType
lma_id
);
112
bool is_user_lemma(LemmaIdType
lma_id
);
113
bool is_composing_lemma(LemmaIdType
lma_id
);
ngram.h
79
float get_uni_psb(LemmaIdType
lma_id
);
Completed in 48 milliseconds