HomeSort by relevance Sort by last modified time
    Searched refs:transformed (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
CenterCrop.java 30 Bitmap transformed = TransformationUtils.centerCrop(toReuse, toTransform, outWidth, outHeight); local
31 if (toReuse != null && toReuse != transformed && !pool.put(toReuse)) {
34 return transformed;
BitmapTransformation.java 50 Bitmap transformed = transform(bitmapPool, toTransform, outWidth, outHeight); local
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/
GifBitmapWrapperTransformation.java 34 Resource<Bitmap> transformed = bitmapTransformation.transform(bitmapResource, outWidth, outHeight); local
35 if (!bitmapResource.equals(transformed)) {
36 GifBitmapWrapper gifBitmap = new GifBitmapWrapper(transformed, resource.get().getGifResource());
40 Resource<GifDrawable> transformed = gifDataTransformation.transform(gifResource, outWidth, outHeight); local
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/
FastCosineTransformer.java 59 * @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
221 final double transformed[] = new double[f.length]; local
    [all...]
FastSineTransformer.java 58 * @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
215 final double transformed[] = new double[f.length]; local
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/
MultiTransformation.java 11 * @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); local
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/
GifDrawableTransformation.java 30 // 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); local
34 if (!bitmapResource.equals(transformed)) {
37 Bitmap transformedFrame = transformed.get();
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DecodeJob.java 28 * @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); local
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); local
140 logWithTimeAndKey("Transformed resource from source", startTime)
235 Resource<T> transformed = transformation.transform(decoded, width, height); local
    [all...]
  /frameworks/rs/rsov/compiler/spirit/
transformer.h 46 // Returns the module being transformed
69 if (Instruction *transformed = transform(inst)) { \
70 transformed->Serialize(*mStream); \
  /cts/tests/tests/text/src/android/text/method/cts/
SingleLineTransformationMethodTest.java 76 // TODO cannot get transformed text from the view
87 final CharSequence transformed = method.getTransformation(original, null); local
89 transformed.subSequence(0, transformed.length());
PasswordTransformationMethodTest.java 182 // the appended string will not get transformed immediately
189 // it will get transformed after a while
202 CharSequence transformed = method.getTransformation(null, mEditText); local
203 assertNotNull(transformed);
205 transformed.toString();
  /external/clang/tools/libclang/
ARCMigrate.cpp 129 CXString *original, CXString *transformed) {
133 if (transformed)
134 *transformed = cxstring::createDup(
  /external/freetype/src/autofit/
afloader.h 46 FT_Bool transformed; member in struct:AF_LoaderRec_
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.cpp 153 std::unique_ptr<Item> transformed = local
157 if (!transformed && (attr->type_mask & android::ResTable_map::TYPE_STRING)) {
161 transformed = util::make_unique<String>(string_pool_->MakeRef(string_builder.ToString()));
165 if (transformed) {
166 return transformed;
282 const Reference& transformed) {
287 if (transformed.name.value() != orig.name.value()) {
288 *out_msg << " (aka " << transformed.name.value() << ")";
ReferenceLinker.h 92 const Reference& transformed);
  /external/skia/src/core/
SkNormalMapSource.cpp 58 // 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 X and Y, while keeping constant both Z and th
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
sec-9.d 9 # linked to an unexpected location, the old test is transformed into a
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 1606 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION); local
1614 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION); local
1623 Map<String, Double> transformed; local
1644 Map<String, String> transformed = transformEntries(map, concat); local
1658 Map<String, String> transformed = transformEntries(map, concat); local
1674 Map<String, String> transformed; local
1752 Map<String, String> transformed = transformEntries(options, flagPrefixer); local
    [all...]
MultimapsTest.java 840 Multimap<String, Integer> transformed = Multimaps.transformValues(multimap, square); local
841 assertThat(transformed.entries()).has().exactly(immutableEntry("a", 4),
850 Multimap<String, Integer> transformed = local
872 ListMultimap<String, Integer> transformed = local
890 Multimap<String, String> transformed = local
907 ListMultimap<String, String> transformed = local
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
CollectionUtils.java 94 O transformed = f.apply(cur.get(i)); local
95 if (transformed != null) {
96 result.add(transformed);
  /frameworks/base/libs/hwui/
ClipArea.cpp 252 SkPath transformed; local
253 path.transform(skTransform, &transformed);
255 regionFromPath(transformed, region);
286 Rect transformed(r);
287 transform->mapRect(transformed);
288 mClipRect.doIntersect(transformed);
  /art/runtime/base/
transform_array_ref_test.cc 157 std::vector<ValueHolder> transformed(transform_input.size(), 0);
158 taref = MakeTransformArrayRef(transformed, ref);
162 ASSERT_EQ(std::vector<ValueHolder>({ 24, 37, 11, 71 }), transformed);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapsTest.java 1298 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION); local
1306 Map<String, Double> transformed = transformValues(map, SQRT_FUNCTION); local
1321 Map<String, String> transformed = transformEntries(map, concat); local
1335 Map<String, String> transformed = transformEntries(map, concat); local
1408 Map<String, String> transformed = transformEntries(options, flagPrefixer); local
    [all...]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCamera2Settings.java 294 MeteringRectangle[] transformed = null; local
296 transformed = new MeteringRectangle[reference.size()];
315 transformed[index] = new MeteringRectangle(left, top, right - left, bottom - top,
319 return transformed;
  /packages/apps/Messaging/build/
android_lint.mk 35 # The transformed text file from the output xml
45 # Creates the transformed text file from the output xml by running an xslt on it

Completed in 1029 milliseconds

1 2 3 4