Home
last modified time | relevance | path

Searched defs:Make (Results 1 – 25 of 457) sorted by relevance

12345678910>>...19

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
DOpDescriptor.h56 MakeT Make; variable
60 SourcePred(PredT Pred, MakeT Make) : Pred(Pred), Make(Make) {} in SourcePred()
109 auto Make = None; in anyType() local
117 auto Make = None; in anyIntType() local
125 auto Make = None; in anyFloatType() local
189 auto Make = None; in anyVectorType() local
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/FuzzMutate/
DOpDescriptor.h55 MakeT Make; variable
59 SourcePred(PredT Pred, MakeT Make) : Pred(Pred), Make(Make) {} in SourcePred()
108 auto Make = std::nullopt; in anyType() local
116 auto Make = std::nullopt; in anyIntType() local
124 auto Make = std::nullopt; in anyFloatType() local
189 auto Make = std::nullopt; in anyVectorType() local
/external/skia/modules/svg/include/
DSkSVGText.h71 static sk_sp<SkSVGText> Make() { return sk_sp<SkSVGText>(new SkSVGText()); } in Make() function
86 static sk_sp<SkSVGTSpan> Make() { return sk_sp<SkSVGTSpan>(new SkSVGTSpan()); } in Make() function
96 static sk_sp<SkSVGTextLiteral> Make() { in Make() function
114 static sk_sp<SkSVGTextPath> Make() { return sk_sp<SkSVGTextPath>(new SkSVGTextPath()); } in Make() function
DSkSVGFeLightSource.h35 static sk_sp<SkSVGFeDistantLight> Make() { in Make() function
54 static sk_sp<SkSVGFePointLight> Make() { in Make() function
72 static sk_sp<SkSVGFeSpotLight> Make() { in Make() function
DSkSVGFeMerge.h29 static sk_sp<SkSVGFeMergeNode> Make() { in Make() function
49 static sk_sp<SkSVGFeMerge> Make() { return sk_sp<SkSVGFeMerge>(new SkSVGFeMerge()); } in Make() function
DSkSVGFeLighting.h75 static sk_sp<SkSVGFeSpecularLighting> Make() { in Make() function
105 static sk_sp<SkSVGFeDiffuseLighting> Make() { in Make() function
/external/skia/modules/sksg/src/
DSkSGRenderEffect.cpp24 sk_sp<MaskShaderEffect> MaskShaderEffect::Make(sk_sp<RenderNode> child, sk_sp<SkShader> sh) { in Make() function in sksg::MaskShaderEffect
41 sk_sp<ShaderEffect> ShaderEffect::Make(sk_sp<RenderNode> child, sk_sp<Shader> shader) { in Make() function in sksg::ShaderEffect
97 sk_sp<RenderNode> ImageFilterEffect::Make(sk_sp<RenderNode> child, sk_sp<ImageFilter> filter) { in Make() function in sksg::ImageFilterEffect
165 sk_sp<DropShadowImageFilter> DropShadowImageFilter::Make() { in Make() function in sksg::DropShadowImageFilter
184 sk_sp<BlurImageFilter> BlurImageFilter::Make() { in Make() function in sksg::BlurImageFilter
199 sk_sp<BlenderEffect> BlenderEffect::Make(sk_sp<RenderNode> child, sk_sp<SkBlender> blender) { in Make() function in sksg::BlenderEffect
221 sk_sp<LayerEffect> LayerEffect::Make(sk_sp<RenderNode> child, SkBlendMode mode) { in Make() function in sksg::LayerEffect
DSkSGColorFilter.cpp51 sk_sp<ExternalColorFilter> ExternalColorFilter::Make(sk_sp<RenderNode> child) { in Make() function in sksg::ExternalColorFilter
73 sk_sp<ModeColorFilter> ModeColorFilter::Make(sk_sp<RenderNode> child, sk_sp<Color> color, in Make() function in sksg::ModeColorFilter
96 sk_sp<GradientColorFilter> GradientColorFilter::Make(sk_sp<RenderNode> child, in Make() function in sksg::GradientColorFilter
101 sk_sp<GradientColorFilter> GradientColorFilter::Make(sk_sp<RenderNode> child, in Make() function in sksg::GradientColorFilter
DSkSGPaint.cpp44 sk_sp<Color> Color::Make(SkColor c) { in Make() function in sksg::Color
60 sk_sp<ShaderPaint> ShaderPaint::Make(sk_sp<Shader> sh) { in Make() function in sksg::ShaderPaint
/external/skia/modules/sksg/include/
DSkSGGeometryEffect.h60 static sk_sp<TrimEffect> Make(sk_sp<GeometryNode> child) { in Make() function
85 static sk_sp<GeometryTransform> Make(sk_sp<GeometryNode> child, sk_sp<Transform> transform) { in Make() function
115 static sk_sp<DashEffect> Make(sk_sp<GeometryNode> child) { in Make() function
138 static sk_sp<RoundEffect> Make(sk_sp<GeometryNode> child) { in Make() function
159 static sk_sp<OffsetEffect> Make(sk_sp<GeometryNode> child) { in Make() function
DSkSGRect.h36 static sk_sp<Rect> Make() { return sk_sp<Rect>(new Rect(SkRect::MakeEmpty())); } in Make() function
37 static sk_sp<Rect> Make(const SkRect& r) { return sk_sp<Rect>(new Rect(r)); } in Make() function
82 static sk_sp<RRect> Make() { return sk_sp<RRect>(new RRect(SkRRect())); } in Make() function
83 static sk_sp<RRect> Make(const SkRRect& rr) { return sk_sp<RRect>(new RRect(rr)); } in Make() function
DSkSGTransform.h70 static sk_sp<Matrix> Make(const T& m) { return sk_sp<Matrix>(new Matrix(m)); } in Make() function
97 static sk_sp<TransformEffect> Make(sk_sp<RenderNode> child, sk_sp<Transform> transform) { in Make() function
103 static sk_sp<TransformEffect> Make(sk_sp<RenderNode> child, const SkMatrix& m) { in Make() function
DSkSGGroup.h31 static sk_sp<Group> Make() { in Make() function
35 static sk_sp<Group> Make(std::vector<sk_sp<RenderNode>> children) { in Make() function
DSkSGPath.h31 static sk_sp<Path> Make() { return sk_sp<Path>(new Path(SkPath())); } in Make() function
32 static sk_sp<Path> Make(const SkPath& r) { return sk_sp<Path>(new Path(r)); } in Make() function
DSkSGGradient.h60 static sk_sp<LinearGradient> Make() { in Make() function
82 static sk_sp<RadialGradient> Make() { in Make() function
/external/skia/src/gpu/
DRefCntedCallback.h113 static sk_sp<RefCntedCallback> Make(Callback proc, Context ctx) { return MakeImpl(proc, ctx); } in Make() function
115 static sk_sp<RefCntedCallback> Make(CallbackWithStats proc, Context ctx) { in Make() function
119 static sk_sp<RefCntedCallback> Make(ResultCallback proc, Context ctx) { in Make() function
123 static sk_sp<RefCntedCallback> Make(ResultCallbackWithStats proc, Context ctx) { in Make() function
127 static sk_sp<RefCntedCallback> Make(AutoCallback&& callback) { in Make() function
/external/skia/src/gpu/ganesh/
DGrColorSpaceXform.cpp25 sk_sp<GrColorSpaceXform> GrColorSpaceXform::Make(SkColorSpace* src, SkAlphaType srcAT, in Make() function in GrColorSpaceXform
32 sk_sp<GrColorSpaceXform> GrColorSpaceXform::Make(const GrColorInfo& srcInfo, in Make() function in GrColorSpaceXform
159 std::unique_ptr<GrFragmentProcessor> GrColorSpaceXformEffect::Make( in Make() function in GrColorSpaceXformEffect
166 std::unique_ptr<GrFragmentProcessor> GrColorSpaceXformEffect::Make( in Make() function in GrColorSpaceXformEffect
173 std::unique_ptr<GrFragmentProcessor> GrColorSpaceXformEffect::Make( in Make() function in GrColorSpaceXformEffect
/external/skia/src/codec/
DSkEncodedInfo.cpp12 std::unique_ptr<SkEncodedInfo::ICCProfile> SkEncodedInfo::ICCProfile::Make(sk_sp<SkData> data) { in Make() function in SkEncodedInfo::ICCProfile
22 std::unique_ptr<SkEncodedInfo::ICCProfile> SkEncodedInfo::ICCProfile::Make( in Make() function in SkEncodedInfo::ICCProfile
/external/skia/src/gpu/ganesh/effects/
DGrDistanceFieldGeoProc.h78 static GrGeometryProcessor* Make(SkArenaAlloc* arena, in Make() function
92 static GrGeometryProcessor* Make(SkArenaAlloc* arena, in Make() function
158 static GrGeometryProcessor* Make(SkArenaAlloc* arena, const GrShaderCaps& caps, in Make() function
215 static DistanceAdjust Make(SkScalar r, SkScalar g, SkScalar b) { in Make() function
228 static GrGeometryProcessor* Make(SkArenaAlloc* arena, in Make() function
/external/cronet/stable/net/log/
Dnet_log_with_source.cc153 NetLogWithSource NetLogWithSource::Make(NetLog* net_log, in Make() function in net::NetLogWithSource
163 NetLogWithSource NetLogWithSource::Make(NetLogSourceType source_type) { in Make() function in net::NetLogWithSource
168 NetLogWithSource NetLogWithSource::Make(NetLog* net_log, in Make() function in net::NetLogWithSource
176 NetLogWithSource NetLogWithSource::Make(const NetLogSource& source) { in Make() function in net::NetLogWithSource
/external/cronet/tot/net/log/
Dnet_log_with_source.cc153 NetLogWithSource NetLogWithSource::Make(NetLog* net_log, in Make() function in net::NetLogWithSource
163 NetLogWithSource NetLogWithSource::Make(NetLogSourceType source_type) { in Make() function in net::NetLogWithSource
168 NetLogWithSource NetLogWithSource::Make(NetLog* net_log, in Make() function in net::NetLogWithSource
176 NetLogWithSource NetLogWithSource::Make(const NetLogSource& source) { in Make() function in net::NetLogWithSource
/external/skia/include/core/
DSkSize.h20 static constexpr SkISize Make(int32_t w, int32_t h) { return {w, h}; } in Make() function
56 static constexpr SkSize Make(SkScalar w, SkScalar h) { return {w, h}; } in Make() function
58 static constexpr SkSize Make(const SkISize& src) { in Make() function
DSkArc.h38 static SkArc Make(const SkRect& oval, in Make() function
46 static SkArc Make(const SkRect& oval, in Make() function
/external/skia/modules/skresources/src/
DSkResources.cpp35 static sk_sp<VideoAsset> Make(sk_sp<SkData> data) { in Make() function in skresources::__anon0fb7992f0111::VideoAsset
110 sk_sp<MultiFrameImageAsset> MultiFrameImageAsset::Make(sk_sp<SkData> data, ImageDecodeStrategy stra… in Make() function in skresources::MultiFrameImageAsset
119 sk_sp<MultiFrameImageAsset> MultiFrameImageAsset::Make(std::unique_ptr<SkCodec> codec, ImageDecodeS… in Make() function in skresources::MultiFrameImageAsset
185 sk_sp<FileResourceProvider> FileResourceProvider::Make(SkString base_dir, ImageDecodeStrategy strat… in Make() function in skresources::FileResourceProvider
272 sk_sp<DataURIResourceProviderProxy> DataURIResourceProviderProxy::Make(sk_sp<ResourceProvider> rp, in Make() function in skresources::DataURIResourceProviderProxy
/external/skia/modules/bentleyottmann/src/
DInt96.cpp11 Int96 Int96::Make(int32_t a) { in Make() function in bentleyottmann::Int96
15 Int96 Int96::Make(int64_t a) { in Make() function in bentleyottmann::Int96

12345678910>>...19