/external/marisa-trie/tools/ |
marisa-find.cc | 16 FIND_LAST 67 void find_last(const marisa::Trie &trie, const std::string &str) { function in namespace:__anon25362 69 const marisa::UInt32 key_id = trie.find_last(str, &length); 120 case FIND_LAST: { 121 find_last(trie, str); 183 find_mode = FIND_LAST;
|
/external/marisa-trie/v0_1_5/tools/ |
marisa_alpha-find.cc | 16 FIND_LAST 67 void find_last(const marisa_alpha::Trie &trie, const std::string &str) { function in namespace:__anon25375 69 const marisa_alpha::UInt32 key_id = trie.find_last(str, &length); 120 case FIND_LAST: { 121 find_last(trie, str); 184 find_mode = FIND_LAST;
|
/external/marisa-trie/lib/marisa/ |
trie-inline.h | 47 inline UInt32 Trie::find_last(const std::string &str, function in class:marisa::Trie 49 return find_last(str.c_str(), str.length(), key_length);
|
trie-search.cc | 128 UInt32 Trie::find_last(const char *str, function in class:marisa::Trie 135 UInt32 Trie::find_last(const char *ptr, std::size_t length, function in class:marisa::Trie
|
/external/marisa-trie/v0_1_5/lib/marisa_alpha/ |
trie-inline.h | 47 inline UInt32 Trie::find_last(const std::string &str, function in class:marisa_alpha::Trie 49 return find_last(str.c_str(), str.length(), key_length);
|
trie-search.cc | 132 UInt32 Trie::find_last(const char *str, function in class:marisa_alpha::Trie 139 UInt32 Trie::find_last(const char *ptr, std::size_t length, function in class:marisa_alpha::Trie
|