HomeSort by relevance Sort by last modified time
    Searched defs:s_ (Results 26 - 32 of 32) sorted by null

12

  /external/openfst/src/include/fst/
arc-map.h 604 : impl_(fst.GetImpl()), siter_(*impl_->fst_), s_(0),
610 StateId Value() const { return s_; }
613 ++s_;
623 s_ = 0;
642 B final_arc = (*impl_->mapper_)(A(0, 0, impl_->fst_->Final(s_),
651 StateId s_; member in class:fst::StateIterator
    [all...]
cache.h 664 : fst_(fst), impl_(impl), s_(0) {
669 if (s_ < impl_->NumKnownStates())
671 if (s_ < impl_->NumKnownStates())
682 if (s_ < impl_->NumKnownStates())
688 StateId Value() const { return s_; }
690 void Next() { ++s_; }
692 void Reset() { s_ = 0; }
705 StateId s_; member in class:fst::CacheStateIterator
766 CacheMutableArcIterator(Impl *impl, StateId s) : i_(0), s_(s), impl_(impl) {
767 state_ = impl_->ExtendState(s_);
852 StateId s_; member in class:fst::CacheMutableArcIterator
    [all...]
compact-fst.h 1049 StateId s_; member in class:fst::StateIterator
    [all...]
fst.h 347 explicit StateIterator(const F &fst) : s_(0) {
354 return data_.base ? data_.base->Done() : s_ >= data_.nstates;
357 StateId Value() const { return data_.base ? data_.base->Value() : s_; }
363 ++s_;
370 s_ = 0;
375 StateId s_; member in class:fst::StateIterator
replace.h 1401 StateId s_; \/\/ Current state member in class:fst::ReplaceFstMatcher
    [all...]
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 967 : s_(0), num_states_(fst.NumStates()) { }
969 bool Done() const { return s_ >= num_states_; }
970 StateId Value() const { return s_; }
971 void Next() { ++s_; }
972 void Reset() { s_ = 0; }
980 StateId s_, num_states_; member in class:fst::StateIterator
  /external/chromium_org/v8/src/
jsregexp.h 1280 ContainedInLattice s_; \/\/ The \\s character class. member in class:v8::internal::BoyerMoorePositionInfo
    [all...]

Completed in 513 milliseconds

12