Searched refs:transformed (Results 1 - 25 of 36) sorted by relevance

12

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DCenterCrop.java30 Bitmap transformed = TransformationUtils.centerCrop(toReuse, toTransform, outWidth, outHeight);
31 if (toReuse != null && toReuse != transformed && !pool.put(toReuse)) {
34 return transformed;
H A DBitmapTransformation.java50 Bitmap transformed = transform(bitmapPool, toTransform, outWidth, outHeight);
53 if (toTransform.equals(transformed)) {
56 result = BitmapResource.obtain(transformed, bitmapPool);
63 * Transforms the given {@link android.graphics.Bitmap} based on the given dimensions and returns the transformed
71 * @param outWidth The ideal width of the transformed bitmap (does not need to match exactly).
72 * @param outHeight The ideal height of the transformed bitmap (does not need to match exactly).
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
H A DGifBitmapWrapperTransformation.java34 Resource<Bitmap> transformed = bitmapTransformation.transform(bitmapResource, outWidth, outHeight);
35 if (!bitmapResource.equals(transformed)) {
36 GifBitmapWrapper gifBitmap = new GifBitmapWrapper(transformed, resource.get().getGifResource());
40 Resource<GifDrawable> transformed = gifDataTransformation.transform(gifResource, outWidth, outHeight);
41 if (!gifResource.equals(transformed)) {
42 GifBitmapWrapper gifBitmap = new GifBitmapWrapper(resource.get().getBitmapResource(), transformed);
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
H A DFastCosineTransformer.java59 * @param f the real data array to be transformed
60 * @return the real transformed array
74 * @param f the function to be sampled and transformed
78 * @return the real transformed array
97 * @param f the real data array to be transformed
98 * @return the real transformed array
115 * @param f the function to be sampled and transformed
119 * @return the real transformed array
140 * @param f the real data array to be inversely transformed
141 * @return the real inversely transformed arra
[all...]
H A DFastSineTransformer.java58 * @param f the real data array to be transformed
59 * @return the real transformed array
73 * @param f the function to be sampled and transformed
77 * @return the real transformed array
97 * @param f the real data array to be transformed
98 * @return the real transformed array
113 * @param f the function to be sampled and transformed
117 * @return the real transformed array
138 * @param f the real data array to be inversely transformed
139 * @return the real inversely transformed arra
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DMultiTransformation.java11 * @param <T> The type of {@link com.bumptech.glide.load.engine.Resource} that will be transformed.
37 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight);
38 if (previous != null && !previous.equals(resource) && !previous.equals(transformed)) {
41 previous = transformed;
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifDrawableTransformation.java30 // transformed dimensions will be so that our drawable can report the correct intrinsic width and height.
33 Resource<Bitmap> transformed = wrapped.transform(bitmapResource, outWidth, outHeight);
34 if (!bitmapResource.equals(transformed)) {
37 Bitmap transformedFrame = transformed.get();
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DDecodeJob.java28 * @param <Z> The type of resource that will be transcoded from the decoded and transformed resource.
73 * Returns a transcoded resource decoded from transformed resource data in the disk cache, or null if no such
84 Resource<T> transformed = loadFromCache(resultKey);
86 logWithTimeAndKey("Decoded transformed from cache", startTime);
89 Resource<Z> result = transcode(transformed);
91 logWithTimeAndKey("Transcoded transformed from cache", startTime);
97 * Returns a transformed and transcoded resource decoded from source data in the disk cache, or null if no such
116 * Returns a transformed and transcoded resource decoded from source data, or null if no source data could be
138 Resource<T> transformed = transform(decoded);
143 writeTransformedToCache(transformed);
153 writeTransformedToCache(Resource<T> transformed) argument
242 transcode(Resource<T> transformed) argument
[all...]
/external/clang/tools/libclang/
H A DARCMigrate.cpp129 CXString *original, CXString *transformed) {
133 if (transformed)
134 *transformed = cxstring::createDup(
128 clang_remap_getFilenames(CXRemapping map, unsigned index, CXString *original, CXString *transformed) argument
/external/freetype/src/autofit/
H A Dafloader.h46 FT_Bool transformed; member in struct:AF_LoaderRec_
H A Dafloader.c343 loader->transformed = internal->glyph_transformed;
344 if ( loader->transformed )
361 if ( loader->transformed )
477 if ( loader->transformed )
/external/skia/src/core/
H A DSkNormalMapSource.cpp58 // Else, Normalizing the transformed X and Y, while keeping constant both Z and the
61 // Here, we call 'scaling factor' the number that must divide the transformed X and Y so
64 fragBuilder->codeAppendf(" vec2 transformed = %s * normal.xy;",
67 "( (transformed.x * transformed.x) "
68 "+ (transformed.y * transformed.y) )"
70 fragBuilder->codeAppendf(" %s = vec4(transformed*inversesqrt(scalingFactorSquared),"
191 SkVector transformed = fSource.fInvCTM.mapVector(tempNorm.fX, tempNorm.fY); local
193 // Normalizing the transformed
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTest.java1606 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION);
1608 assertEquals(ImmutableMap.of("a", 2.0, "b", 3.0), transformed);
1614 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION);
1616 assertEquals(ImmutableMap.of("a", 2.0, "b", 3.0), transformed);
1617 assertTrue(transformed instanceof SortedMap);
1623 Map<String, Double> transformed;
1625 transformed = transformValues(map, SQRT_FUNCTION);
1626 assertEquals(ImmutableMap.of("a", 2.0, "b", 3.0), transformed);
1627 assertTrue(transformed instanceof NavigableMap);
1629 transformed
[all...]
H A DMultimapsTest.java840 Multimap<String, Integer> transformed = Multimaps.transformValues(multimap, square);
841 assertThat(transformed.entries()).has().exactly(immutableEntry("a", 4),
850 Multimap<String, Integer> transformed =
859 assertThat(transformed.entries()).has().exactly(immutableEntry("a", 3)).inOrder();
872 ListMultimap<String, Integer> transformed =
874 assertThat(transformed.entries()).has().exactly(immutableEntry("a", 4),
890 Multimap<String, String> transformed =
892 assertThat(transformed.entries()).has().exactly(immutableEntry("a", "a"),
907 ListMultimap<String, String> transformed =
911 transformed);
[all...]
H A DIterablesTest.java1047 List<Integer> transformed = Lists.transform(list,
1054 assertTrue(Iterables.removeIf(transformed,
1062 assertFalse(Iterables.removeIf(transformed,
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMapsTest.java1298 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION);
1300 assertEquals(ImmutableMap.of("a", 2.0, "b", 3.0), transformed);
1306 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION);
1308 assertEquals(ImmutableMap.of("a", 2.0, "b", 3.0), transformed);
1309 assertTrue(transformed instanceof SortedMap);
1321 Map<String, String> transformed = transformEntries(map, concat);
1323 assertEquals(ImmutableMap.of("a", "a4", "b", "b9"), transformed);
1335 Map<String, String> transformed = transformEntries(map, concat);
1337 assertEquals(ImmutableMap.of("a", "a4", "b", "b9"), transformed);
1338 assertTrue(transformed instanceo
[all...]
H A DIterablesTest.java962 List<Integer> transformed = Lists.transform(list,
969 assertTrue(Iterables.removeIf(transformed,
977 assertFalse(Iterables.removeIf(transformed,
/external/libavc/common/arm/
H A Dih264_ihadamard_scaling_a9.s47 @ * This inverse transformed content is scaled to based on Qp value.
169 @ * This inverse transformed content is scaled to based on Qp value.
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java286 ListenableFuture<String> transformed =
291 transformed.get(5, TimeUnit.SECONDS);
457 Future<String> transformed = Futures.lazyTransform(input, spy);
459 assertEquals("bar", transformed.get());
461 assertEquals("bar", transformed.get());
472 Future<String> transformed = Futures.lazyTransform(Futures.immediateFuture(1), function);
474 transformed.get();
480 transformed.get(1, TimeUnit.SECONDS);
/external/ImageMagick/www/api/
H A Dtransform.php164 <dd>the image The transformed image is returned as this parameter. </dd>
418 <dd>the image The transformed image is returned as this parameter. </dd>
454 <dd>the image The transformed image is returned as this parameter. </dd>
H A Dprofile.php184 <p>ICC and ICM profiles are handled as follows: If the image does not have an associated color profile, the one you provide is associated with the image and the image pixels are not transformed. Otherwise, the colorspace transform defined by the existing and new profile are applied to the image pixels and the new profile is associated with the image.</p>
H A Dfx.php300 <p>The MorphImages() method requires a minimum of two images. The first image is transformed into the second by a number of intervening images as specified by frames.</p>
/external/clang/include/clang-c/
H A DIndex.h5304 * \param transformed If non-NULL, will be set to the filename that the original
5308 CXString *original, CXString *transformed);
/external/clang/lib/AST/
H A DType.cpp1042 // Transform the type. If it changed, return the transformed result.
1043 QualType transformed = f(type); local
1044 if (transformed.getAsOpaquePtr() != type.getAsOpaquePtr())
1045 return transformed;
1056 // Reconstruct the transformed type by applying the local qualifiers
/external/robolectric/v3/
H A Drobolectric-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/robolectric/ org/robolectric/util/ org/robolectric/res/ org/ ...

Completed in 444 milliseconds

12