/third_party/skia/tests/ |
H A D | ShaderTest.cpp | 46 const SkTileMode tmy = SkTileMode::kMirror; in DEF_TEST() local 48 auto shader0 = bm.makeShader(tmx, tmy, SkSamplingOptions(), localM); in DEF_TEST() 49 auto shader1 = bm.asImage()->makeShader(tmx, tmy, SkSamplingOptions(), localM); in DEF_TEST() 51 check_isaimage(reporter, shader0.get(), W, H, tmx, tmy, localM); in DEF_TEST() 52 check_isaimage(reporter, shader1.get(), W, H, tmx, tmy, localM); in DEF_TEST()
|
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/ |
H A D | Image.java | 52 public Shader makeShader(TileMode tmx, TileMode tmy, SamplingOptions sampling) { in makeShader() argument 53 return makeShader(tmx, tmy, sampling, null); in makeShader() 56 public Shader makeShader(TileMode tmx, TileMode tmy, SamplingOptions sampling, in makeShader() argument 59 return new Shader(nMakeShader(mNativeInstance, tmx.nativeInt, tmy.nativeInt, in makeShader() 92 private static native long nMakeShader(long nativeInstance, int tmx, int tmy, int samplingDesc, in nMakeShader() argument
|
/third_party/skia/modules/androidkit/src/ |
H A D | Image.cpp | 47 tmy = androidkit::utils::TileMode(jtmy); in Image_MakeShader() local 53 ? image->makeShader(tmx, tmy, sampling, lm->asM33()) in Image_MakeShader() 54 : image->makeShader(tmx, tmy, sampling); in Image_MakeShader()
|
/third_party/skia/src/shaders/ |
H A D | SkPictureShader.cpp | 38 sk_sp<SkShader> SkPicture::makeShader(SkTileMode tmx, SkTileMode tmy, SkFilterMode filter, in makeShader() argument 43 return SkPictureShader::Make(sk_ref_sp(this), tmx, tmy, filter, localMatrix, tile); in makeShader() 109 SkPictureShader::SkPictureShader(sk_sp<SkPicture> picture, SkTileMode tmx, SkTileMode tmy, in SkPictureShader() argument 115 , fTmy(tmy) in SkPictureShader() 118 sk_sp<SkShader> SkPictureShader::Make(sk_sp<SkPicture> picture, SkTileMode tmx, SkTileMode tmy, in Make() argument 123 return sk_sp<SkShader>(new SkPictureShader(std::move(picture), tmx, tmy, filter, lm, tile)); in Make() 130 auto tmy = buffer.read32LE(SkTileMode::kLastTileMode); in CreateProc() local 153 return SkPictureShader::Make(picture, tmx, tmy, filter, &lm, &tile); in CreateProc()
|
H A D | SkImageShader.h | 19 SkTileMode tmy, 37 SkTileMode tmy,
|
H A D | SkBitmapProcShader.cpp | 79 const SkShaderBase& shader, SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& sampling, in MakeContext() 88 SkBitmapProcState* state = alloc->make<SkBitmapProcState>(image, tmx, tmy); in MakeContext() 78 MakeContext( const SkShaderBase& shader, SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& sampling, const SkImage_Base* image, const ContextRec& rec, SkArenaAlloc* alloc) MakeContext() argument
|
H A D | SkBitmapProcShader.h | 19 static Context* MakeContext(const SkShaderBase&, SkTileMode tmx, SkTileMode tmy,
|
H A D | SkImageShader.cpp | 70 SkTileMode tmx, SkTileMode tmy, in SkImageShader() 78 , fTileModeY(optimize(tmy, fImage->height())) in SkImageShader() 103 auto tmy = buffer.read32LE<SkTileMode>(SkTileMode::kLastTileMode); in CreateProc() local 124 return SkImageShader::Make(std::move(img), tmx, tmy, sampling, &localMatrix); in CreateProc() 250 SkTileMode tmx, SkTileMode tmy, in Make() 266 new SkImageShader(image, tmx, tmy, options, localMatrix, clampAsIfUnpremul) in Make() 312 SkTileMode tmx, SkTileMode tmy, in SkMakeBitmapShaderForPaint() 316 tmx, tmy, sampling, localMatrix); in SkMakeBitmapShaderForPaint() 69 SkImageShader(sk_sp<SkImage> img, SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& sampling, const SkMatrix* localMatrix, bool clampAsIfUnpremul) SkImageShader() argument 249 Make(sk_sp<SkImage> image, SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& options, const SkMatrix* localMatrix, bool clampAsIfUnpremul) Make() argument 311 SkMakeBitmapShaderForPaint(const SkPaint& paint, const SkBitmap& src, SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& sampling, const SkMatrix* localMatrix, SkCopyPixelsMode mode) SkMakeBitmapShaderForPaint() argument
|
H A D | SkShader.cpp | 154 sk_sp<SkShader> SkBitmap::makeShader(SkTileMode tmx, SkTileMode tmy, in makeShader() argument 161 tmx, tmy, sampling, lm); in makeShader()
|
/third_party/skia/include/core/ |
H A D | SkPicture.h | 220 * @param tmy The tiling mode to use when sampling in the y-direction. 230 sk_sp<SkShader> makeShader(SkTileMode tmx, SkTileMode tmy, SkFilterMode mode, 233 sk_sp<SkShader> makeShader(SkTileMode tmx, SkTileMode tmy, SkFilterMode mode) const { in makeShader() argument 234 return this->makeShader(tmx, tmy, mode, nullptr, nullptr); in makeShader()
|
H A D | SkBitmap.h | 1119 sk_sp<SkShader> makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions&, 1122 sk_sp<SkShader> makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& sampling, in makeShader() argument 1124 return this->makeShader(tmx, tmy, sampling, &localMatrix); in makeShader()
|
H A D | SkImage.h | 672 sk_sp<SkShader> makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions&, 675 sk_sp<SkShader> makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions& sampling, in makeShader() argument 677 return this->makeShader(tmx, tmy, sampling, &lm); in makeShader()
|
/third_party/skia/gm/ |
H A D | pictureshader.cpp | 29 SkTileMode tmy; member 172 kTileConfigs[tileMode].tmy, in drawScene() 184 kTileConfigs[tileMode].tmy, in drawScene()
|
H A D | tilemodes_scaled.cpp | 53 SkTileMode tmx, SkTileMode tmy) { in setup() 54 paint->setShader(bm.makeShader(tmx, tmy, sampling)); in setup() 52 setup(SkPaint* paint, const SkBitmap& bm, const SkSamplingOptions& sampling, SkTileMode tmx, SkTileMode tmy) setup() argument
|
H A D | tilemodes.cpp | 50 SkTileMode tmx, SkTileMode tmy) { in setup() 51 paint->setShader(bm.makeShader(tmx, tmy, SkSamplingOptions(fm))); in setup() 49 setup(SkPaint* paint, const SkBitmap& bm, SkFilterMode fm, SkTileMode tmx, SkTileMode tmy) setup() argument
|
/third_party/icu/icu4c/source/tools/tzcode/ |
H A D | zdump.c | 776 register int tmy; in delta() local 781 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy) in delta() 782 result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE); in delta()
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
H A D | zdump.c | 782 register int tmy; in delta() local 787 for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy) in delta() 788 result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE); in delta()
|
/third_party/skia/src/core/ |
H A D | SkBitmapProcState.h | 30 SkBitmapProcState(const SkImage_Base* image, SkTileMode tmx, SkTileMode tmy);
|
H A D | SkBitmapProcState.cpp | 141 SkBitmapProcState::SkBitmapProcState(const SkImage_Base* image, SkTileMode tmx, SkTileMode tmy) 144 , fTileModeY(tmy)
|
/third_party/tzdata/ |
H A D | zdump.c | 780 int tmy = oldp->tm_year + cycles * YEARSPERREPEAT; in delta_nonneg() local 781 for ( ; tmy < newp->tm_year; ++tmy) in delta_nonneg() 782 result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE); in delta_nonneg()
|
/third_party/skia/src/image/ |
H A D | SkImage.cpp | 144 sk_sp<SkShader> SkImage::makeShader(SkTileMode tmx, SkTileMode tmy, in makeShader() argument 147 return SkImageShader::Make(sk_ref_sp(const_cast<SkImage*>(this)), tmx, tmy, in makeShader()
|
/third_party/skia/src/xps/ |
H A D | SkXPSDevice.cpp | 624 static XPS_TILE_MODE SkToXpsTileMode(SkTileMode tmx, SkTileMode tmy) { in SkToXpsTileMode() argument 625 return gSkToXpsTileMode[(unsigned)tmx][(unsigned)tmy]; in SkToXpsTileMode()
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | macro-assembler-s390.h | 1032 tmy(value, Operand(1)); in TestIfSmi()
|
H A D | constants-s390.h | 935 V(tmy, TMY, 0xEB51) /* type = SIY TEST UNDER MASK */ \
|