OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dict_trie
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/PinyinIME/jni/command/
pinyinime_dictbuilder.cpp
31
DictTrie*
dict_trie
= new DictTrie();
local
34
success =
dict_trie
->build_dict(argv[1], argv[2]);
36
success =
dict_trie
->build_dict("../data/rawdict_utf16_65105_freq.txt",
46
success =
dict_trie
->save_dict("../../res/raw/dict_pinyin.dat");
/packages/inputmethods/PinyinIME/jni/share/
dictbuilder.cpp
506
DictTrie *
dict_trie
) {
507
if (NULL == fn_raw || NULL ==
dict_trie
)
566
dict_trie
->dict_list_ = new DictList();
567
bool dl_success =
dict_trie
->dict_list_->init_list(scis_, scis_num_,
598
dict_trie
->root_ = new LmaNodeLE0[lma_nds_used_num_le0_];
599
dict_trie
->nodes_ge1_ = new LmaNodeGE1[lma_nds_used_num_ge1_];
601
dict_trie
->lma_idx_buf_ = new unsigned char[lma_idx_num * kLemmaIdSize];
602
assert(NULL !=
dict_trie
->root_);
603
assert(NULL !=
dict_trie
->lma_idx_buf_);
604
dict_trie
->lma_node_num_le0_ = lma_nds_used_num_le0_
[
all
...]
/packages/inputmethods/PinyinIME/jni/include/
dictbuilder.h
101
DictTrie *
dict_trie
);
Completed in 115 milliseconds