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

1 2

  /external/chromium/crypto/
signature_creator_mac.cc 61 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_nss.cc 59 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_openssl.cc 39 bool SignatureCreator::Final(std::vector<uint8>* signature) {
signature_creator_win.cc 39 bool SignatureCreator::Final(std::vector<uint8>* signature) {
  /external/clang/test/SemaTemplate/
class-template-ctor-initializer.cpp 46 class Final : public Derived<Base> {
52 Final final; local
  /external/openfst/src/include/fst/
expanded-fst.h 95 typename A::Weight Final(const ExpandedFst<A> &fst, typename A::StateId s) {
96 return fst.Final(s);
arcsort.h 54 Weight Final(StateId s) const { return fst_.Final(s); }
add-on.h 187 Weight Final(StateId s) const { return fst_.Final(s); }
complement.h 38 // completes the (deterministic) FSA and then exchanges final and
39 // non-final states. Completion, i.e. ensuring that all labels can be
92 // Exchange final and non-final states; make rho destination state final.
93 Weight Final(StateId s) const {
94 if (s == 0 || fst_->Final(s - 1) == Weight::Zero())
mutable-fst.h 54 virtual void SetFinal(StateId, Weight) = 0; // Set a state's final weight
220 typename A::Weight Final(const MutableFst<A> &fst, typename A::StateId s) {
221 return fst.Final(s);
rational.h 98 Weight Final(StateId s) { return Replace()->Final(s); }
relabel.h 299 Weight Final(StateId s) {
301 SetFinal(s, fst_->Final(s));
303 return CacheImpl<A>::Final(s);
state-map.h 56 // // Specifies state's final weight in result
57 // B::Weight Final(B::StateId s) const;
112 fst->SetFinal(s, mapper->Final(s));
166 ofst->SetFinal(s, mapper->Final(s));
245 Weight Final(StateId s) {
247 SetFinal(s, mapper_->Final(s));
248 return CacheImpl<B>::Final(s);
419 Weight Final(StateId s) const { return fst_.Final(s); }
457 Weight Final(StateId s) const { return fst_.Final(s);
    [all...]
synchronize.h 128 Weight Final(StateId s) {
131 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
137 return CacheImpl<A>::Final(s);
261 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
const-fst.h 80 Weight Final(StateId s) const { return states_[s].final; }
113 Weight final; // Final weight member in struct:fst::ConstFstImpl::State
118 State() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {}
182 states_[s].final = fst.Final(s);
385 state.final = fst.Final(siter.Value());
factor-weight.h 47 uint32 mode; // factor arc weights and/or final weights
48 Label final_ilabel; // input label of arc created when factoring final w's
49 Label final_olabel; // output label of arc created when factoring final w's
199 << "factoring neither arc weights nor final weights.";
230 Weight Final(StateId s) {
236 : (Weight) Times(e.weight, fst_->Final(e.state));
243 return CacheImpl<A>::Final(s);
331 (fst_->Final(e.state) != Weight::Zero()))) {
334 : Times(e.weight, fst_->Final(e.state));
371 uint32 mode_; // factoring arc and/or final weight
    [all...]
rmepsilon.h 83 // Compute arcs and final weight for state 's'
89 // Returns final weight of expanded state.
90 const Weight &Final() const { return final_; }
147 Weight final_; // Final weight of state being expanded
208 final_ = Plus(final_, Times((*distance_)[state], fst_.Final(state)));
300 fst->SetFinal(state, rmeps_state.Final());
439 Weight Final(StateId s) {
443 return CacheImpl<A>::Final(s);
482 SetFinal(s, rmeps_state_.Final());
  /external/chromium/base/
sha1_portable.cc 25 // sha.Final();
42 void Final();
118 void SecureHashAlgorithm::Final() {
210 sha.Final();
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsort.h 116 Weight Final(StateId s) {
118 SetFinal(s, fst_->Final(s));
119 return CacheImpl<A>::Final(s);
209 virtual Weight Final(StateId s) const { return impl_->Final(s); }
complement.h 32 // completes the (deterministic) FSA and then exchanges final and
33 // non-final states. Completion, i.e. ensuring that all labels can be
75 // Exchange final and non-final states; make rho destination state final.
76 Weight Final(StateId s) const {
77 if (s == 0 || fst_->Final(s - 1) == Weight::Zero())
134 virtual Weight Final(StateId s) const { return impl_->Final(s); }
const-fst.h 58 Weight Final(StateId s) const { return states_[s].final; }
91 Weight final; // Final weight member in struct:fst::ConstFstImpl::State
96 State() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {}
141 states_[s].final = fst.Final(s);
243 virtual Weight Final(StateId s) const { return impl_->Final(s); }
rational.h 202 virtual Weight Final(StateId s) const { return impl_->Final(s); }
relabel.h 239 Weight Final(StateId s) {
241 SetFinal(s, fst_->Final(s));
243 return CacheImpl<A>::Final(s);
360 virtual Weight Final(StateId s) const { return impl_->Final(s); }
cache.h 50 // final weight even if the state is non-final to mark it as
166 state->final = w;
205 // Is the final weight of state s cached?
228 Weight Final(StateId s) const {
230 return state->final;
312 static const uint32 kCacheFinal = 0x0001; // Final weight has been cached
353 CacheState() : final(Weight::Zero()), flags(0), ref_count(0) {}
361 Weight final; // Final weigh member in struct:fst::CacheState
    [all...]
factor-weight.h 37 bool final_only; // only factor final weights when true
188 Weight Final(StateId s) {
194 : (Weight) Times(e.weight, fst_->Final(e.state));
201 return CacheImpl<A>::Final(s);
278 (fst_->Final(e.state) != Weight::Zero())) {
281 : Times(e.weight, fst_->Final(e.state));
362 virtual Weight Final(StateId s) const { return impl_->Final(s); }

Completed in 410 milliseconds

1 2