Searched defs:Done (Results 76 - 100 of 114) sorted by relevance

12345

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmap.h99 !aiter.Done(); aiter.Next()) {
170 for (StateIterator< Fst<A> > siter(ifst); !siter.Done(); siter.Next())
179 for (StateIterator< Fst<A> > siter(ifst); !siter.Done(); siter.Next()) {
184 for (ArcIterator< Fst<A> > aiter(ifst, s); !aiter.Done(); aiter.Next())
363 !aiter.Done(); aiter.Next()) {
550 bool Done() const { return siter_.Done() && !superfinal_; } function in class:fst::StateIterator
556 if (!siter_.Done()) {
575 if (!siter_.Done()) {
H A Dvector-fst.h330 !siter.Done();
337 !aiter.Done();
676 bool Done() const { return s_ >= nstates_; } function in class:fst::StateIterator
702 bool Done() const { return i_ >= arcs_.size(); } function in class:fst::ArcIterator
735 virtual bool Done() const { return i_ >= state_->arcs.size(); } function in class:fst::MutableArcIterator
H A Dfst.h224 virtual bool Done() const = 0; // End of iterator?
225 virtual StateId Value() const = 0; // Current state (when !Done)
226 virtual void Next() = 0; // Advance to next state (when !Done)
242 // !siter.Done();
259 bool Done() const { function in class:fst::StateIterator
260 return data_.base ? data_.base->Done() : s_ >= data_.nstates;
295 virtual bool Done() const = 0; // End of iterator?
296 virtual const A& Value() const = 0; // Current state (when !Done)
297 virtual void Next() = 0; // Advance to next arc (when !Done)
316 // !aiter.Done();
338 bool Done() const { function in class:fst::ArcIterator
[all...]
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp294 bool Done() { function in class:__anon17932::ParseHelper
320 for (ParseHelper PH(S); !PH.Done();) {
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp132 bool Done = false; local
133 while (!Done) {
143 Done = true;
525 bool Done = false; local
526 while (!Done) {
530 Done = true;
/external/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp250 bool Done = visit(I); local
252 if (Done && I->getType()->isVoidTy())
H A DIndVarSimplify.cpp1775 bool Done = false; local
1784 Done = true;
1786 Done = true;
1790 if (Done) break;
/external/openfst/src/include/fst/
H A Darc-map.h136 !aiter.Done(); aiter.Next()) {
230 for (StateIterator< Fst<A> > siter(ifst); !siter.Done(); siter.Next())
238 for (StateIterator< Fst<A> > siter(ifst); !siter.Done(); siter.Next()) {
244 for (ArcIterator< Fst<A> > aiter(ifst, s); !aiter.Done(); aiter.Next())
450 !aiter.Done(); aiter.Next()) {
608 bool Done() const { return siter_.Done() && !superfinal_; } function in class:fst::StateIterator
614 if (!siter_.Done()) {
633 bool Done_() const { return Done(); }
641 if (!siter_.Done()) {
[all...]
H A Dcache.h668 bool Done() const { function in class:fst::CacheStateIterator
679 for (; !aiter.Done(); aiter.Next())
698 virtual bool Done_() const { return Done(); }
727 bool Done() const { return i_ >= state_->arcs.size(); } function in class:fst::CacheArcIterator
775 bool Done() const { return i_ >= state_->arcs.size(); } function in class:fst::CacheMutableArcIterator
841 virtual bool Done_() const { return Done(); }
H A Dcompact-fst.h218 !siter.Done();
223 !aiter.Done();
252 !aiter.Done();
951 for (StateIterator<F> siter(fst); !siter.Done(); siter.Next()) {
958 for (ArcIterator<F> aiter(fst, s); !aiter.Done(); aiter.Next()) {
992 for (StateIterator<F> siter(fst); !siter.Done(); siter.Next()) {
1007 for (StateIterator<F> siter(fst); !siter.Done(); siter.Next()) {
1014 for (ArcIterator<F> aiter(fst, s); !aiter.Done(); aiter.Next()) {
1039 bool Done() const { return s_ >= nstates_; } function in class:fst::StateIterator
1087 bool Done() cons function in class:fst::ArcIterator
[all...]
H A Drandgen.h80 for (ArcIterator< Fst<A> > aiter(fst, s); !aiter.Done();
90 for (ArcIterator< Fst<A> > aiter(fst, s); !aiter.Done();
205 bool Done() const { return sample_iter_ == sample_map_.end(); } function in class:fst::ArcSampler
283 bool Done() const { return sample_iter_ == sample_map_.end(); } function in class:fst::ArcSampler
455 for (;!arc_sampler_->Done(); arc_sampler_->Next()) {
H A Dfst.h307 bool Done() const { return Done_(); } // End of iterator? function in class:fst::StateIteratorBase
308 StateId Value() const { return Value_(); } // Current state (when !Done)
309 void Next() { Next_(); } // Advance to next state (when !Done)
335 // !siter.Done();
353 bool Done() const { function in class:fst::StateIterator
354 return data_.base ? data_.base->Done() : s_ >= data_.nstates;
406 bool Done() const { return Done_(); } // End of iterator? function in class:fst::ArcIteratorBase
407 const A& Value() const { return Value_(); } // Current arc (when !Done)
408 void Next() { Next_(); } // Advance to next arc (when !Done)
445 // !aiter.Done();
473 bool Done() const { function in class:fst::ArcIterator
[all...]
H A Dreplace.h570 for (; !aiter.Done() &&
600 for (; !aiter.Done() &&
655 for (;!aiter.Done(); aiter.Next()) {
679 for (; !aiter.Done(); aiter.Next()) {
1145 bool Done() const { return pos_ >= num_arcs_; } function in class:fst::ArcIterator
1368 return !current_loop_ && !final_arc_ && current_matcher_->Done();
/external/pdfium/fpdfsdk/src/fxedit/
H A Dfxet_list.cpp488 void CPLST_Select::Done() function in class:CPLST_Select
850 m_aSelItems.Done();
/external/chromium_org/ipc/
H A Dipc_sync_channel_unittest.cc123 void Done() { done_->Signal(); } function in class:IPC::__anon8488::Worker
279 Done();
291 Done();
321 Done();
344 Done();
384 Done();
414 Done();
434 Done();
474 Done();
497 Done();
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkScript2.h201 enum Done { enum in struct:SkScriptEngine2::Branch
210 Done fDone : 1; // mark when branch is complete
/external/chromium_org/v8/src/heap/
H A Dmark-compact.h908 inline bool Done() { return cell_index_ == last_cell_index_; } function in class:v8::internal::BASE_EMBEDDED
/external/chromium_org/v8/src/
H A Dlithium.h547 bool Done() { return current_ >= limit_; } function in class:v8::internal::BASE_EMBEDDED
550 DCHECK(!Done());
556 DCHECK(!Done());
589 bool Done() { return current_iterator_.Done(); } function in class:v8::internal::BASE_EMBEDDED
592 DCHECK(!current_iterator_.Done());
604 while (current_iterator_.env() != NULL && current_iterator_.Done()) {
788 inline bool Done();
804 inline bool Done();
819 inline bool Done();
[all...]
H A Dtypes.h882 bool Done() const { return index_ < 0; } function in class:v8::internal::TypeImpl::Iterator
/external/clang/lib/AST/
H A DDeclCXX.cpp1302 bool Done = false; local
1305 M != MEnd && !Done; ++M) {
1308 SO != SOEnd && !Done; ++SO) {
1318 Done = true;
/external/clang/lib/Lex/
H A DModuleMap.cpp1401 bool Done = false; local
1406 Done = true;
1480 } while (!Done);
2071 bool Done = false; local
2076 Done = true;
2127 } while (!Done);
/external/llvm/lib/Support/
H A DCommandLine.cpp967 // do not give it values that others need. 'Done' controls whether the
970 bool Done = PositionalOpts[i]->getNumOccurrencesFlag() == cl::Required; local
971 while (NumVals-ValNo > NumPositionalRequired && !Done) {
974 Done = true; // Optional arguments want _at most_ one value
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp142 SDNode *SelectIndexedLoad(SDNode *N, bool &Done);
899 SDNode *AArch64DAGToDAGISel::SelectIndexedLoad(SDNode *N, bool &Done) { argument
972 Done = true;
2071 bool Done = false; local
2072 SDNode *I = SelectIndexedLoad(Node, Done);
2073 if (Done)
/external/openfst/src/include/fst/extensions/ngram/
H A Dngram-fst.h311 if (aiter.Done()) {
326 !aiter.Done(); aiter.Next()) {
336 !aiter.Done(); aiter.Next()) {
366 for (StateIterator<Fst<A> > siter(fst); !siter.Done(); siter.Next()) {
370 if (!aiter.Done()) {
471 !aiter.Done(); aiter.Next()) {
481 for (ArcIterator<Fst<A> > aiter(fst, state); !aiter.Done(); aiter.Next()) {
872 bool Done() const { function in class:fst::ArcIterator
937 virtual bool Done_() const { return Done(); }
969 bool Done() cons function in class:fst::StateIterator
[all...]
/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h1638 Done enumerator in enum:__anon28528

Completed in 3994 milliseconds

12345