Searched defs:transformations (Results 1 - 9 of 9) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DMultiTransformation.java8 * A transformation that applies an ordered array of one or more transformations to an image.
11 private Transformation<T>[] transformations; field in class:MultiTransformation
15 public MultiTransformation(Transformation<T>... transformations) { argument
16 if (transformations.length < 1) {
19 this.transformations = transformations;
33 if (transformations != null) {
34 for (Transformation<T> transformation : transformations) {
58 if (transformations != null) {
59 for (Transformation transformation : transformations) {
[all...]
/external/pixman/test/
H A Dgradient-crash-test.c46 pixman_transform_t transformations[] = { local
139 for (k = 0; k < ARRAY_LENGTH (transformations); ++k)
141 pixman_image_set_transform (src_img, &transformations[k]);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c40 * 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/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c40 * 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/eigen/test/
H A Dgeo_transformations.cpp75 template<typename Scalar, int Mode, int Options> void transformations() function
457 CALL_SUBTEST_1(( transformations<double,Affine,AutoAlign>() ));
460 CALL_SUBTEST_2(( transformations<float,AffineCompact,AutoAlign>() ));
464 CALL_SUBTEST_3(( transformations<double,Projective,AutoAlign>() ));
465 CALL_SUBTEST_3(( transformations<double,Projective,DontAlign>() ));
468 CALL_SUBTEST_4(( transformations<float,Affine,RowMajor|AutoAlign>() ));
471 CALL_SUBTEST_5(( transformations<double,AffineCompact,RowMajor|AutoAlign>() ));
474 CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|AutoAlign>() ));
475 CALL_SUBTEST_6(( transformations<double,Projective,RowMajor|DontAlign>() ));
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGenericRequestBuilder.java56 private List<Transformation<ResourceType>> transformations = null; field in class:GenericRequestBuilder
292 * transformations
302 transformations = new ArrayList<Transformation<ResourceType>>();
303 transformations.add(singleTransformation);
304 transformations.add(transformation);
637 if (transformations == null) {
640 return new MultiTransformation<ResourceType>(transformations);
/external/chromium_org/third_party/libpng/
H A Dpngrutil.c2537 if (png_ptr->transformations & PNG_PACKSWAP)
2592 if (png_ptr->transformations & PNG_PACKSWAP)
2644 if (png_ptr->transformations & PNG_PACKSWAP)
2717 png_uint_32 transformations)
2725 png_uint_32 transformations = png_ptr->transformations; local
2751 if (transformations & PNG_PACKSWAP)
2804 if (transformations & PNG_PACKSWAP)
2860 if (transformations & PNG_PACKSWAP)
2935 transformations
[all...]
/external/libpng/
H A Dpngstruct.h228 png_uint_32 transformations; /* which transformations to perform */ member in struct:png_struct_def
/external/qemu/distrib/libpng-1.2.46/
H A Dpngrutil.c2553 if (png_ptr->transformations & PNG_PACKSWAP)
2608 if (png_ptr->transformations & PNG_PACKSWAP)
2660 if (png_ptr->transformations & PNG_PACKSWAP)
2733 png_uint_32 transformations)
2741 png_uint_32 transformations = png_ptr->transformations; local
2767 if (transformations & PNG_PACKSWAP)
2820 if (transformations & PNG_PACKSWAP)
2876 if (transformations & PNG_PACKSWAP)
2951 transformations
[all...]

Completed in 864 milliseconds