/external/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 85 template <typename T> TargetTransformInfo(T Impl); 1185 T Impl; variable 1188 Model(T Impl) : Impl(std::move(Impl)) {} in Model() argument 1192 return Impl.getDataLayout(); in getDataLayout() 1196 return Impl.getOperationCost(Opcode, Ty, OpTy); in getOperationCost() 1200 return Impl.getGEPCost(PointeeType, Ptr, Operands); in getGEPCost() 1203 return Impl.getExtCost(I, Src); in getExtCost() 1206 return Impl.getCallCost(FTy, NumArgs); in getCallCost() 1209 return Impl.getCallCost(F, NumArgs); in getCallCost() 1213 return Impl.getCallCost(F, Arguments); in getCallCost() [all …]
|
D | TargetLibraryInfo.h | 210 const TargetLibraryInfoImpl *Impl; variable 213 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {} in TargetLibraryInfo() argument 216 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo() 217 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo() 219 Impl = TLI.Impl; 223 Impl = TLI.Impl; 232 return Impl->getLibFunc(funcName, F); in getLibFunc() 236 return Impl->getLibFunc(FDecl, F); in getLibFunc() 248 return Impl->getState(F) != TargetLibraryInfoImpl::Unavailable; in has() 251 return Impl->isFunctionVectorizable(F, VF); in isFunctionVectorizable() [all …]
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | EABContactManager.java | 59 public final static String COLUMN_ID = Contacts.Impl._ID; 66 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP; 73 Contacts.Impl._ID, 74 Contacts.Impl.CONTACT_NUMBER, 75 Contacts.Impl.CONTACT_NAME, 76 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP, 77 Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS, 78 Contacts.Impl.VOLTE_CALL_CAPABILITY, 79 Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP, 80 Contacts.Impl.VOLTE_CALL_AVAILABILITY, [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | TargetTransformInfo.h | 68 template <typename T> TargetTransformInfo(T Impl); 744 T Impl; variable 747 Model(T Impl) : Impl(std::move(Impl)) {} in Model() argument 751 return Impl.getDataLayout(); in getDataLayout() 755 return Impl.getOperationCost(Opcode, Ty, OpTy); in getOperationCost() 759 return Impl.getGEPCost(PointeeType, Ptr, Operands); in getGEPCost() 762 return Impl.getCallCost(FTy, NumArgs); in getCallCost() 765 return Impl.getCallCost(F, NumArgs); in getCallCost() 769 return Impl.getCallCost(F, Arguments); in getCallCost() 772 return Impl.getInliningThresholdMultiplier(); in getInliningThresholdMultiplier() [all …]
|
D | TargetLibraryInfo.h | 196 const TargetLibraryInfoImpl *Impl; variable 199 explicit TargetLibraryInfo(const TargetLibraryInfoImpl &Impl) : Impl(&Impl) {} in TargetLibraryInfo() argument 202 TargetLibraryInfo(const TargetLibraryInfo &TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo() 203 TargetLibraryInfo(TargetLibraryInfo &&TLI) : Impl(TLI.Impl) {} in TargetLibraryInfo() 205 Impl = TLI.Impl; 209 Impl = TLI.Impl; 218 return Impl->getLibFunc(funcName, F); in getLibFunc() 222 return Impl->getLibFunc(FDecl, F); in getLibFunc() 227 return Impl->getState(F) != TargetLibraryInfoImpl::Unavailable; in has() 230 return Impl->isFunctionVectorizable(F, VF); in isFunctionVectorizable() [all …]
|
/external/tensorflow/tensorflow/cc/framework/ |
D | scope.cc | 27 Scope::Scope(Impl* impl) : impl_(impl) {} in Scope() 29 Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {} in Scope() 35 impl_.reset(new Impl(*other.impl_)); in operator =() 44 Scope::Impl::Impl(Graph* graph, Status* status, NameMap* name_map, in Impl() function in tensorflow::Scope::Impl 54 Scope::Impl::Impl(const std::shared_ptr<Graph>& graph, in Impl() function in tensorflow::Scope::Impl 70 return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner, in NewRootScope() 78 return Scope(new Impl(graph, new Status, new Impl::NameMap, refiner, in DisabledShapeInferenceScope() 82 Scope::Impl::Impl(const Scope& other, Tags::ScopeName, const string& name, in Impl() function in tensorflow::Scope::Impl 101 Scope::Impl::Impl(const Scope& other, Tags::OpName, const string& name, in Impl() function in tensorflow::Scope::Impl 119 Scope::Impl::Impl(const Scope& other, Tags::ControlDeps, in Impl() function in tensorflow::Scope::Impl [all …]
|
D | scope_internal.h | 33 class Scope::Impl { 42 Impl(const std::shared_ptr<Graph>& graph, 67 Impl(Graph* graph, Status* status, NameMap* name_map, ShapeRefiner* refiner, 69 Impl(const Scope& other, Tags::ScopeName, const string& name, 71 Impl(const Scope& other, Tags::OpName, const string& name, 73 Impl(const Scope& other, Tags::ControlDeps, 75 Impl(const Scope& other, Tags::Device, const string& device); 76 Impl(const Scope& other, Tags::SingleUseScope, const string& op_name); 77 Impl(const Scope& other, Tags::ExitOnError); 78 Impl(const Scope& other, Tags::KernelLabel, const string& kernel_label); [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | optimizer.cpp | 34 struct Optimizer::PassToken::Impl { struct in spvtools::Optimizer::PassToken 35 Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {} in Impl() function 41 std::unique_ptr<Optimizer::PassToken::Impl> impl) in PassToken() 45 : impl_(MakeUnique<Optimizer::PassToken::Impl>(std::move(pass))) {} in PassToken() 57 struct Optimizer::Impl { struct in spvtools::Optimizer 58 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() argument 64 Optimizer::Optimizer(spv_target_env env) : impl_(new Impl(env)) {} in Optimizer() 526 return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::NullPass>()); in CreateNullPass() 530 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripDebugInfoPass() 535 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripReflectInfoPass() [all …]
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | optimizer.cpp | 33 struct Optimizer::PassToken::Impl { struct in spvtools::Optimizer::PassToken 34 Impl(std::unique_ptr<opt::Pass> p) : pass(std::move(p)) {} in Impl() function 40 std::unique_ptr<Optimizer::PassToken::Impl> impl) in PassToken() 44 : impl_(MakeUnique<Optimizer::PassToken::Impl>(std::move(pass))) {} in PassToken() 56 struct Optimizer::Impl { struct in spvtools::Optimizer 57 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() argument 63 Optimizer::Optimizer(spv_target_env env) : impl_(new Impl(env)) {} in Optimizer() 517 return MakeUnique<Optimizer::PassToken::Impl>(MakeUnique<opt::NullPass>()); in CreateNullPass() 521 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripDebugInfoPass() 526 return MakeUnique<Optimizer::PassToken::Impl>( in CreateStripReflectInfoPass() [all …]
|
/external/tensorflow/tensorflow/core/framework/ |
D | run_handler.cc | 29 class RunHandler::Impl { class in tensorflow::RunHandler 31 explicit Impl(RunHandlerPool::Impl* pool_impl) : pool_impl_(pool_impl) { in Impl() function in tensorflow::RunHandler::Impl 35 ~Impl() {} in ~Impl() 55 RunHandlerPool::Impl* pool_impl() { return pool_impl_; } in pool_impl() 76 RunHandlerPool::Impl* pool_impl_; // NOT OWNED. 83 class RunHandlerPool::Impl { class in tensorflow::RunHandlerPool 85 explicit Impl(int num_inter_op_threads) in Impl() function in tensorflow::RunHandlerPool::Impl 92 handlers_.emplace_back(new RunHandler::Impl(this)); in Impl() 118 ~Impl() { in ~Impl() 149 void ReleaseHandler(RunHandler::Impl* handler) LOCKS_EXCLUDED(mu_) { in ReleaseHandler() [all …]
|
D | run_handler.h | 62 class Impl; 65 std::unique_ptr<Impl> impl_; 85 class Impl; 86 friend class RunHandlerPool::Impl; 88 explicit RunHandler(Impl* impl); 90 Impl* impl_; // NOT OWNED.
|
/external/v8/src/parsing/ |
D | parser-base.h | 228 template <typename Impl> 231 template <typename Impl> 235 typedef ParserTypes<Impl> Types; 253 Impl* impl() { return static_cast<Impl*>(this); } in impl() 254 const Impl* impl() const { return static_cast<const Impl*>(this); } in impl() 350 friend class v8::internal::ExpressionClassifier<ParserTypes<Impl>>; 510 friend Impl; variable 1584 template <typename Impl> 1585 ParserBase<Impl>::FunctionState::FunctionState( in FunctionState() 1609 template <typename Impl> [all …]
|
/external/clang/include/clang/Basic/ |
D | VirtualFileSystem.h | 124 std::shared_ptr<detail::DirIterImpl> Impl; // Input iterator semantics on copy variable 128 : Impl(std::move(I)) { in directory_iterator() 129 assert(Impl.get() != nullptr && "requires non-null implementation"); in directory_iterator() 130 if (!Impl->CurrentEntry.isStatusKnown()) in directory_iterator() 131 Impl.reset(); // Normalize the end iterator to Impl == nullptr. in directory_iterator() 139 assert(Impl && "attempting to increment past end"); in increment() 140 EC = Impl->increment(); in increment() 141 if (EC || !Impl->CurrentEntry.isStatusKnown()) in increment() 142 Impl.reset(); // Normalize the end iterator to Impl == nullptr. in increment() 146 const Status &operator*() const { return Impl->CurrentEntry; } [all …]
|
/external/google-breakpad/src/testing/include/gmock/ |
D | gmock-actions.h | 351 template <typename Impl> 354 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} in PolymorphicAction() 368 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} in MonomorphicImpl() 375 Impl impl_; 380 Impl impl_; 399 template <typename Impl> 400 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { in MakePolymorphicAction() 401 return PolymorphicAction<Impl>(impl); in MakePolymorphicAction() 474 return Action<F>(new Impl<F>(value_)); 480 class Impl : public ActionInterface<F> { [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/ |
D | gmock-actions.h | 426 template <typename Impl> 429 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} 443 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} 450 Impl impl_; 455 Impl impl_; 474 template <typename Impl> 475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { 476 return PolymorphicAction<Impl>(impl); 557 return Action<F>(new Impl<R, F>(value_)); 563 class Impl : public ActionInterface<F> { [all …]
|
/external/clang/include/clang/AST/ |
D | ASTUnresolvedSet.h | 89 mutable ASTUnresolvedSet Impl; variable 95 if (Impl.Decls.isLazy()) in get() 97 return Impl; in get() 100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } in reserve() 102 assert(Impl.empty() || Impl.Decls.isLazy()); in addLazyDecl() 103 Impl.Decls.setLazy(true); in addLazyDecl() 104 Impl.addDecl(C, reinterpret_cast<NamedDecl*>(ID << 2), AS); in addLazyDecl()
|
/external/v8/include/ |
D | v8-util.h | 43 typedef std::map<K, PersistentContainerValue> Impl; typedef 44 typedef typename Impl::iterator Iterator; 46 static bool Empty(Impl* impl) { return impl->empty(); } in Empty() 47 static size_t Size(Impl* impl) { return impl->size(); } in Size() 48 static void Swap(Impl& a, Impl& b) { std::swap(a, b); } // NOLINT in Swap() 49 static Iterator Begin(Impl* impl) { return impl->begin(); } in Begin() 50 static Iterator End(Impl* impl) { return impl->end(); } in End() 53 static PersistentContainerValue Set(Impl* impl, K key, in Set() 63 static PersistentContainerValue Get(Impl* impl, K key) { in Get() 68 static PersistentContainerValue Remove(Impl* impl, K key) { in Remove() [all …]
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ExplodedGraph.h | 409 ImplTy Impl; variable 414 Impl.insert(N); in ExplodedNodeSet() 420 if (N && !static_cast<ExplodedNode*>(N)->isSink()) Impl.insert(N); in Add() 426 unsigned size() const { return Impl.size(); } in size() 427 bool empty() const { return Impl.empty(); } in empty() 428 bool erase(ExplodedNode *N) { return Impl.erase(N); } in erase() 430 void clear() { Impl.clear(); } in clear() 434 Impl = S.Impl; in insert() 436 Impl.insert(S.begin(), S.end()); in insert() 439 inline iterator begin() { return Impl.begin(); } in begin() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | status_macros.cc | 94 MakeErrorStream::Impl::Impl(const char* file, int line, in Impl() function in xla::status_macros::MakeErrorStream::Impl 107 MakeErrorStream::Impl::Impl(const Status& status, in Impl() function in xla::status_macros::MakeErrorStream::Impl 127 MakeErrorStream::Impl::~Impl() { in ~Impl() 136 Status MakeErrorStream::Impl::GetStatus() { in GetStatus() 165 void MakeErrorStream::Impl::CheckNotDone() const { in CheckNotDone()
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-actions.h | 426 template <typename Impl> 429 explicit PolymorphicAction(const Impl& impl) : impl_(impl) {} 443 explicit MonomorphicImpl(const Impl& impl) : impl_(impl) {} 450 Impl impl_; 455 Impl impl_; 474 template <typename Impl> 475 inline PolymorphicAction<Impl> MakePolymorphicAction(const Impl& impl) { 476 return PolymorphicAction<Impl>(impl); 542 return Action<F>(new Impl<R, F>(value_)); 548 class Impl : public ActionInterface<F> { [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPULibFunc.h | 359 explicit AMDGPULibFunc() : Impl(std::unique_ptr<AMDGPULibFuncImpl>()) {} in AMDGPULibFunc() 371 std::string getName() const { return Impl->getName(); } in getName() 372 unsigned getNumArgs() const { return Impl->getNumArgs(); } in getNumArgs() 373 EFuncId getId() const { return Impl->getId(); } in getId() 374 ENamePrefix getPrefix() const { return Impl->getPrefix(); } in getPrefix() 379 bool isMangled() const { return Impl->isMangled(); } in isMangled() 380 void setId(EFuncId Id) { Impl->setId(Id); } in setId() 382 return Impl->parseFuncName(MangledName); in parseFuncName() 387 std::string mangle() const { return Impl->mangle(); } in mangle() 389 void setName(StringRef N) { Impl->setName(N); } in setName() [all …]
|
/external/catch2/include/internal/ |
D | catch_objc.hpp | 109 namespace Impl { namespace 180 inline Impl::NSStringMatchers::Equals 181 Equals( NSString* substr ){ return Impl::NSStringMatchers::Equals( substr ); } in Equals() 183 inline Impl::NSStringMatchers::Contains 184 Contains( NSString* substr ){ return Impl::NSStringMatchers::Contains( substr ); } in Contains() 186 inline Impl::NSStringMatchers::StartsWith 187 StartsWith( NSString* substr ){ return Impl::NSStringMatchers::StartsWith( substr ); } in StartsWith() 189 inline Impl::NSStringMatchers::EndsWith 190 EndsWith( NSString* substr ){ return Impl::NSStringMatchers::EndsWith( substr ); } in EndsWith()
|
/external/tensorflow/tensorflow/compiler/jit/ |
D | resource_operation_safety_analysis.cc | 176 using Impl = absl::flat_hash_set<ResourceOp>; typedef in tensorflow::__anon4804d3d80111::ResourceOpSet 211 Impl::const_iterator begin() const { in begin() 215 Impl::const_iterator end() const { in end() 228 storage_ = absl::make_unique<Impl>(); in EnsureIsCopied() 236 static Impl* GetEmptyImpl() { in GetEmptyImpl() 237 static Impl* empty_impl = new Impl; in GetEmptyImpl() 241 Impl* impl_ = nullptr; 242 std::unique_ptr<Impl> storage_;
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | NativeSslSession.java | 58 return new Impl(context, ref, session.getPeerHost(), session.getPeerPort(), in newInstance() 64 return new Impl(context, ref, null, -1, null, null, null); in newInstance() 156 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData); in newInstance() 218 private static final class Impl extends NativeSslSession { class in NativeSslSession 231 private Impl(AbstractSessionContext context, NativeRef.SSL_SESSION ref, String host, in Impl() method in NativeSslSession.Impl 361 return Impl.this.getId(); in toSSLSession() 366 return Impl.this.getCipherSuite(); in toSSLSession() 371 return Impl.this.getProtocol(); in toSSLSession() 376 return Impl.this.getPeerHost(); in toSSLSession() 381 return Impl.this.getPeerPort(); in toSSLSession() [all …]
|