/external/deqp-deps/SPIRV-Tools/source/reduce/ |
D | reducer.cpp | 26 struct Reducer::Impl { struct in spvtools::reduce::Reducer 27 explicit Impl(spv_target_env env) : target_env(env) {} in Impl() argument 32 const spv_target_env target_env; // Target environment. 33 MessageConsumer consumer; // Message consumer. 34 InterestingnessFunction interestingness_function; 35 std::vector<std::unique_ptr<ReductionPass>> passes;
|
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
D | reducer.cpp | 26 struct Reducer::Impl { struct in spvtools::reduce::Reducer 27 explicit Impl(spv_target_env env) : target_env(env) {} in Impl() argument 32 const spv_target_env target_env; // Target environment. 33 MessageConsumer consumer; // Message consumer. 34 InterestingnessFunction interestingness_function; 35 std::vector<std::unique_ptr<ReductionPass>> passes;
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | PassRegistry.cpp | 76 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(pImpl); in ~PassRegistry() local 88 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in getPassInfo() local 95 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in getPassInfo() local 107 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in registerPass() local 124 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in unregisterPass() local 136 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in enumerateWith() local 169 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in registerAnalysisGroup() local 184 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in registerAnalysisGroup() local 190 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in addRegistrationListener() local 203 PassRegistryImpl *Impl = static_cast<PassRegistryImpl*>(getImpl()); in removeRegistrationListener() local
|
/external/skqp/src/pdf/ |
D | SkDeflate.cpp | 59 struct SkDeflateWStream::Impl { struct in SkDeflateWStream 69 : fImpl(skstd::make_unique<SkDeflateWStream::Impl>()) { in SkDeflateWStream()
|
/external/skia/src/pdf/ |
D | SkDeflate.cpp | 59 struct SkDeflateWStream::Impl { struct in SkDeflateWStream 69 : fImpl(skstd::make_unique<SkDeflateWStream::Impl>()) { in SkDeflateWStream()
|
/external/tensorflow/tensorflow/cc/framework/ |
D | scope.cc | 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 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 143 Scope::Impl::Impl(const Scope& other, Tags::Device, const string& device) in Impl() function in tensorflow::Scope::Impl 160 Scope::Impl::Impl(const Scope& other, Tags::SingleUseScope, in Impl() function in tensorflow::Scope::Impl 178 Scope::Impl::Impl(const Scope& other, Tags::ExitOnError) in Impl() function in tensorflow::Scope::Impl 195 Scope::Impl::Impl(const Scope& other, Tags::KernelLabel, in Impl() function in tensorflow::Scope::Impl 213 Scope::Impl::Impl(const Scope& other, Tags::Colocate, in Impl() function in tensorflow::Scope::Impl [all …]
|
/external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/targets/ |
D | InterfaceOnlyDefaultMethodsTarget.java | 29 public class Impl implements InterfaceOnlyDefaultMethodsTarget { class 31 public Impl() { in Impl() method in InterfaceOnlyDefaultMethodsTarget.Impl
|
D | InterfaceDefaultMethodsTarget.java | 31 public class Impl implements InterfaceDefaultMethodsTarget { class 33 public Impl() { in Impl() method in InterfaceDefaultMethodsTarget.Impl
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | libspirv.cpp | 52 struct SpirvTools::Impl { struct in spvtools::SpirvTools 53 explicit Impl(spv_target_env env) : context(spvContextCreate(env)) { in Impl() function 58 ~Impl() { spvContextDestroy(context); } in ~Impl() 60 spv_context context; // C interface context object.
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | libspirv.cpp | 52 struct SpirvTools::Impl { struct in spvtools::SpirvTools 53 explicit Impl(spv_target_env env) : context(spvContextCreate(env)) { in Impl() function 58 ~Impl() { spvContextDestroy(context); } in ~Impl() 60 spv_context context; // C interface context object.
|
/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 36 std::unique_ptr<opt::Pass> pass; // Internal implementation pass. 56 struct Optimizer::Impl { struct in spvtools::Optimizer 57 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() argument 59 spv_target_env target_env; // Target environment. 60 opt::PassManager pass_manager; // Internal implementation pass manager.
|
/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 37 std::unique_ptr<opt::Pass> pass; // Internal implementation pass. 57 struct Optimizer::Impl { struct in spvtools::Optimizer 58 explicit Impl(spv_target_env env) : target_env(env), pass_manager() {} in Impl() argument 60 spv_target_env target_env; // Target environment. 61 opt::PassManager pass_manager; // Internal implementation pass manager.
|
/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 83 class RunHandlerPool::Impl { class in tensorflow::RunHandlerPool 85 explicit Impl(int num_inter_op_threads) in Impl() function in tensorflow::RunHandlerPool::Impl
|
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/ |
D | sound_system_aaudio.cpp | 422 struct SoundSystemAAudio::Impl { struct in SoundSystemAAudio 423 Impl() : lastError(AAUDIO_OK) {} in Impl() argument 427 void errorCallback(aaudio_result_t error) { in errorCallback() 433 Player player; 434 Recorder recorder; 435 std::atomic<aaudio_result_t> lastError;
|
/external/skqp/modules/skshaper/src/ |
D | SkShaper_primitive.cpp | 14 struct SkShaper::Impl { struct in SkShaper 15 sk_sp<SkTypeface> fTypeface;
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | threadpool.cc | 88 struct ThreadPool::Impl : Eigen::ThreadPoolTempl<EigenEnvironment> { struct in tensorflow::thread::ThreadPool 89 Impl(Env* env, const ThreadOptions& thread_options, const string& name, in Impl() argument 96 void ParallelFor(int64 total, int64 cost_per_unit, in ParallelFor() 106 Eigen::Allocator* allocator_;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/WindowsManifest/ |
D | WindowsManifestMerger.h | 61 std::unique_ptr<WindowsManifestMergerImpl> Impl; variable
|
/external/catch2/include/internal/ |
D | catch_matchers.cpp | 12 namespace Impl { namespace
|
/external/clang/include/clang/Index/ |
D | CodegenNameGenerator.h | 46 std::unique_ptr<Implementation> Impl; variable
|
/external/llvm/include/llvm/CodeGen/MIRParser/ |
D | MIRParser.h | 35 std::unique_ptr<MIRParserImpl> Impl; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/MIRParser/ |
D | MIRParser.h | 35 std::unique_ptr<MIRParserImpl> Impl; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/ |
D | Magic.h | 22 enum Impl { enum 56 operator Impl() const { return V; } in Impl() function
|
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/ |
D | InterfaceWithInheritedMethods.java | 31 static class Impl implements Passthrough { class
|
/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
|
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/ |
D | FuturesCombineBenchmark.java | 37 enum Impl { enum in FuturesCombineBenchmark
|