Home
last modified time | relevance | path

Searched refs:predictive_search (Results 1 – 25 of 27) sorted by relevance

12

/external/marisa-trie/tests/
Dmarisa-test.cc31 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/
Dmarisa-predictive-search.cc27 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()
Dmarisa-dump.cc36 while (trie.predictive_search(agent)) { in dump()
Dmarisa-benchmark.cc244 if (!trie.predictive_search(agent) || in benchmark_predictive_search()
249 while (trie.predictive_search(agent)) { in benchmark_predictive_search()
/external/marisa-trie/include/marisa/
Dtrie.h37 bool predictive_search(Agent &agent) const;
/external/marisa-trie/bindings/ruby/
Dmarisa-swig.cxx180 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()
Dsample.rb59 while trie.predictive_search(agent)
Dbenchmark.rb85 while trie.predictive_search(agent)
Dmarisa-swig.h154 bool predictive_search(Agent &agent) const;
/external/marisa-trie/bindings/perl/
Dmarisa-swig.cxx180 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()
Dsample.pl59 while ($trie->predictive_search($agent)) {
Dbenchmark.pl88 while ($trie->predictive_search($agent)) {
Dmarisa-swig.h154 bool predictive_search(Agent &agent) const;
Dmarisa.pm240 *predictive_search = *marisac::Trie_predictive_search;
Dmarisa-swig_wrap.cxx3959 result = (bool)((marisa_swig::Trie const *)arg1)->predictive_search(*arg2); in XS()
/external/marisa-trie/bindings/
Dmarisa-swig.cxx180 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()
Dmarisa-swig.h154 bool predictive_search(Agent &agent) const;
/external/marisa-trie/bindings/python/
Dmarisa-swig.cxx180 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()
Dsample.py56 while trie.predictive_search(agent):
Dbenchmark.py78 while trie.predictive_search(agent):
Dmarisa-swig.h154 bool predictive_search(Agent &agent) const;
Dmarisa.py188 def predictive_search(self, *args): return _marisa.Trie_predictive_search(self, *args) member in Trie
/external/marisa-trie/lib/marisa/
Dtrie.cc110 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/
Dlouds-trie.h30 bool predictive_search(Agent &agent) const;
Dlouds-trie.cc136 bool LoudsTrie::predictive_search(Agent &agent) const { in predictive_search() function in marisa::grimoire::trie::LoudsTrie

12