HomeSort by relevance Sort by last modified time
    Searched defs:Impl (Results 26 - 50 of 53) sorted by null

12 3

  /external/openfst/src/include/fst/
rmepsilon.h 415 RmEpsilonFstImpl(const RmEpsilonFstImpl &impl)
416 : CacheImpl<A>(impl),
417 fst_(impl.fst_->Copy(true)),
418 delta_(impl.delta_),
424 SetProperties(impl.Properties(), kCopyProperties);
425 SetInputSymbols(impl.InputSymbols());
426 SetOutputSymbols(impl.OutputSymbols());
467 // Set error if found; return FST impl properties.
532 typedef RmEpsilonFstImpl<A> Impl;
535 : ImplToFst<Impl>(new Impl(fst, RmEpsilonFstOptions())) {
    [all...]
symbol-table.h 67 explicit SymbolTableImpl(const SymbolTableImpl& impl)
68 : name_(impl.name_),
72 for (size_t i = 0; i < impl.symbols_.size(); ++i) {
73 AddSymbol(impl.symbols_[i], impl.Find(impl.symbols_[i]));
234 SymbolTableImpl* impl = SymbolTableImpl::ReadText(strm, local
237 if (!impl)
240 return new SymbolTable(impl);
259 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, opts) local
    [all...]
cache.h 137 CacheBaseImpl(const CacheBaseImpl &impl)
140 cache_first_state_(0), cache_gc_(impl.cache_gc_), cache_size_(0),
141 cache_limit_(impl.cache_limit_) {
475 void operator=(const CacheBaseImpl<S> &impl); // disallow
522 CacheImpl(const CacheImpl<State> &impl) : CacheBaseImpl<State>(impl) {}
525 void operator=(const CacheImpl<State> &impl); // disallow
539 typedef CacheBaseImpl<State> Impl;
541 CacheStateIterator(const F &fst, Impl *impl)
    [all...]
compose.h 139 ComposeFstImplBase(const ComposeFstImplBase<A> &impl)
140 : CacheImpl<A>(impl) {
141 SetProperties(impl.Properties(), kCopyProperties);
142 SetInputSymbols(impl.InputSymbols());
143 SetOutputSymbols(impl.OutputSymbols());
225 ComposeFstImpl(const ComposeFstImpl<M1, M2, F, T> &impl)
226 : ComposeFstImplBase<Arc>(impl),
227 filter_(new F(*impl.filter_, true)),
232 state_table_(new T(*impl.state_table_)),
233 match_type_(impl.match_type_) {
513 Impl *impl = new ComposeFstImpl<M1, M2, F, T>(fst1, fst2, opts); local
    [all...]
determinize.h 165 DeterminizeFstImplBase(const DeterminizeFstImplBase<A> &impl)
166 : CacheImpl<A>(impl),
167 fst_(impl.fst_->Copy(true)) {
169 SetProperties(impl.Properties(), kCopyProperties);
170 SetInputSymbols(impl.InputSymbols());
171 SetOutputSymbols(impl.OutputSymbols());
281 DeterminizeFsaImpl(const DeterminizeFsaImpl<A, D> &impl)
282 : DeterminizeFstImplBase<A>(impl),
283 delta_(impl.delta_),
286 common_divisor_(impl.common_divisor_)
    [all...]
edit-fst.h 322 // The number of new states added to this mutable fst impl, which is <= the
345 // edits_ data member (which will increase the ref count by 1 on the impl)
433 EditFstImpl(const EditFstImpl &impl)
434 : wrapped_(static_cast<WrappedFstT *>(impl.wrapped_->Copy(true))),
435 data_(impl.data_) {
437 SetProperties(impl.Properties());
653 EditFstImpl<A, WrappedFstT, MutableFstT> *impl = new EditFstImpl(); local
655 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
658 impl->SetStart(hdr.Start());
667 impl->wrapped_ = static_cast<WrappedFstT *>(wrapped_fst)
730 Impl* impl = Impl::Read(strm, opts); local
737 Impl* impl = ImplToExpandedFst<Impl, MutableFst<A> >::Read(filename); local
    [all...]
randgen.h 365 RandGenFstImpl(const RandGenFstImpl &impl)
366 : CacheImpl<B>(impl),
367 fst_(impl.fst_->Copy(true)),
368 arc_sampler_(new S(*impl.arc_sampler_, fst_)),
369 npath_(impl.npath_),
370 weighted_(impl.weighted_),
373 SetProperties(impl.Properties(), kCopyProperties);
374 SetInputSymbols(impl.InputSymbols());
375 SetOutputSymbols(impl.OutputSymbols());
426 // Set error if found; return FST impl properties
    [all...]
vector-fst.h 325 VectorFstImpl<A> *impl = new VectorFstImpl; local
327 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
328 delete impl;
331 impl->BaseImpl::SetStart(hdr.Start());
333 impl->ReserveStates(hdr.NumStates());
340 impl->BaseImpl::AddState();
341 VectorState<A> *state = impl->GetState(s);
347 delete impl;
350 impl->ReserveArcs(s, narcs);
359 delete impl;
446 Impl* impl = Impl::Read(strm, opts); local
453 Impl* impl = ImplToExpandedFst<Impl, MutableFst<A> >::Read(filename); local
    [all...]
arc-map.h 356 ArcMapFstImpl(const ArcMapFstImpl<A, B, C> &impl)
357 : CacheImpl<B>(impl),
358 fst_(impl.fst_->Copy(true)),
359 mapper_(new C(*impl.mapper_)),
433 // Set error if found; return FST impl properties.
562 typedef ArcMapFstImpl<A, B, C> Impl;
565 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
568 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {
    [all...]
compact-fst.h 514 CompactFstImpl(const CompactFstImpl<A, C, U> &impl)
515 : CacheImpl<A>(impl),
516 compactor_(new C(*impl.compactor_)),
518 data_(impl.data_) {
521 SetType(impl.Type());
522 SetProperties(impl.Properties());
523 SetInputSymbols(impl.InputSymbols());
524 SetOutputSymbols(impl.OutputSymbols());
618 CompactFstImpl<A, C, U> *impl = new CompactFstImpl<A, C, U>(); local
620 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr))
847 Impl* impl = Impl::Read(strm, opts); local
854 Impl* impl = ImplToExpandedFst<Impl>::Read(filename); local
    [all...]
replace.h 434 ReplaceFstImpl(const ReplaceFstImpl& impl)
435 : CacheImpl<A>(impl),
436 epsilon_on_replace_(impl.epsilon_on_replace_),
437 always_cache_(impl.always_cache_),
438 state_table_(new StateTable(*(impl.state_table_))),
439 nonterminal_set_(impl.nonterminal_set_),
440 nonterminal_hash_(impl.nonterminal_hash_),
441 root_(impl.root_) {
443 SetProperties(impl.Properties(), kCopyProperties);
444 SetInputSymbols(impl.InputSymbols())
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
factor-weight.h 405 FactorWeightFstImpl<A, F> *Impl() { return impl_; }
rmepsilon.h 494 RmEpsilonFstImpl<A> *Impl() { return impl_; }
synchronize.h 388 SynchronizeFstImpl<A> *Impl() { return impl_; }
determinize.h 608 DeterminizeFstImplBase<A> *Impl() { return impl_; }
compose.h 756 ComposeFstImplBase<A> *Impl() { return impl_; }
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExplodedGraph.h 382 ImplTy Impl;
387 Impl.insert(N);
393 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N);
399 unsigned size() const { return Impl.size(); }
400 bool empty() const { return Impl.empty(); }
401 bool erase(ExplodedNode *N) { return Impl.erase(N); }
403 void clear() { Impl.clear(); }
407 Impl = S.Impl;
409 Impl.insert(S.begin(), S.end())
    [all...]
  /frameworks/base/core/java/android/provider/
Downloads.java 41 public static final class Impl implements BaseColumns {
42 private Impl() {}
792 private static final String QUERY_WHERE_CLAUSE = Impl.COLUMN_NOTIFICATION_PACKAGE + "=? AND "
793 + Impl.COLUMN_NOTIFICATION_CLASS + "=?";
800 context.getContentResolver().delete(Impl.CONTENT_URI, QUERY_WHERE_CLAUSE,
  /external/chromium/chrome/browser/chromeos/input_method/
candidate_window.cc 559 class CandidateWindowController::Impl : public CandidateWindowView::Observer {
561 Impl();
562 virtual ~Impl();
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h 594 operator Action<F>() const { return MakeAction(new Impl<F>(action_)); }
598 class Impl : public ActionInterface<F> {
603 explicit Impl(const InnerAction& action) : action_(action) {}
639 template <typename Result, class Impl>
642 static Result Perform(Impl* impl, const ::std::tr1::tuple<>& args) {
644 return impl->template gmock_PerformImpl<>(args, ExcessiveArg(),
651 static Result Perform(Impl* impl, const ::std::tr1::tuple<A0>& args) {
653 return impl->template gmock_PerformImpl<A0>(args, get<0>(args)
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 272 ImplTy Impl;
274 ElementList(BumpVectorContext &C) : Impl(C, 4) {}
281 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); }
284 return Impl.insert(I, Cnt, E, C);
287 CFGElement front() const { return Impl.back(); }
288 CFGElement back() const { return Impl.front(); }
290 iterator begin() { return Impl.rbegin(); }
291 iterator end() { return Impl.rend(); }
292 const_iterator begin() const { return Impl.rbegin(); }
293 const_iterator end() const { return Impl.rend();
    [all...]
  /external/llvm/lib/VMCore/
PassManager.cpp     [all...]
  /external/openfst/src/include/fst/extensions/pdt/
expand.h 104 ExpandFstImpl(const ExpandFstImpl &impl)
105 : CacheImpl<A>(impl),
106 fst_(impl.fst_->Copy(true)),
107 stack_(new PdtStack<StateId, Label>(*impl.stack_)),
110 keep_parentheses_(impl.keep_parentheses_) {
112 SetProperties(impl.Properties(), kCopyProperties);
113 SetInputSymbols(impl.InputSymbols());
114 SetOutputSymbols(impl.OutputSymbols());
236 typedef ExpandFstImpl<A> Impl;
241 : ImplToFst<Impl>(new Impl(fst, parens, ExpandFstOptions<A>())) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedSetTest.java 237 Interface a = new Impl();
238 Interface b = new Impl();
246 static class Impl implements Interface {
251 return id.compareTo(((Impl) other).id);
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 64 public final static String COLUMN_ID = Downloads.Impl._ID;
70 public final static String COLUMN_TITLE = Downloads.Impl.COLUMN_TITLE;
76 public final static String COLUMN_DESCRIPTION = Downloads.Impl.COLUMN_DESCRIPTION;
81 public final static String COLUMN_URI = Downloads.Impl.COLUMN_URI;
113 public final static String COLUMN_STATUS = Downloads.Impl.COLUMN_STATUS;
150 public static final String COLUMN_MEDIAPROVIDER_URI = Downloads.Impl.COLUMN_MEDIAPROVIDER_URI;
305 Downloads.Impl._ID,
306 Downloads.Impl._DATA + " AS " + COLUMN_LOCAL_FILENAME,
307 Downloads.Impl.COLUMN_MEDIAPROVIDER_URI,
308 Downloads.Impl.COLUMN_DESTINATION
    [all...]

Completed in 478 milliseconds

12 3