/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
scopes.rb | 66 /* rule scopes, from the book, final beta, p.147 */ 83 /* rule scopes, from the book, final beta, p.148 */ 107 /* recursive rule scopes, from the book, final beta, p.150 */
|
/external/chromium/chrome/browser/history/ |
visit_database_unittest.cc | 152 VisitRow final; local 153 GetRowForVisit(original.visit_id, &final); 154 EXPECT_TRUE(IsVisitInfoEqual(modification, final));
|
/external/openfst/src/include/fst/ |
test-properties.h | 195 if (nfinal > 0) { // final state not last 200 Weight final = fst.Final(s); local 202 if (final != Weight::Zero()) { // final state 203 if (final != Weight::One()) { 208 } else { // non-final state
|
vector-fst.h | 57 Weight Final(StateId s) const { return states_[s]->final; } 65 void SetFinal(StateId s, Weight w) { states_[s]->final = w; } 171 VectorState() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {} 173 Weight final; // Final weight member in struct:fst::VectorState 219 Weight ow = BaseImpl::Final(s); 307 BaseImpl::SetFinal(s, fst.Final(s)); 339 typename A::Weight final; local 340 if (!final.Read(strm)) break [all...] |
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());
|
shortest-path.h | 49 // path to a final state. That path is the shortest path 142 if (ifst.Final(s) != Weight::Zero()) { 143 Weight w = Times(sd, ifst.Final(s)); 193 ofst->SetFinal(s_p, ifst.Final(f_parent)); 254 // 'distance' must contain the shortest distance from each state to a final 262 // the single final state. 306 // distance from 'superfinal' to the final state is 'Weight::One()', 326 StateId final = ofst->AddState(); 327 ofst->SetFinal(final, Weight::One()); 328 while (pairs.size() <= final) [all...] |
determinize.h | 332 Label subsequential_label; // Label used for residual final output 409 Weight Final(StateId s) { 411 Weight final = ComputeFinal(s); local 412 SetFinal(s, final); 414 return CacheImpl<A>::Final(s); 537 Weight final = Weight::Zero(); local 542 final = Plus(final, Times(element.weight, 543 GetFst().Final(element.state_id))); 544 if (!final.Member() [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
test-properties.h | 189 if (nfinal > 0) { // final state not last 194 Weight final = fst.Final(s); local 196 if (final != Weight::Zero()) { // final state 197 if (final != Weight::One()) { 202 } else { // non-final state
|
shortest-path.h | 137 if (ifst.Final(s) != Weight::Zero()) { 138 Weight w = Times(sd, ifst.Final(s)); 156 ofst->SetFinal(s_p, ifst.Final(f_parent)); 256 // the distance to the final state in 'rfst' 'ofst' is built as the 286 StateId final = ofst->AddState(); local 287 ofst->SetFinal(final, Weight::One()); 288 while (pairs.size() <= final) 290 pairs[final] = Pair(rfst.Start(), Weight::One()); 291 heap.push_back(final); 321 Weight finalw = rfst.Final(p.first).Reverse() [all...] |
determinize.h | 157 Weight Final(StateId s) { 159 Weight final = ComputeFinal(s); local 160 this->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...] |
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...] |
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); }
|
/external/openssl/crypto/evp/ |
evp_enc.c | 115 /* Whether it's nice or not, "Inits" can be used on "Final"'d contexts 462 OPENSSL_assert(b <= sizeof ctx->final); 466 memcpy(out,ctx->final,b); 483 memcpy(ctx->final,&out[*outl],b); 535 OPENSSL_assert(b <= sizeof ctx->final); 536 n=ctx->final[b-1]; 544 if (ctx->final[--b] != n) 552 out[i]=ctx->final[i];
|
/cts/ |
CtsTestCaseList.mk | 128 # directory of the final CTS distribution. 135 # and that need to be created before making the final CTS distribution.
|
CtsBuild.mk | 18 # directory before creating the final CTS distribution.
|
/external/srec/tools/grxmlcompile/ |
fst-io.h | 127 Weight final = fst_.Final(s); local 128 if (final != Weight::Zero() || !output) { 130 if (final != Weight::One()) { 131 *ostrm_ << "\t" << final; local
|
/external/llvm/lib/Target/MBlaze/ |
MBlazeISelLowering.cpp | 476 MachineBasicBlock *final = start; local 525 final = F->CreateMachineBasicBlock(LLVM_BB); 527 F->insert(It, final); 529 start->addSuccessor(final); 530 final->addSuccessor(exit); 531 final->addSuccessor(start); 542 final->moveAfter(start); 543 exit->moveAfter(final); 549 BuildMI(final, dl, TII->get(MBlaze::SWX)) 554 BuildMI(final, dl, TII->get(MBlaze::ADDIC), CHK [all...] |
/external/clang/test/SemaCXX/ |
cxx98-compat.cpp | 125 struct OverrideControl final : OverrideControlBase { // expected-warning {{'final' keyword is incompatible with C++98}} struct in inherits:OverrideControlBase 127 virtual void g() final; // expected-warning {{'final' keyword is incompatible with C++98}} member in struct:final
|
destructor.cpp | 185 struct F final: B {}; // expected-warning {{has virtual functions but non-virtual destructor}} struct in namespace:dnvd 194 struct VF final: VB {}; struct in namespace:dnvd
|
/external/valgrind/main/memcheck/tests/ |
varinfo6.stdout.exp | 10 final combined CRC = 0xA212ABF8
|
/external/webkit/Tools/QtTestBrowser/ |
webview.cpp | 215 QFinalState* final = new QFinalState(m_machine); local 216 s3->addTransition(s3, SIGNAL(propertiesAssigned()), final);
|
/frameworks/support/v7/appcompat/ |
Android.mk | 17 # Here is the final static library that apps can link against.
|
/frameworks/support/v7/gridlayout/ |
Android.mk | 17 # Here is the final static library that apps can link against.
|
/external/llvm/utils/release/ |
test-release.sh | 46 echo " -final The final release candidate." 72 -final | --final ) 73 RC=final
|
/external/libvpx/libvpx/tools/ |
ftfy.sh | 95 FINAL_DIFF=final.diff.$$
|