Home
last modified time | relevance | path

Searched refs:min_decision_threshold (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/content/browser/speech/endpointer/
Denergy_endpointer_params.h76 float min_decision_threshold() const { return min_decision_threshold_; } in min_decision_threshold() function
77 void set_min_decision_threshold(float min_decision_threshold) { in set_min_decision_threshold() argument
78 min_decision_threshold_ = min_decision_threshold; in set_min_decision_threshold()
Denergy_endpointer.cc327 if (decision_threshold_ < params_.min_decision_threshold()) in ProcessAudioFrame()
328 decision_threshold_ = params_.min_decision_threshold(); in ProcessAudioFrame()
366 if (decision_threshold_ < params_.min_decision_threshold()) in UpdateLevels()
367 decision_threshold_ = params_.min_decision_threshold(); in UpdateLevels()
Denergy_endpointer_params.cc45 min_decision_threshold_ = source.min_decision_threshold(); in operator =()