/external/marisa-trie/tests/ |
D | marisa-test.cc | 31 EXCEPT(trie.predictive_search(agent), MARISA_STATE_ERROR); in TestEmptyTrie() 51 ASSERT(!trie.predictive_search(agent)); in TestEmptyTrie() 72 ASSERT(trie.predictive_search(agent)); in TestEmptyTrie() 73 ASSERT(!trie.predictive_search(agent)); in TestEmptyTrie() 137 ASSERT(!trie.predictive_search(agent)); in TestTinyTrie() 139 ASSERT(trie.predictive_search(agent)); in TestTinyTrie() 141 ASSERT(!trie.predictive_search(agent)); in TestTinyTrie() 144 ASSERT(trie.predictive_search(agent)); in TestTinyTrie() 146 ASSERT(!trie.predictive_search(agent)); in TestTinyTrie() 149 ASSERT(trie.predictive_search(agent)); in TestTinyTrie() [all …]
|
/external/marisa-trie/tools/ |
D | marisa-predictive-search.cc | 27 int predictive_search(const char * const *args, std::size_t num_args) { in predictive_search() function 62 while (trie.predictive_search(agent)) { in predictive_search() 142 return predictive_search(cmdopt.argv + cmdopt.optind, in main()
|
D | marisa-dump.cc | 36 while (trie.predictive_search(agent)) { in dump()
|
D | marisa-benchmark.cc | 244 if (!trie.predictive_search(agent) || in benchmark_predictive_search() 249 while (trie.predictive_search(agent)) { in benchmark_predictive_search()
|
/external/marisa-trie/include/marisa/ |
D | trie.h | 37 bool predictive_search(Agent &agent) const;
|
/external/marisa-trie/bindings/ruby/ |
D | marisa-swig.cxx | 180 bool Trie::predictive_search(Agent &agent) const { in predictive_search() function in marisa_swig::Trie 181 return trie_->predictive_search(*agent.agent_); in predictive_search()
|
D | sample.rb | 59 while trie.predictive_search(agent)
|
D | benchmark.rb | 85 while trie.predictive_search(agent)
|
D | marisa-swig.h | 154 bool predictive_search(Agent &agent) const;
|
/external/marisa-trie/bindings/perl/ |
D | marisa-swig.cxx | 180 bool Trie::predictive_search(Agent &agent) const { in predictive_search() function in marisa_swig::Trie 181 return trie_->predictive_search(*agent.agent_); in predictive_search()
|
D | sample.pl | 59 while ($trie->predictive_search($agent)) {
|
D | benchmark.pl | 88 while ($trie->predictive_search($agent)) {
|
D | marisa-swig.h | 154 bool predictive_search(Agent &agent) const;
|
D | marisa.pm | 240 *predictive_search = *marisac::Trie_predictive_search;
|
D | marisa-swig_wrap.cxx | 3959 result = (bool)((marisa_swig::Trie const *)arg1)->predictive_search(*arg2); in XS()
|
/external/marisa-trie/bindings/ |
D | marisa-swig.cxx | 180 bool Trie::predictive_search(Agent &agent) const { in predictive_search() function in marisa_swig::Trie 181 return trie_->predictive_search(*agent.agent_); in predictive_search()
|
D | marisa-swig.h | 154 bool predictive_search(Agent &agent) const;
|
/external/marisa-trie/bindings/python/ |
D | marisa-swig.cxx | 180 bool Trie::predictive_search(Agent &agent) const { in predictive_search() function in marisa_swig::Trie 181 return trie_->predictive_search(*agent.agent_); in predictive_search()
|
D | sample.py | 56 while trie.predictive_search(agent):
|
D | benchmark.py | 78 while trie.predictive_search(agent):
|
D | marisa-swig.h | 154 bool predictive_search(Agent &agent) const;
|
D | marisa.py | 188 def predictive_search(self, *args): return _marisa.Trie_predictive_search(self, *args) member in Trie
|
/external/marisa-trie/lib/marisa/ |
D | trie.cc | 110 bool Trie::predictive_search(Agent &agent) const { in predictive_search() function in marisa::Trie 115 return trie_->predictive_search(agent); in predictive_search()
|
/external/marisa-trie/lib/marisa/grimoire/trie/ |
D | louds-trie.h | 30 bool predictive_search(Agent &agent) const;
|
D | louds-trie.cc | 136 bool LoudsTrie::predictive_search(Agent &agent) const { in predictive_search() function in marisa::grimoire::trie::LoudsTrie
|