/external/llvm/lib/VMCore/ |
D | PassRegistry.cpp | 76 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(pImpl); in ~PassRegistry() local 78 for (std::vector<const PassInfo*>::iterator I = Impl->ToFree.begin(), in ~PassRegistry() 79 E = Impl->ToFree.end(); I != E; ++I) in ~PassRegistry() 82 delete Impl; in ~PassRegistry() 88 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in getPassInfo() local 89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI); in getPassInfo() 90 return I != Impl->PassInfoMap.end() ? I->second : 0; in getPassInfo() 95 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in getPassInfo() local 97 I = Impl->PassInfoStringMap.find(Arg); in getPassInfo() 98 return I != Impl->PassInfoStringMap.end() ? I->second : 0; in getPassInfo() [all …]
|
/external/skia/src/core/ |
D | SkRefDict.cpp | 13 struct SkRefDict::Impl { struct in SkRefDict 14 Impl* fNext; argument 30 Impl* rec = fImpl; in find() 45 Impl* rec = fImpl; in set() 46 Impl* prev = NULL; in set() 71 rec = new Impl; in set() 80 Impl* rec = fImpl; in removeAll() 82 Impl* next = rec->fNext; in removeAll()
|
/external/openfst/src/include/fst/ |
D | matcher-fst.h | 70 typedef AddOnImpl<typename M::FST, D> Impl; typedef 71 NullMatcherFstInit(Impl **) {} in NullMatcherFstInit() argument 92 typedef AddOnImpl<F, D> Impl; typedef 94 MatcherFst() : ImplToExpandedFst<Impl>(new Impl(F(), N)) {} in MatcherFst() 97 : ImplToExpandedFst<Impl>(CreateImpl(fst, N)) {} in MatcherFst() 100 : ImplToExpandedFst<Impl>(CreateImpl(fst, N)) {} in MatcherFst() 104 : ImplToExpandedFst<Impl>(fst, safe) {} 114 Impl *impl = Impl::Read(strm, opts); in Read() 121 Impl *impl = ImplToExpandedFst<Impl>::Read(filename); in Read() 146 Impl *GetImpl() const { in GetImpl() [all …]
|
D | relabel.h | 392 typedef RelabelFstImpl<A> Impl; typedef 397 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, RelabelFstOptions())) {} in RelabelFst() 403 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, opts)) {} in RelabelFst() 408 : ImplToFst<Impl>(new Impl(fst, fst.InputSymbols(), new_isymbols, in RelabelFst() 416 : ImplToFst<Impl>(new Impl(fst, fst.InputSymbols(), new_isymbols, in RelabelFst() 424 : ImplToFst<Impl>(new Impl(fst, old_isymbols, new_isymbols, old_osymbols, in RelabelFst() 433 : ImplToFst<Impl>(new Impl(fst, old_isymbols, new_isymbols, old_osymbols, in RelabelFst() 438 : ImplToFst<Impl>(fst, safe) {} 453 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); } in GetImpl()
|
D | const-fst.h | 265 typedef ConstFstImpl<A, U> Impl; typedef 268 ConstFst() : ImplToExpandedFst<Impl>(new Impl()) {} in ConstFst() 271 : ImplToExpandedFst<Impl>(new Impl(fst)) {} in ConstFst() 273 ConstFst(const ConstFst<A, U> &fst) : ImplToExpandedFst<Impl>(fst) {} in ConstFst() 282 Impl* impl = Impl::Read(strm, opts); in Read() 289 Impl* impl = ImplToExpandedFst<Impl>::Read(filename); in Read() 314 explicit ConstFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {} in ConstFst() 317 Impl *GetImpl() const { return ImplToFst<Impl, ExpandedFst<A> >::GetImpl(); } in GetImpl() 319 void SetImpl(Impl *impl, bool own_impl = true) { 320 ImplToFst< Impl, ExpandedFst<A> >::SetImpl(impl, own_impl);
|
D | edit-fst.h | 692 typedef EditFstImpl<A, WrappedFstT, MutableFstT> Impl; typedef 694 EditFst() : ImplToMutableFst<Impl>(new Impl()) {} in EditFst() 697 ImplToMutableFst<Impl>(new Impl(fst)) {} in EditFst() 700 ImplToMutableFst<Impl>(new Impl(fst)) {} in EditFst() 704 ImplToMutableFst<Impl>(fst, safe) {} 721 SetImpl(new Impl(fst)); 730 Impl* impl = Impl::Read(strm, opts); in Read() 737 Impl* impl = ImplToExpandedFst<Impl, MutableFst<A> >::Read(filename); in Read() 762 explicit EditFst(Impl *impl) : ImplToMutableFst<Impl>(impl) {} in EditFst() 765 Impl *GetImpl() const { return ImplToFst< Impl, MutableFst<A> >::GetImpl(); } in GetImpl() [all …]
|
D | vector-fst.h | 420 typedef VectorFstImpl<A> Impl; typedef 422 VectorFst() : ImplToMutableFst<Impl>(new Impl) {} in VectorFst() 425 : ImplToMutableFst<Impl>(new Impl(fst)) {} in VectorFst() 427 VectorFst(const VectorFst<A> &fst) : ImplToMutableFst<Impl>(fst) {} in VectorFst() 440 if (this != &fst) SetImpl(new Impl(fst)); 446 Impl* impl = Impl::Read(strm, opts); in Read() 453 Impl* impl = ImplToExpandedFst<Impl, MutableFst<A> >::Read(filename); in Read() 491 explicit VectorFst(Impl *impl) : ImplToMutableFst<Impl>(impl) {} in VectorFst() 494 Impl *GetImpl() const { return ImplToFst< Impl, MutableFst<A> >::GetImpl(); } in GetImpl() 496 void SetImpl(Impl *impl, bool own_impl = true) { [all …]
|
D | compact-fst.h | 792 typedef CompactFstImpl<A, C, U> Impl; typedef 796 CompactFst() : ImplToExpandedFst<Impl>(new Impl()) {} in CompactFst() 800 : ImplToExpandedFst<Impl>(new Impl(fst, compactor, opts)) {} 804 : ImplToExpandedFst<Impl>(new Impl(fst, compactor, opts)) {} 829 : ImplToExpandedFst<Impl>(new Impl(begin, end, compactor, opts)) {} 834 : ImplToExpandedFst<Impl>(new Impl(begin, end, compactor, opts)) {} 838 : ImplToExpandedFst<Impl>(fst, safe) {} 847 Impl* impl = Impl::Read(strm, opts); in Read() 854 Impl* impl = ImplToExpandedFst<Impl>::Read(filename); in Read() 884 CompactFst(Impl *impl) : ImplToExpandedFst<Impl>(impl) {} in CompactFst() [all …]
|
D | state-map.h | 335 typedef StateMapFstImpl<A, B, C> Impl; typedef 339 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {} in StateMapFst() 342 : ImplToFst<Impl>(new Impl(fst, mapper, opts)) {} in StateMapFst() 345 : ImplToFst<Impl>(new Impl(fst, mapper, StateMapFstOptions())) {} in StateMapFst() 348 : ImplToFst<Impl>(new Impl(fst, mapper, StateMapFstOptions())) {} in StateMapFst() 352 : ImplToFst<Impl>(fst, safe) {} 369 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); } in GetImpl()
|
D | rational.h | 278 typedef RationalFstImpl<A> Impl; typedef 290 : ImplToFst<Impl>(new Impl(RationalFstOptions())) {} in RationalFst() 293 : ImplToFst<Impl>(new Impl(opts)) {} in RationalFst() 297 : ImplToFst<Impl>(fst, safe) {} 301 Impl *GetImpl() const { return ImplToFst<Impl>::GetImpl(); } in GetImpl()
|
/external/chromium/testing/gmock/include/gmock/ |
D | gmock-actions.h | 349 template <typename Impl> 352 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} in PolymorphicAction() 366 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} in MonomorphicImpl() 373 Impl impl_; 378 Impl impl_; 397 template <typename Impl> 398 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { in MakePolymorphicAction() 399 return PolymorphicAction<Impl>(impl); in MakePolymorphicAction() 472 return Action<F>(new Impl<F>(value_)); 478 class Impl : public ActionInterface<F> { [all …]
|
D | gmock-matchers.h | 316 template <class Impl> 319 explicit PolymorphicMatcher(const Impl& an_impl) : impl_(an_impl) {} in PolymorphicMatcher() 323 Impl& mutable_impl() { return impl_; } in mutable_impl() 327 const Impl& impl() const { return impl_; } in impl() 338 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} in MonomorphicImpl() 353 const Impl impl_; 358 Impl impl_; 382 template <class Impl> 383 inline PolymorphicMatcher<Impl> MakePolymorphicMatcher(const Impl& impl) { in MakePolymorphicMatcher() 384 return PolymorphicMatcher<Impl>(impl); in MakePolymorphicMatcher() [all …]
|
/external/chromium/chrome/browser/chromeos/input_method/ |
D | candidate_window.cc | 559 class CandidateWindowController::Impl : public CandidateWindowView::Observer { class in chromeos::CandidateWindowController 561 Impl(); 562 virtual ~Impl(); 1255 bool CandidateWindowController::Impl::Init() { in Init() 1259 &CandidateWindowController::Impl::OnHideAuxiliaryText; in Init() 1261 &CandidateWindowController::Impl::OnHideLookupTable; in Init() 1263 &CandidateWindowController::Impl::OnSetCursorLocation; in Init() 1265 &CandidateWindowController::Impl::OnUpdateAuxiliaryText; in Init() 1267 &CandidateWindowController::Impl::OnUpdateLookupTable; in Init() 1275 &CandidateWindowController::Impl::OnConnectionChange); in Init() [all …]
|
D | candidate_window.h | 30 class Impl; 31 Impl* impl_;
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ExplodedGraph.h | 390 ImplTy Impl; variable 395 Impl.insert(N); in ExplodedNodeSet() 401 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N); in Add() 407 unsigned size() const { return Impl.size(); } in size() 408 bool empty() const { return Impl.empty(); } in empty() 409 bool erase(ExplodedNode *N) { return Impl.erase(N); } in erase() 411 void clear() { Impl.clear(); } in clear() 415 Impl = S.Impl; in insert() 417 Impl.insert(S.begin(), S.end()); in insert() 420 inline iterator begin() { return Impl.begin(); } in begin() [all …]
|
/external/clang/lib/ARCMigrate/ |
D | TransformActions.cpp | 605 Impl = new TransformActionsImpl(capturedDiags, ctx, PP); in TransformActions() 609 delete static_cast<TransformActionsImpl*>(Impl); in ~TransformActions() 613 static_cast<TransformActionsImpl*>(Impl)->startTransaction(); in startTransaction() 617 return static_cast<TransformActionsImpl*>(Impl)->commitTransaction(); in commitTransaction() 621 static_cast<TransformActionsImpl*>(Impl)->abortTransaction(); in abortTransaction() 626 static_cast<TransformActionsImpl*>(Impl)->insert(loc, text); in insert() 631 static_cast<TransformActionsImpl*>(Impl)->insertAfterToken(loc, text); in insertAfterToken() 635 static_cast<TransformActionsImpl*>(Impl)->remove(range); in remove() 639 static_cast<TransformActionsImpl*>(Impl)->removeStmt(S); in removeStmt() 643 static_cast<TransformActionsImpl*>(Impl)->replace(range, text); in replace() [all …]
|
/external/clang/lib/AST/ |
D | ParentMap.cpp | 42 ParentMap::ParentMap(Stmt* S) : Impl(0) { in ParentMap() 46 Impl = M; in ParentMap() 51 delete (MapTy*) Impl; in ~ParentMap() 56 BuildParentMap(*(MapTy*) Impl, S); in addStmt() 61 MapTy* M = (MapTy*) Impl; in getParent()
|
/external/clang/test/SemaTemplate/ |
D | qualified-id.cpp | 23 class Impl { class 27 template <class T> class Magic : public Impl { 29 return Impl::foo(); in foo()
|
/external/llvm/lib/Analysis/ |
D | LibCallSemantics.cpp | 28 delete getMap(Impl); in ~LibCallInfo() 45 StringMap<const LibCallFunctionInfo*> *Map = getMap(Impl); in getFunctionInfo() 50 Impl = Map = new StringMap<const LibCallFunctionInfo*>(); in getFunctionInfo()
|
/external/clang/include/clang/Analysis/ |
D | CFG.h | 272 ImplTy Impl; variable 274 ElementList(BumpVectorContext &C) : Impl(C, 4) {} in ElementList() 282 void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); } in push_back() 285 return Impl.insert(I, Cnt, E, C); in insert() 288 const_reference front() const { return Impl.back(); } in front() 289 const_reference back() const { return Impl.front(); } in back() 291 iterator begin() { return Impl.rbegin(); } in begin() 292 iterator end() { return Impl.rend(); } in end() 293 const_iterator begin() const { return Impl.rbegin(); } in begin() 294 const_iterator end() const { return Impl.rend(); } in end() [all …]
|
/external/llvm/lib/Support/ |
D | CrashRecoveryContext.cpp | 79 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; in ~CrashRecoveryContext() 299 assert(!Impl && "Crash recovery context already initialized!"); in RunSafely() 301 Impl = CRCI; in RunSafely() 313 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; in HandleCrash() 319 CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *) Impl; in getBacktrace()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | closure.h | 69 fst->Impl()->AddClosure(closure_type); in Closure() 98 using RationalFst<A>::Impl; 103 Impl()->InitClosure(fst, closure_type); in ClosureFst() 108 Impl()->InitClosure(fst, opts.type); in ClosureFst()
|
D | concat.h | 86 fst1->Impl()->AddConcat(fst2); in Concat() 107 using RationalFst<A>::Impl; 114 Impl()->InitConcat(fst1, fst2); in ConcatFst() 119 Impl()->InitConcat(fst1, fst2); in ConcatFst()
|
D | union.h | 88 fst1->Impl()->AddUnion(fst2); in Union() 109 using RationalFst<A>::Impl; 116 Impl()->InitUnion(fst1, fst2); in UnionFst() 121 Impl()->InitUnion(fst1, fst2); in UnionFst()
|
/external/llvm/lib/CodeGen/ |
D | Passes.cpp | 219 delete Impl; in ~TargetPassConfig() 226 Started(true), Stopped(false), TM(tm), Impl(0), Initialized(false), in TargetPassConfig() 230 Impl = new PassConfigImpl(); in TargetPassConfig() 252 Impl->InsertedPasses.push_back(P); in insertPass() 276 Impl->TargetPasses[StandardID] = TargetID; in substitutePass() 281 I = Impl->TargetPasses.find(ID); in getPassSubstitution() 282 if (I == Impl->TargetPasses.end()) in getPassSubstitution() 325 I = Impl->InsertedPasses.begin(), E = Impl->InsertedPasses.end(); in addPass()
|