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

  /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();
  /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); }
rmepsilon.h 68 // Compute arcs and final weight for state 's'
74 // Returns final weight of expanded state.
75 const Weight &Final() const { return final_; }
130 Weight final_; // Final weight of state being expanded
182 final_ = Plus(final_, Times((*distance_)[state], fst_.Final(state)));
250 fst->SetFinal(state, rmeps_state.Final());
356 Weight Final(StateId s) {
360 return CacheImpl<A>::Final(s);
389 SetFinal(s, rmeps_state_.Final());
451 virtual Weight Final(StateId s) const { return impl_->Final(s);
    [all...]
synchronize.h 106 Weight Final(StateId s) {
109 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
115 return CacheImpl<A>::Final(s);
230 Weight w = e.state == kNoStateId ? Weight::One() : fst_->Final(e.state);
345 virtual Weight Final(StateId s) const { return impl_->Final(s); }
determinize.h 157 Weight Final(StateId s) {
159 Weight final = ComputeFinal(s); local
160 SetFinal(s, final);
162 return CacheImpl<A>::Final(s);
253 Weight final = Weight::Zero(); local
258 final = Plus(final, Times(element.weight,
259 fst_->Final(element.state_id)));
261 return final;
496 virtual Weight ComputeFinal(StateId s) { return from_fst_->Final(s);
    [all...]
map.h 28 // This determines how final weights are mapped.
31 // A final weight is mapped into a final weight. An error
35 // A final weight is mapped to an arc to the superfinal state
36 // when the result cannot be represented as a final weight.
40 // A final weight is mapped to an arc to the superfinal state
41 // unless the result can be represented as a final weight of weight
47 // Mapper Interface - class determinies how arcs and final weights
54 // // Specifies final action the mapper requires (see above).
55 // // The mapper will be passed final weights as arcs of th
    [all...]
replace.h 239 // return final weight of state (kInfWeight means state is not final)
240 Weight Final(StateId s) {
247 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth() == 0)
248 SetFinal(s, fst->Final(fst_state));
252 return CacheImpl<A>::Final(s);
305 // if state is final, pop up stack
307 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth()) {
313 AddArc(s, A(0, 0, fst->Final(fst_state), nextstate));
565 virtual Weight Final(StateId s) const
    [all...]
vector-fst.h 51 Weight Final(StateId s) const { return states_[s]->final; }
59 void SetFinal(StateId s, Weight w) { states_[s]->final = w; }
165 VectorState() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {}
167 Weight final; // Final weight member in struct:fst::VectorState
214 Weight ow = Final(s);
334 BaseImpl::SetFinal(s, fst.Final(s));
362 state->final.Read(strm);
431 state->final.Write(strm)
    [all...]
compose.h 137 Weight Final(StateId s) {
139 Weight final = ComputeFinal(s); local
140 SetFinal(s, final);
142 return CacheImpl<A>::Final(s);
481 bool finala = fsta->Final(sa) != Weight::Zero();
633 Weight final = Times(ComposeFstImplBase<A>::fst1_->Final(tuple.state_id1), local
634 ComposeFstImplBase<A>::fst2_->Final(tuple.state_id2));
635 return final;
709 virtual Weight Final(StateId s) const { return impl_->Final(s);
    [all...]

Completed in 437 milliseconds