HomeSort by relevance Sort by last modified time
    Searched defs:transformations (Results 1 - 11 of 11) sorted by null

  /external/glide/library/src/main/java/com/bumptech/glide/load/
MultiTransformation.java 9 * A transformation that applies one or more transformations in iteration order to a resource.
14 private final Collection<? extends Transformation<T>> transformations; field in class:MultiTransformation
18 public MultiTransformation(Transformation<T>... transformations) {
19 if (transformations.length < 1) {
22 this.transformations = Arrays.asList(transformations);
29 this.transformations = transformationList;
36 for (Transformation<T> transformation : transformations) {
50 for (Transformation<T> transformation : transformations) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.c 40 * transformations in order.
41 * 3. If one of the transformations returns GL_TRUE, assume that it
46 * instructions emitted by transformations are not transformed.
55 struct radeon_program_transformation *transformations = local
65 for(i = 0; transformations[i].function; ++i) {
66 struct radeon_program_transformation* t = transformations + i;
  /external/glide/library/src/main/java/com/bumptech/glide/
DrawableRequestBuilder.java 151 * Note - Bitmap transformations will apply individually to each frame of animated GIF images and also to
160 * @param transformations The transformations to apply in order.
163 public DrawableRequestBuilder<ModelType> transform(BitmapTransformation... transformations) {
164 return bitmapTransform(transformations);
198 * Transform {@link GlideDrawable}s using the given {@link android.graphics.Bitmap} transformations. Replaces any
199 * previous transformations.
209 GifBitmapWrapperTransformation[] transformations = local
212 transformations[i] = new GifBitmapWrapperTransformation(glide.getBitmapPool(), bitmapTransformations[i]);
214 return transform(transformations);
    [all...]
GifRequestBuilder.java 167 * Transforms each frame of the GIF using the given transformations.
174 * @param bitmapTransformations The transformations to apply in order to each frame.
182 * Transforms each frame of the GIF using the given transformations.
189 * @param bitmapTransformations The transformations to apply in order to each frame.
197 GifDrawableTransformation[] transformations = new GifDrawableTransformation[bitmapTransformations.length]; local
199 transformations[i] = new GifDrawableTransformation(bitmapTransformations[i], glide.getBitmapPool());
201 return transformations;
214 public GifRequestBuilder<ModelType> transform(Transformation<GifDrawable>... transformations) {
215 super.transform(transformations);
  /external/eigen/test/
geo_transformations.cpp 75 template<typename Scalar, int Mode, int Options> void transformations() function
497 CALL_SUBTEST_1(( transformations<double,Affine,AutoAlign>() ));
500 CALL_SUBTEST_2(( transformations<float,AffineCompact,AutoAlign>() ));
504 CALL_SUBTEST_3(( transformations<double,Projective,AutoAlign>() ));
505 CALL_SUBTEST_3(( transformations<double,Projective,DontAlign>() ));
508 CALL_SUBTEST_4(( transformations<float,Affine,RowMajor|AutoAlign>() ));
511 CALL_SUBTEST_5(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
514 CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|AutoAlign>() ));
515 CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|DontAlign>() ));
  /external/opencv3/3rdparty/libpng/
pngstruct.h 64 png_uint_32 transformations; /* which transformations to perform */ member in struct:png_struct_def
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngstruct.h 64 png_uint_32 transformations; /* which transformations to perform */ member in struct:png_struct_def
  /prebuilts/sdk/tools/jacks/
jack-2.28.RELEASE.jar 
  /external/libpng/
pngstruct.h 180 png_uint_32 transformations; /* which transformations to perform */ member in struct:png_struct_def
  /external/pdfium/third_party/lpng_v163/
pngstruct.h 181 png_uint_32 transformations; /* which transformations to perform */ member in struct:png_struct_def
  /frameworks/support/samples/SupportLeanbackShowcase/libs/
picasso-2.5.2.jar 

Completed in 231 milliseconds