HomeSort by relevance Sort by last modified time
    Searched refs:Make (Results 1 - 25 of 2839) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/runtime/
Makefile 5 include ../Make.dist
  /prebuilts/go/linux-x86/src/runtime/
Makefile 5 include ../Make.dist
  /external/ImageMagick/coders/
Make.com 2 $! Make ImageMagick image coders for VMS.
24 $call Make aai.c
25 $call Make art.c
26 $call Make avs.c
27 $call Make bgr.c
28 $call Make bmp.c
29 $call Make braille.c
30 $call Make cals.c
31 $call Make caption.c
32 $call Make cip.
    [all...]
  /external/skia/include/svg/
SkSVGCanvas.h 29 static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkWStream*);
32 static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkXMLWriter*);
  /external/skqp/include/svg/
SkSVGCanvas.h 29 static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkWStream*);
32 static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkXMLWriter*);
  /external/skia/src/gpu/
GrGpuFactory.cpp 16 sk_sp<GrGpu> GrGpu::Make(GrBackend backend,
22 return GrGLGpu::Make(backendContext, options, context);
25 return GrVkGpu::Make(backendContext, options, context);
28 return GrMockGpu::Make(backendContext, options, context);
  /external/skia/tests/
ToSRGBColorFilter.cpp 16 REPORTER_ASSERT(r, nullptr == SkToSRGBColorFilter::Make(SkColorSpace::MakeSRGB()));
19 REPORTER_ASSERT(r, nullptr != SkToSRGBColorFilter::Make(SkColorSpace::MakeSRGBLinear()));
22 REPORTER_ASSERT(r, nullptr == SkToSRGBColorFilter::Make(nullptr));
27 REPORTER_ASSERT(r, nullptr != SkToSRGBColorFilter::Make(dci_p3));
InsetConvexPolyTest.cpp 38 *rrectPoly.push() = SkPoint::Make(-100, 55);
39 *rrectPoly.push() = SkPoint::Make(100, 55);
40 *rrectPoly.push() = SkPoint::Make(100 + 2.5f, 50 + 4.330127f);
41 *rrectPoly.push() = SkPoint::Make(100 + 3.535534f, 50 + 3.535534f);
42 *rrectPoly.push() = SkPoint::Make(100 + 4.330127f, 50 + 2.5f);
43 *rrectPoly.push() = SkPoint::Make(105, 50);
44 *rrectPoly.push() = SkPoint::Make(105, -50);
45 *rrectPoly.push() = SkPoint::Make(100 + 4.330127f, -50 - 2.5f);
46 *rrectPoly.push() = SkPoint::Make(100 + 3.535534f, -50 - 3.535534f);
47 *rrectPoly.push() = SkPoint::Make(100 + 2.5f, -50 - 4.330127f)
    [all...]
  /external/skqp/src/gpu/
GrGpuFactory.cpp 16 sk_sp<GrGpu> GrGpu::Make(GrBackend backend,
22 return GrGLGpu::Make(backendContext, options, context);
25 return GrVkGpu::Make(backendContext, options, context);
28 return GrMockGpu::Make(backendContext, options, context);
  /external/skqp/tests/
ToSRGBColorFilter.cpp 16 REPORTER_ASSERT(r, nullptr == SkToSRGBColorFilter::Make(SkColorSpace::MakeSRGB()));
19 REPORTER_ASSERT(r, nullptr != SkToSRGBColorFilter::Make(SkColorSpace::MakeSRGBLinear()));
22 REPORTER_ASSERT(r, nullptr == SkToSRGBColorFilter::Make(nullptr));
27 REPORTER_ASSERT(r, nullptr != SkToSRGBColorFilter::Make(dci_p3));
InsetConvexPolyTest.cpp 38 *rrectPoly.push() = SkPoint::Make(-100, 55);
39 *rrectPoly.push() = SkPoint::Make(100, 55);
40 *rrectPoly.push() = SkPoint::Make(100 + 2.5f, 50 + 4.330127f);
41 *rrectPoly.push() = SkPoint::Make(100 + 3.535534f, 50 + 3.535534f);
42 *rrectPoly.push() = SkPoint::Make(100 + 4.330127f, 50 + 2.5f);
43 *rrectPoly.push() = SkPoint::Make(105, 50);
44 *rrectPoly.push() = SkPoint::Make(105, -50);
45 *rrectPoly.push() = SkPoint::Make(100 + 4.330127f, -50 - 2.5f);
46 *rrectPoly.push() = SkPoint::Make(100 + 3.535534f, -50 - 3.535534f);
47 *rrectPoly.push() = SkPoint::Make(100 + 2.5f, -50 - 4.330127f)
    [all...]
  /external/skia/src/gpu/effects/
GrOvalEffect.cpp 14 std::unique_ptr<GrFragmentProcessor> GrOvalEffect::Make(GrClipEdgeType edgeType, const SkRect& oval,
23 return GrCircleEffect::Make(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + w),
28 return GrEllipseEffect::Make(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + h),
29 SkPoint::Make(w, h), caps);
GrOvalEffect.h 24 std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType, const SkRect&, const GrShaderCaps&);
GrRRectEffect.h 26 std::unique_ptr<GrFragmentProcessor> Make(GrClipEdgeType, const SkRRect&, const GrShaderCaps&);
  /external/skqp/src/gpu/effects/
GrOvalEffect.cpp 14 std::unique_ptr<GrFragmentProcessor> GrOvalEffect::Make(GrClipEdgeType edgeType, const SkRect& oval,
23 return GrCircleEffect::Make(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + w),
28 return GrEllipseEffect::Make(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + h),
29 SkPoint::Make(w, h), caps);
  /external/skia/include/effects/
SkXfermodeImageFilter.h 21 static sk_sp<SkImageFilter> Make(SkBlendMode, sk_sp<SkImageFilter> background,
24 static sk_sp<SkImageFilter> Make(SkBlendMode mode, sk_sp<SkImageFilter> background) {
25 return Make(mode, std::move(background), nullptr, nullptr);
SkDashPathEffect.h 35 static sk_sp<SkPathEffect> Make(const SkScalar intervals[], int count, SkScalar phase);
SkShaderMaskFilter.h 17 static sk_sp<SkMaskFilter> Make(sk_sp<SkShader> shader);
  /external/skia/src/svg/
SkSVGCanvas.cpp 13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) {
21 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkWStream* writer) {
23 return Make(bounds, &xmlWriter);
  /external/skqp/include/effects/
SkXfermodeImageFilter.h 21 static sk_sp<SkImageFilter> Make(SkBlendMode, sk_sp<SkImageFilter> background,
24 static sk_sp<SkImageFilter> Make(SkBlendMode mode, sk_sp<SkImageFilter> background) {
25 return Make(mode, std::move(background), nullptr, nullptr);
SkDashPathEffect.h 35 static sk_sp<SkPathEffect> Make(const SkScalar intervals[], int count, SkScalar phase);
SkShaderMaskFilter.h 17 static sk_sp<SkMaskFilter> Make(sk_sp<SkShader> shader);
  /external/skqp/src/svg/
SkSVGCanvas.cpp 13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) {
21 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkWStream* writer) {
23 return Make(bounds, &xmlWriter);
  /external/skia/include/utils/
SkFrontBufferedStream.h 36 static std::unique_ptr<SkStreamRewindable> Make(std::unique_ptr<SkStream> stream,
  /external/skia/src/shaders/gradients/
SkTwoPointConicalGradient_gpu.h 21 std::unique_ptr<GrFragmentProcessor> Make(const GrGradientEffect::CreateArgs& args);

Completed in 613 milliseconds

1 2 3 4 5 6 7 8 91011>>