HomeSort by relevance Sort by last modified time
    Searched defs:predict (Results 1 - 25 of 34) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DFA.as 56 /** From the input stream, predict what alternative will succeed
61 public function predict(input:IntStream):int { function
63 trace("Enter DFA.predict for decision "+decisionNumber);
91 if ( debug ) trace("accept; predict "+accept[s]+" from state "+s);
128 if ( debug ) trace("accept via EOF; predict "+accept[eof[s]]+" from "+eof[s]);
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DFA.pm 60 # From the input stream, predict what alternative will succeed
64 sub predict { subroutine
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 95 For more information on the prediction algorithm, check out the #predict method
171 def predict( input ) method in class:ANTLR3
237 def predict( input ) method in class:ANTLR3
  /external/libvpx/libvpx/test/
idct_test.cc 41 unsigned char predict[256]; member in class:__anon21165::IDCTTest
82 for (i = 0; i < 256; i++) predict[i] = i;
84 REGISTER_STATE_CHECK(UUT(input, predict, 16, output, 16));
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3cyclicdfa.h 75 ANTLR3_INT32 (*predict) (void * ctx, pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM is, struct ANTLR3_CYCLIC_DFA_struct * dfa); member in struct:ANTLR3_CYCLIC_DFA_struct
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 64 def predict(self, input): member in class:DFA
66 From the input stream, predict what alternative will succeed
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestDFAMatching.java 99 assertEquals(dfa.predict(stream), expected);
  /external/libvpx/libvpx/vp9/common/
vp9_scale.h 33 convolve_fn_t predict[2][2][2]; // horiz, vert, avg member in struct:scale_factors_common
  /external/marisa-trie/tools/
marisa-predict.cc 23 " -d, --depth-first predict keys in depth first order(default)\n"
24 " -b, --breadth-first predict keys in breadth first order\n"
32 int predict(const char * const *args, std::size_t num_args) { function in namespace:__anon22648
66 std::size_t num_keys = trie.predict(str);
81 << ": failed to predict keys from: " << str << std::endl;
158 return predict(cmdopt.argv + cmdopt.optind, cmdopt.argc - cmdopt.optind);
  /external/marisa-trie/v0_1_5/tools/
marisa_alpha-predict.cc 23 " -d, --depth-first predict keys in depth first order(default)\n"
24 " -b, --breadth-first predict keys in breadth first order\n"
32 int predict(const char * const *args, std::size_t num_args) { function in namespace:__anon22661
66 std::size_t num_keys = trie.predict(str);
81 << ": failed to predict keys from: " << str << std::endl;
159 return predict(cmdopt.argv + cmdopt.optind, cmdopt.argc - cmdopt.optind);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnEngine.java 54 * Predict words/phrases.
57 * @param minLen The minimum length of a word to predict (0 : no limit)
58 * @param maxLen The maximum length of a word to predict (-1 : no limit)
61 public int predict(ComposingText text, int minLen, int maxLen); method in interface:WnnEngine
97 * After {@link #predict(ComposingText, int, int)} or {@link #makeCandidateListOf(int)} or
100 * frequency order for {@link #predict(ComposingText, int, int)} and
SymbolList.java 188 /** @see jp.co.omronsoft.openwnn.WnnEngine#predict */
189 public int predict(ComposingText text, int minLen, int maxLen) { method in class:SymbolList
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DFA.java 57 /** From the input stream, predict what alternative will succeed
62 public int predict(IntStream input) method in class:DFA
66 System.err.println("Enter DFA.predict for decision "+decisionNumber);
93 if ( debug ) System.err.println("accept; predict "+accept[s]+" from state "+s);
130 if ( debug ) System.err.println("accept via EOF; predict "+accept[eof[s]]+" from "+eof[s]);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DFA.js 15 /** From the input stream, predict what alternative will succeed
20 predict: function(input) {
  /external/marisa-trie/lib/marisa/
trie-inline.h 74 inline std::size_t Trie::predict(const std::string &str, function in class:marisa::Trie
76 return predict(str.c_str(), str.length(), key_ids, keys, max_num_results);
79 inline std::size_t Trie::predict(const std::string &str, function in class:marisa::Trie
82 return predict(str.c_str(), str.length(), key_ids, keys, max_num_results);
trie-search.cc 142 std::size_t Trie::predict(const char *str, function in class:marisa::Trie
151 std::size_t Trie::predict(const char *ptr, std::size_t length, function in class:marisa::Trie
160 std::size_t Trie::predict(const char *str, function in class:marisa::Trie
170 std::size_t Trie::predict(const char *ptr, std::size_t length, function in class:marisa::Trie
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-inline.h 75 inline std::size_t Trie::predict(const std::string &str, function in class:marisa_alpha::Trie
77 return predict(str.c_str(), str.length(), key_ids, keys, max_num_results);
80 inline std::size_t Trie::predict(const std::string &str, function in class:marisa_alpha::Trie
83 return predict(str.c_str(), str.length(), key_ids, keys, max_num_results);
trie-search.cc 147 std::size_t Trie::predict(const char *str, function in class:marisa_alpha::Trie
156 std::size_t Trie::predict(const char *ptr, std::size_t length, function in class:marisa_alpha::Trie
166 std::size_t Trie::predict(const char *str, function in class:marisa_alpha::Trie
176 std::size_t Trie::predict(const char *ptr, std::size_t length, function in class:marisa_alpha::Trie
  /frameworks/native/services/sensorservice/
Fusion.cpp 278 predict(w, dT);
372 void Fusion::predict(const vec3_t& w, float dT) { function in class:android::Fusion
  /packages/inputmethods/PinyinIME/jni/share/
dictlist.cpp 233 size_t DictList::predict(const char16 last_hzs[], uint16 hzs_len, function in class:ime_pinyin::DictList
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 117 * predict which alternative will succeed. This is exactly what the
235 // decision point, must predict and jump to alt
245 int predictedAlt = predict(dfa);
395 public int predict(DFA dfa) { method in class:Interpreter
402 System.out.println("DFA.predict("+s.getStateNumber()+", "+
431 // woohoo! We know which alt to predict
  /external/opencv/ml/src/
mlnbayes.cpp 281 float CvNormalBayesClassifier::predict( const CvMat* samples, CvMat* results ) const function in class:CvNormalBayesClassifier
287 CV_FUNCNAME( "CvNormalBayesClassifier::predict" );
mlrtrees.cpp 389 // predict oob samples
391 CV_CALL(predicted_node = tree->predict(&sample, &missing, true));
457 // predict "permuted" cases and calculate the number of votes for the
469 predct_resp = tree->predict(&sample, &missing, true)->value;
525 result += trees[i]->predict( sample1, missing1 ) ==
526 trees[i]->predict( sample2, missing2 ) ? 1 : 0;
535 float CvRTrees::predict( const CvMat* sample, const CvMat* missing ) const function in class:CvRTrees
539 CV_FUNCNAME("CvRTrees::predict");
551 CvDTreeNode* predicted_node = trees[k]->predict( sample, missing );
568 result += trees[k]->predict( sample, missing )->value
    [all...]
mlem.cpp 209 CvEM::predict( const CvMat* _sample, CvMat* _probs ) const function in class:CvEM
216 CV_FUNCNAME( "CvEM::predict" );
378 labels->data.i[i*lstep] = cvRound(predict(&sample, &prob));
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
OpenWnnEngineEN.java 251 /** @see jp.co.omronsoft.openwnn.WnnEngine#predict */
252 public int predict(ComposingText text, int minLen, int maxLen) { method in class:OpenWnnEngineEN

Completed in 1043 milliseconds

1 2