/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/ |
D | copy.pass.cpp | 24 template <class T, class ...InitArgs> 25 void test(InitArgs&&... args) in test() 27 const optional<T> rhs(std::forward<InitArgs>(args)...); in test() 35 template <class T, class ...InitArgs> 36 constexpr bool constexpr_test(InitArgs&&... args) in constexpr_test() 39 const optional<T> rhs(std::forward<InitArgs>(args)...); in constexpr_test() 67 template <class T, class ...InitArgs> 68 void test_ref(InitArgs&&... args) in test_ref() 70 const optional<T> rhs(std::forward<InitArgs>(args)...); in test_ref()
|
D | move.pass.cpp | 33 template <class T, class ...InitArgs> 34 void test(InitArgs&&... args) in test() 36 const optional<T> orig(std::forward<InitArgs>(args)...); in test() 45 template <class T, class ...InitArgs> 46 constexpr bool constexpr_test(InitArgs&&... args) in constexpr_test() 49 const optional<T> orig(std::forward<InitArgs>(args)...); in constexpr_test() 79 template <class T, class ...InitArgs> 80 void test_ref(InitArgs&&... args) in test_ref() 82 optional<T> rhs(std::forward<InitArgs>(args)...); in test_ref()
|
/external/llvm-project/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/ |
D | copy.pass.cpp | 23 template <class T, class ...InitArgs> 24 void test(InitArgs&&... args) in test() 26 const optional<T> rhs(std::forward<InitArgs>(args)...); in test() 34 template <class T, class ...InitArgs> 35 constexpr bool constexpr_test(InitArgs&&... args) in constexpr_test() 38 const optional<T> rhs(std::forward<InitArgs>(args)...); in constexpr_test() 66 template <class T, class ...InitArgs> 67 void test_ref(InitArgs&&... args) in test_ref() 69 const optional<T> rhs(std::forward<InitArgs>(args)...); in test_ref()
|
D | move.pass.cpp | 30 template <class T, class ...InitArgs> 31 void test(InitArgs&&... args) in test() 33 const optional<T> orig(std::forward<InitArgs>(args)...); in test() 42 template <class T, class ...InitArgs> 43 constexpr bool constexpr_test(InitArgs&&... args) in constexpr_test() 46 const optional<T> orig(std::forward<InitArgs>(args)...); in constexpr_test() 76 template <class T, class ...InitArgs> 77 void test_ref(InitArgs&&... args) in test_ref() 79 optional<T> rhs(std::forward<InitArgs>(args)...); in test_ref()
|
/external/skia/src/gpu/ |
D | GrPipeline.h | 68 struct InitArgs { struct 94 GrPipeline(const InitArgs& args, sk_sp<const GrXferProcessor>, const GrAppliedHardClip&); argument 95 GrPipeline(const InitArgs&, GrProcessorSet&&, GrAppliedClip&&);
|
D | GrPipeline.cpp | 18 GrPipeline::GrPipeline(const InitArgs& args, in GrPipeline() 43 GrPipeline::GrPipeline(const InitArgs& args, GrProcessorSet&& processors, in GrPipeline()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | ModuleUtils.cpp | 122 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, in createSanitizerCtorAndInitFunctions() argument 125 assert(InitArgs.size() == InitArgTypes.size() && in createSanitizerCtorAndInitFunctions() 134 IRB.CreateCall(InitFunction, InitArgs); in createSanitizerCtorAndInitFunctions() 147 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, in getOrCreateSanitizerCtorAndInitFunctions() argument 162 M, CtorName, InitName, InitArgTypes, InitArgs, VersionCheckName); in getOrCreateSanitizerCtorAndInitFunctions()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | ModuleUtils.cpp | 133 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, in createSanitizerCtorAndInitFunctions() argument 136 assert(InitArgs.size() == InitArgTypes.size() && in createSanitizerCtorAndInitFunctions() 142 IRB.CreateCall(InitFunction, InitArgs); in createSanitizerCtorAndInitFunctions() 155 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, in getOrCreateSanitizerCtorAndInitFunctions() argument 170 M, CtorName, InitName, InitArgTypes, InitArgs, VersionCheckName); in getOrCreateSanitizerCtorAndInitFunctions()
|
/external/llvm-project/llvm/include/llvm/Transforms/Utils/ |
D | ModuleUtils.h | 55 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, 67 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
D | ModuleUtils.h | 53 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, 65 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs,
|
/external/skqp/src/gpu/ops/ |
D | GrSimpleMeshDrawOpHelper.cpp | 125 GrPipeline::InitArgs GrSimpleMeshDrawOpHelper::pipelineInitArgs( in pipelineInitArgs() 127 GrPipeline::InitArgs args; in pipelineInitArgs() 136 const GrPipeline::InitArgs& args, in internalMakePipeline()
|
D | GrDrawPathOp.cpp | 33 GrPipeline::InitArgs GrDrawPathOpBase::pipelineInitArgs(const GrOpFlushState& state) { in pipelineInitArgs() 43 GrPipeline::InitArgs args; in pipelineInitArgs()
|
D | GrSimpleMeshDrawOpHelper.h | 130 GrPipeline::InitArgs pipelineInitArgs(GrMeshDrawOp::Target* target) const; 133 const GrPipeline::InitArgs&,
|
D | GrDrawPathOp.h | 46 inline GrPipeline::InitArgs pipelineInitArgs(const GrOpFlushState&);
|
D | GrMeshDrawOp.cpp | 102 GrPipeline::InitArgs pipelineArgs; in makePipeline()
|
/external/skqp/src/gpu/ |
D | GrPipeline.h | 55 struct InitArgs { struct 98 GrPipeline(const InitArgs&, GrProcessorSet&&, GrAppliedClip&&);
|
D | GrPipeline.cpp | 19 GrPipeline::GrPipeline(const InitArgs& args, in GrPipeline()
|
/external/llvm/lib/Transforms/Utils/ |
D | ModuleUtils.cpp | 104 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs, in createSanitizerCtorAndInitFunctions() argument 119 IRB.CreateCall(InitFunction, InitArgs); in createSanitizerCtorAndInitFunctions()
|
/external/vulkan-validation-layers/tests/ |
D | vktestframeworkandroid.h | 42 static void InitArgs(int *argc, char *argv[]);
|
D | vktestframework.h | 64 static void InitArgs(int *argc, char *argv[]);
|
D | vktestframeworkandroid.cpp | 48 void VkTestFramework::InitArgs(int *argc, char *argv[]) {} in InitArgs() function in VkTestFramework
|
/external/llvm/include/llvm/Transforms/Utils/ |
D | ModuleUtils.h | 55 ArrayRef<Type *> InitArgTypes, ArrayRef<Value *> InitArgs,
|
/external/skia/src/gpu/tessellate/ |
D | GrStencilPathShader.h | 30 GrPipeline::InitArgs pipelineArgs; in MakeStencilPassPipeline()
|
D | GrDrawAtlasPathOp.cpp | 167 GrPipeline::InitArgs initArgs; in onExecute()
|
/external/skia/src/gpu/ops/ |
D | GrSimpleMeshDrawOpHelper.cpp | 117 GrPipeline::InitArgs pipelineArgs; in CreatePipeline()
|