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

1 2 3

  /external/freetype/src/autofit/
afloader.h 46 FT_Bool transformed; member in struct:AF_LoaderRec_
  /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/bitmap/
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).
CenterCrop.java 30 Bitmap transformed = TransformationUtils.centerCrop(toReuse, toTransform, outWidth, outHeight); local
31 if (toReuse != null && toReuse != transformed && !pool.put(toReuse)) {
34 return transformed;
  /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/tensorflow/tensorflow/cc/ops/
const_op.cc 67 auto transformed = Input{ local
69 return NodeBuilder::NodeOut{transformed.node(), transformed.index()};
  /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();
  /frameworks/native/libs/vr/libdvrcommon/tests/
pose_test.cpp 139 const vec3_t transformed = pose.Transform(start_position); local
140 const vec3_t inverted = pose_inverse.Transform(transformed);
  /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/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/tensorflow/tensorflow/contrib/graph_editor/
transform.py 58 t: tensor whose input must be transformed into a place holder.
76 t: tensor whose input must be transformed into a place holder.
87 """Add the transformed elem to the (renamed) collections of elem.
95 elem_: the transformed element
121 The transformed op or None.
140 A `(op, op_outputs)` tuple containing the transformed op and its outputs.
211 """Return the transformed op/tensor corresponding to the original one.
218 the transformed tensor/operation (or None if no match is found).
222 for original, transformed in iteritems(transformed_map):
224 return transformed
251 def transformed(self, original, missing_fn=None): member in class:TransformerInfo
    [all...]
  /frameworks/base/core/java/android/service/autofill/
DateTransformation.java 81 final String transformed = mDateFormat.format(date); local
82 if (sDebug) Log.d(TAG, "Transformed " + date + " to " + transformed);
84 parentTemplate.setCharSequence(childViewId, "setText", transformed);
  /frameworks/base/core/java/com/android/internal/util/
CollectionUtils.java 155 O transformed = f.apply(cur.get(i)); local
156 if (transformed != null) {
157 result = add(result, transformed);
  /frameworks/base/tools/aapt2/link/
ReferenceLinker.cpp 132 std::unique_ptr<Item> transformed = local
136 if (!transformed && (attr->type_mask & android::ResTable_map::TYPE_STRING)) {
140 transformed =
145 if (transformed) {
146 return transformed;
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringTest.java 235 final CharSequence transformed = transformation.getTransformation(original, null); local
236 copied = new SpannableString(transformed);
SpannableStringBuilderSpanTest.java 607 final CharSequence transformed = transformation.getTransformation(original, null); local
608 copied = new SpannableStringBuilder(transformed);
  /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/base/libs/hwui/
ClipArea.cpp 238 SkPath transformed; local
239 path.transform(skTransform, &transformed);
241 regionFromPath(transformed, region);
271 Rect transformed(r);
272 transform->mapRect(transformed);
273 mClipRect.doIntersect(transformed);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
Quad.java 25 * The Quad class specifies a (possibly affine transformed) rectangle.
28 * has been transformed by an affine transformation. This means that Quads can represent translated,
33 * bottom-left, and bottom-right. These labels allow mapping a transformed Quad back to an up-right
117 * Return a Quad that represents the specified transformed rectangle.
123 * @return the Quad representing the source rectangle transformed by the matrix
126 return Quad.fromRect(rect).transformed(matrix);
202 * @return the transformed Quad
204 public Quad transformed(Matrix matrix) { method in class:Quad
  /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;
  /external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
agent.cc 60 // - send the transformed code back to the runtime
127 // Set transformed byte code
131 jbyte* transformed = env->GetByteArrayElements(transformedArr, 0); local
134 std::memcpy(*newClassData, transformed, *newClassDataLen);
136 env->ReleaseByteArrayElements(transformedArr, transformed, 0);
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 286 ListenableFuture<String> transformed = local
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);
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java 310 * retrieved from the Cursor may or may not be transformed using this binder's
360 * @return A String containing the transformed value of the column.
1135 final String transformed = mStringMappings.get(value); local
1142 final Integer transformed = mResourceMappings.get(value); local
    [all...]

Completed in 582 milliseconds

1 2 3