Searched defs:transformation (Results 1 - 25 of 33) sorted by relevance

12

/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineKeyFactory.java12 ResourceDecoder sourceDecoder, Transformation transformation, ResourceEncoder encoder,
14 return new EngineKey(id, width, height, cacheDecoder, sourceDecoder, transformation, encoder, transcoder,
11 buildKey(String id, int width, int height, ResourceDecoder cacheDecoder, ResourceDecoder sourceDecoder, Transformation transformation, ResourceEncoder encoder, ResourceTranscoder transcoder, Encoder sourceEncoder) argument
H A DDefaultResourceRunnerFactory.java36 Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation,
43 cacheDecoder, fetcher, cacheSource, sourceEncoder, decoder, transformation, encoder, transcoder,
46 return new ResourceRunner<Z, R>(key, width, height, cacheLoader, cacheDecoder, transformation,
34 build(EngineKey key, int width, int height, ResourceDecoder<InputStream, Z> cacheDecoder, DataFetcher<T> fetcher, boolean cacheSource, Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation, ResourceEncoder<Z> encoder, ResourceTranscoder<Z, R> transcoder, Priority priority, boolean isMemoryCacheable, EngineJobListener listener) argument
H A DEngineKey.java22 private final Transformation transformation; field in class:EngineKey
31 Transformation transformation, ResourceEncoder encoder, ResourceTranscoder transcoder,
38 this.transformation = transformation;
68 } else if (!transformation.getId().equals(engineKey.transformation.getId())) {
93 hashCode = 31 * hashCode + transformation.getId().hashCode();
110 .append(transformation.getId())
129 messageDigest.update(transformation.getId().getBytes(FORMAT));
30 EngineKey(String id, int width, int height, ResourceDecoder cacheDecoder, ResourceDecoder decoder, Transformation transformation, ResourceEncoder encoder, ResourceTranscoder transcoder, Encoder sourceEncoder) argument
H A DResourceRunner.java25 private final Transformation<Z> transformation; field in class:ResourceRunner
40 ResourceDecoder<InputStream, Z> cacheDecoder, Transformation<Z> transformation,
48 this.transformation = transformation;
85 Resource<Z> transformed = transformation.transform(fromCache, width, height);
39 ResourceRunner(EngineKey key, int width, int height, CacheLoader cacheLoader, ResourceDecoder<InputStream, Z> cacheDecoder, Transformation<Z> transformation, ResourceTranscoder<Z, R> transcoder, SourceResourceRunner sourceRunner, ExecutorService diskCacheService, ExecutorService resizeService, EngineJob job, Priority priority) argument
H A DResourceRunnerFactory.java20 * @param transformation
30 Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation,
28 build(EngineKey key, int width, int height, ResourceDecoder<InputStream, Z> cacheDecoder, DataFetcher<T> fetcher, boolean cacheSource, Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation, ResourceEncoder<Z> encoder, ResourceTranscoder<Z, R> transcoder, Priority priority, boolean isMemoryCacheable, EngineJobListener listener) argument
H A DSourceResourceRunner.java37 private final Transformation<Z> transformation; field in class:SourceResourceRunner
49 Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation,
61 this.transformation = transformation;
95 Resource<Z> transformed = transformation.transform(decoded, width, height);
47 SourceResourceRunner(EngineKey key, int width, int height, CacheLoader cacheLoader, ResourceDecoder<InputStream, Z> cacheDecoder, DataFetcher<T> dataFetcher, boolean cacheSource, Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation, ResourceEncoder<Z> encoder, ResourceTranscoder<Z, R> transcoder, DiskCache diskCache, Priority priority, ResourceCallback cb) argument
H A DEngine.java101 ResourceDecoder<T, Z> decoder, Transformation<Z> transformation, ResourceEncoder<Z> encoder,
106 EngineKey key = keyFactory.buildKey(id, width, height, cacheDecoder, decoder, transformation, encoder,
150 sourceEncoder, decoder, transformation, encoder, transcoder, priority, isMemoryCacheable, this);
99 load(int width, int height, ResourceDecoder<InputStream, Z> cacheDecoder, DataFetcher<T> fetcher, boolean cacheSource, Encoder<T> sourceEncoder, ResourceDecoder<T, Z> decoder, Transformation<Z> transformation, ResourceEncoder<Z> encoder, ResourceTranscoder<Z, R> transcoder, Priority priority, boolean isMemoryCacheable, ResourceCallback cb) argument
/external/chromium_org/skia/ext/
H A Dplatform_device_mac.cc87 // the current transformation matrix identity and only then load the new one.
119 const SkMatrix& transformation) {
131 bool did_invert = transformation.invert(&t);
134 // Do the transformation.
147 path.transform(transformation);
116 LoadClippingRegionToCGContext( CGContextRef context, const SkRegion& region, const SkMatrix& transformation) argument
H A Dplatform_device_win.cc16 // Enables world transformation.
21 // transformation.
207 const SkMatrix& transformation) {
213 // We don't apply transformation, because the translation is already applied
224 SkMatrix t(transformation);
205 LoadClippingRegionToDC(HDC context, const SkRegion& region, const SkMatrix& transformation) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceMarker.cpp154 AffineTransform transformation = contentTransformation; local
156 transformation.scaleNonUniform(strokeWidth, strokeWidth);
158 transformation.translate(-mappedOrigin.x(), -mappedOrigin.y());
159 return transformation;
/external/chromium_org/third_party/webrtc/base/
H A Dstringutils.cc54 CharacterTransformation transformation) {
58 c1 = transformation(*s1);
62 c2 = transformation(*s2);
53 ascii_string_compare(const wchar_t* s1, const char* s2, size_t n, CharacterTransformation transformation) argument
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifData.java45 public void setFrameTransformation(Transformation<Bitmap> transformation) { argument
46 this.frameTransformation = transformation;
H A DGifFrameManager.java39 private Transformation<Bitmap> transformation; field in class:GifFrameManager
50 public GifFrameManager(Context context, GifDecoder decoder, Transformation<Bitmap> transformation, int targetWidth, argument
52 this(context, Glide.get(context).getBitmapPool(), decoder, new Handler(Looper.getMainLooper()), transformation,
57 Transformation<Bitmap> transformation, int targetWidth, int targetHeight) {
61 this.transformation = transformation;
83 return transformation;
109 .transform(transformation)
56 GifFrameManager(Context context, BitmapPool bitmapPool, GifDecoder decoder, Handler mainHandler, Transformation<Bitmap> transformation, int targetWidth, int targetHeight) argument
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DEncryptedPrivateKeyInfoTest.java1528 public TestDataGenerator(String algName, String transformation, argument
1532 .getInstance(transformation != null ? transformation
1534 transformation != null ? transformation : algName,
/external/chromium_org/ppapi/cpp/private/
H A Dflash.cc107 const float transformation[3][3],
121 transformation,
135 transformation,
101 DrawGlyphs(const InstanceHandle& instance, ImageData* image, const BrowserFontDescription& font_desc, uint32_t color, const Point& position, const Rect& clip, const float transformation[3][3], bool allow_subpixel_aa, uint32_t glyph_count, const uint16_t glyph_indices[], const PP_Point glyph_advances[]) argument
/external/chromium_org/ppapi/proxy/
H A Dflash_resource.cc193 const float transformation[3][3],
214 params.transformation[i][j] = transformation[i][j];
186 DrawGlyphs( PP_Instance instance, PP_Resource pp_image_data, const PP_BrowserFont_Trusted_Description* font_desc, uint32_t color, const PP_Point* position, const PP_Rect* clip, const float transformation[3][3], PP_Bool allow_subpixel_aa, uint32_t glyph_count, const uint16_t glyph_indices[], const PP_Point glyph_advances[]) argument
H A Dserialized_structs.h114 float transformation[3][3]; member in struct:ppapi::proxy::PPBFlash_DrawGlyphs_Params
/external/chromium_org/ppapi/thunk/
H A Dppb_flash_thunk.cc36 const float transformation[3][3],
45 instance, pp_image_data, font_desc, color, position, clip, transformation,
30 DrawGlyphs(PP_Instance instance, PP_Resource pp_image_data, const PP_BrowserFont_Trusted_Description* font_desc, uint32_t color, const PP_Point* position, const PP_Rect* clip, const float transformation[3][3], PP_Bool allow_subpixel_aa, uint32_t glyph_count, const uint16_t glyph_indices[], const PP_Point glyph_advances[]) argument
/external/glide/library/src/main/java/com/bumptech/glide/
H A DBitmapRequestBuilder.java199 public BitmapRequestBuilder<ModelType, TranscodeType> transform(Transformation<Bitmap> transformation) { argument
200 super.transform(transformation);
H A DDrawableRequestBuilder.java102 public DrawableRequestBuilder<ModelType> transform(Transformation<GifBitmapWrapper> transformation) { argument
103 super.transform(transformation);
H A DGifRequestBuilder.java99 public GifRequestBuilder<ModelType, TranscodeType> transform(Transformation<GifData> transformation) { argument
100 super.transform(transformation);
H A DGenericRequestBuilder.java291 * Transform images with the given {@link Transformation}. Appends this transformation onto any existing
294 * @param transformation the transformation to apply.
298 Transformation<ResourceType> transformation) {
300 singleTransformation = transformation;
304 transformations.add(transformation);
297 transform( Transformation<ResourceType> transformation) argument
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DGenericRequest.java37 private Transformation<Z> transformation; field in class:GenericRequest
81 Transformation<Z> transformation,
105 transformation,
130 transformation = null;
156 Transformation<Z> transformation,
176 this.transformation = transformation;
322 transformation, encoder, transcoder, priority, isMemoryCacheable, this);
67 obtain( LoadProvider<A, T, Z, R> loadProvider, A model, Context context, Priority priority, Target<R> target, float sizeMultiplier, Drawable placeholderDrawable, int placeholderResourceId, Drawable errorDrawable, int errorResourceId, RequestListener<A, R> requestListener, RequestCoordinator requestCoordinator, Engine engine, Transformation<Z> transformation, Class<R> transcodeClass, boolean isMemoryCacheable, GlideAnimationFactory<R> animationFactory, int overrideWidth, int overrideHeight, boolean cacheSource) argument
142 init( LoadProvider<A, T, Z, R> loadProvider, A model, Context context, Priority priority, Target<R> target, float sizeMultiplier, Drawable placeholderDrawable, int placeholderResourceId, Drawable errorDrawable, int errorResourceId, RequestListener<A, R> requestListener, RequestCoordinator requestCoordinator, Engine engine, Transformation<Z> transformation, Class<R> transcodeClass, boolean isMemoryCacheable, GlideAnimationFactory<R> animationFactory, int overrideWidth, int overrideHeight, boolean cacheSource) argument
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.cc593 ByteVector* transformation) {
603 transformation->resize(tsize);
604 data_->ReadBytes(index, &((*transformation)[0]), 0, tsize);
592 Transformation(int32_t contour, ByteVector* transformation) argument
/external/sfntly/cpp/src/sfntly/table/truetype/
H A Dglyph_table.cc593 ByteVector* transformation) {
603 transformation->resize(tsize);
604 data_->ReadBytes(index, &((*transformation)[0]), 0, tsize);
592 Transformation(int32_t contour, ByteVector* transformation) argument

Completed in 6988 milliseconds

12