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

1 2 3

  /external/clang/include/clang/AST/
ParentMap.h 22 void* Impl;
  /external/skia/src/core/
SkRefDict.cpp 13 struct SkRefDict::Impl {
14 Impl* fNext;
30 Impl* rec = fImpl;
45 Impl* rec = fImpl;
46 Impl* prev = NULL;
71 rec = new Impl;
80 Impl* rec = fImpl;
82 Impl* next = rec->fNext;
  /external/clang/test/SemaTemplate/
qualified-id.cpp 23 class Impl {
27 template <class T> class Magic : public Impl {
29 return Impl::foo();
  /external/openfst/src/include/fst/
invert.h 81 typedef ArcMapFstImpl< A, A, InvertMapper<A> > Impl;
82 using ImplToFst<Impl>::GetImpl;
project.h 101 typedef ArcMapFstImpl< A, A, ProjectMapper<A> > Impl;
102 using ImplToFst<Impl>::GetImpl;
complement.h 71 ComplementFstImpl(const ComplementFstImpl<A> &impl)
72 : fst_(impl.fst_->Copy()) {
74 SetProperties(impl.Properties(), kCopyProperties);
75 SetInputSymbols(impl.InputSymbols());
76 SetOutputSymbols(impl.OutputSymbols());
118 // Set error if found; return FST impl properties.
150 typedef ComplementFstImpl<A> Impl;
153 : ImplToFst<Impl>(new Impl(fst)) {
164 : ImplToFst<Impl>(fst, safe) {
    [all...]
matcher-fst.h 70 typedef AddOnImpl<typename M::FST, D> Impl;
71 NullMatcherFstInit(Impl **) {}
92 typedef AddOnImpl<F, D> Impl;
94 MatcherFst() : ImplToExpandedFst<Impl>(new Impl(F(), N)) {}
97 : ImplToExpandedFst<Impl>(CreateImpl(fst, N)) {}
100 : ImplToExpandedFst<Impl>(CreateImpl(fst, N)) {}
104 : ImplToExpandedFst<Impl>(fst, safe) {}
114 Impl *impl = Impl::Read(strm, opts) local
121 Impl *impl = ImplToExpandedFst<Impl>::Read(filename); local
162 Impl *impl = new Impl(fst, name); local
    [all...]
rational.h 73 RationalFstImpl(const RationalFstImpl<A> &impl)
74 : rfst_(impl.rfst_),
75 nonterminals_(impl.nonterminals_),
77 replace_(impl.replace_ ? impl.replace_->Copy(true) : 0),
78 replace_options_(impl.replace_options_) {
80 fst_tuples_.reserve(impl.fst_tuples_.size());
81 for (size_t i = 0; i < impl.fst_tuples_.size(); ++i)
82 fst_tuples_.push_back(make_pair(impl.fst_tuples_[i].first,
83 impl.fst_tuples_[i].secon
    [all...]
relabel.h 272 RelabelFstImpl(const RelabelFstImpl<A>& impl)
273 : CacheImpl<A>(impl),
274 fst_(impl.fst_->Copy(true)),
275 input_map_(impl.input_map_),
276 output_map_(impl.output_map_),
277 relabel_input_(impl.relabel_input_),
278 relabel_output_(impl.relabel_output_) {
280 SetProperties(impl.Properties(), kCopyProperties);
281 SetInputSymbols(impl.InputSymbols());
282 SetOutputSymbols(impl.OutputSymbols())
    [all...]
state-map.h 228 StateMapFstImpl(const StateMapFstImpl<A, B, C> &impl)
229 : CacheImpl<B>(impl),
230 fst_(impl.fst_->Copy(true)),
231 mapper_(new C(*impl.mapper_, fst_)),
283 // Set error if found; return FST impl properties.
335 typedef StateMapFstImpl<A, B, C> Impl;
339 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {}
342 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {
    [all...]
synchronize.h 95 SynchronizeFstImpl(const SynchronizeFstImpl &impl)
96 : CacheImpl<A>(impl),
97 fst_(impl.fst_->Copy(true)) {
99 SetProperties(impl.Properties(), kCopyProperties);
100 SetInputSymbols(impl.InputSymbols());
101 SetOutputSymbols(impl.OutputSymbols());
160 // Set error if found; return FST impl properties.
363 typedef SynchronizeFstImpl<A> Impl;
366 : ImplToFst<Impl>(new Impl(fst, SynchronizeFstOptions())) {
    [all...]
const-fst.h 206 ConstFstImpl<A, U> *impl = new ConstFstImpl<A, U>; local
208 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) {
209 delete impl;
212 impl->start_ = hdr.Start();
213 impl->nstates_ = hdr.NumStates();
214 impl->narcs_ = hdr.NumArcs();
215 impl->states_ = new State[impl->nstates_];
216 impl->arcs_ = new A[impl->narcs_]
282 Impl* impl = Impl::Read(strm, opts); local
289 Impl* impl = ImplToExpandedFst<Impl>::Read(filename); local
    [all...]
encode.h 492 typedef ArcMapFstImpl< A, A, EncodeMapper<A> > Impl;
493 using ImplToFst<Impl>::GetImpl;
530 typedef ArcMapFstImpl< A, A, EncodeMapper<A> > Impl;
531 using ImplToFst<Impl>::GetImpl;
factor-weight.h 203 FactorWeightFstImpl(const FactorWeightFstImpl<A, F> &impl)
204 : CacheImpl<A>(impl),
205 fst_(impl.fst_->Copy(true)),
206 delta_(impl.delta_),
207 mode_(impl.mode_),
208 final_ilabel_(impl.final_ilabel_),
209 final_olabel_(impl.final_olabel_) {
211 SetProperties(impl.Properties(), kCopyProperties);
212 SetInputSymbols(impl.InputSymbols());
213 SetOutputSymbols(impl.OutputSymbols())
    [all...]
  /external/llvm/include/llvm/Analysis/
LibCallSemantics.h 129 mutable void *Impl;
133 LibCallInfo() : Impl(0), Locations(0), NumLocations(0) {}
  /external/llvm/include/llvm/CodeGen/
Passes.h 60 PassConfigImpl *Impl; // Internal data structures
  /external/llvm/include/llvm/Support/
CrashRecoveryContext.h 46 void *Impl;
50 CrashRecoveryContext() : Impl(0), head(0) {}
  /packages/apps/Launcher2/src/com/android/launcher2/
DeferredHandler.java 36 private Impl mHandler = new Impl();
38 private class Impl extends Handler implements MessageQueue.IdleHandler {
  /external/clang/lib/ARCMigrate/
Internals.h 49 void *Impl; // TransformActionsImpl.
  /external/llvm/lib/VMCore/
PassRegistry.cpp 76 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(pImpl);
78 for (std::vector<const PassInfo*>::iterator I = Impl->ToFree.begin(),
79 E = Impl->ToFree.end(); I != E; ++I)
82 delete Impl;
88 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl());
89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI);
90 return I != Impl->PassInfoMap.end() ? I->second : 0;
95 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl());
97 I = Impl->PassInfoStringMap.find(Arg);
98 return I != Impl->PassInfoStringMap.end() ? I->second : 0
    [all...]
  /external/skia/src/ports/
SkXMLPullParser_expat.cpp 126 struct SkXMLPullParser::Impl {
143 fImpl = new Impl;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rational.h 245 RationalFstImpl<A> *Impl() { return impl_; }
symbol-table.h 228 SymbolTableImpl* impl = SymbolTableImpl::ReadText(filename); local
229 if (!impl)
232 return new SymbolTable(impl);
237 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source); local
238 if (!impl)
241 return new SymbolTable(impl);
307 explicit SymbolTable(SymbolTableImpl* impl) : impl_(impl) {}
309 const SymbolTableImpl* Impl() const {
328 impl_ = symbol_table.Impl();
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 57 static class Impl implements SSLClientSessionCache {
79 Impl(File directory) throws IOException {
306 static final Map<File, FileClientSessionCache.Impl> caches
307 = new HashMap<File, FileClientSessionCache.Impl>();
321 FileClientSessionCache.Impl cache = caches.get(directory);
323 cache = new FileClientSessionCache.Impl(directory);
  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 287 // Constructs an Action from its implementation. A NULL impl is
289 explicit Action(ActionInterface<F>* impl) : impl_(impl) {}
349 template <typename Impl>
352 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {}
366 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {}
    [all...]

Completed in 659 milliseconds

1 2 3