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

1 2

  /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();
  /cts/tests/tests/text/src/android/text/method/cts/
SingleLineTransformationMethodTest.java 77 // TODO cannot get transformed text from the view
88 final CharSequence transformed = method.getTransformation(original, null); local
90 transformed.subSequence(0, transformed.length());
PasswordTransformationMethodTest.java 183 // the appended string will not get transformed immediately
190 // it will get transformed after a while
203 CharSequence transformed = method.getTransformation(null, mEditText); local
204 assertNotNull(transformed);
206 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 57 t: tensor whose input must be transformed into a place holder.
75 t: tensor whose input must be transformed into a place holder.
86 """Add the transformed elem to the (renamed) collections of elem.
94 elem_: the transformed element
120 The transformed op or None.
145 A `(op, op_outputs)` tuple containing the transformed op and its outputs.
223 """Return the transformed op/tensor corresponding to the original one.
230 the transformed tensor/operation (or None if no match is found).
234 for original, transformed in iteritems(transformed_map):
236 return transformed
263 def transformed(self, original, missing_fn=None): member in class:TransformerInfo
    [all...]
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
InstrumentationConfiguration.java 224 HashSet<MethodRef> transformed = new HashSet<>(); local
226 transformed.add(new MethodRef(internalize(methodRef.className), methodRef.methodName));
228 return transformed;
  /external/skia/src/core/
SkNormalMapSource.cpp 61 // Else, Normalizing the transformed X and Y, while keeping constant both Z and the
64 // Here, we call 'scaling factor' the number that must divide the transformed X and Y so
67 fragBuilder->codeAppendf(" float2 transformed = %s * normal.xy;",
70 "( (transformed.x * transformed.x) "
71 "+ (transformed.y * transformed.y) )"
73 fragBuilder->codeAppendf(" %s = half4(half2(transformed * "
199 SkVector transformed = fSource.fInvCTM.mapVector(tempNorm.fX, tempNorm.fY); local
201 // Normalizing the transformed X and Y, while keeping constant both Z and th
    [all...]
  /external/skqp/src/core/
SkNormalMapSource.cpp 61 // Else, Normalizing the transformed X and Y, while keeping constant both Z and the
64 // Here, we call 'scaling factor' the number that must divide the transformed X and Y so
67 fragBuilder->codeAppendf(" float2 transformed = %s * normal.xy;",
70 "( (transformed.x * transformed.x) "
71 "+ (transformed.y * transformed.y) )"
73 fragBuilder->codeAppendf(" %s = float4(transformed*inversesqrt(scalingFactorSquared),"
194 SkVector transformed = fSource.fInvCTM.mapVector(tempNorm.fX, tempNorm.fY); local
196 // Normalizing the transformed X and Y, while keeping constant both Z and th
    [all...]
  /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...]
  /cts/tests/tests/text/src/android/text/cts/
SpannableStringTest.java 237 final CharSequence transformed = transformation.getTransformation(original, null); local
238 copied = new SpannableString(transformed);
SpannableStringBuilderSpanTest.java 608 final CharSequence transformed = transformation.getTransformation(original, null); local
609 copied = new SpannableStringBuilder(transformed);
  /external/cldr/tools/java/org/unicode/cldr/util/
RegexLogger.java 468 String transformed = current; local
483 transformed = current.substring("org.unicode.cldr.util.".length());
486 if (!transformed.startsWith("RegexLookup")) {
487 returned.add(transformed);
489 lastClass = 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/dexmaker/dexmaker-mockito-inline-extended/src/main/jni/staticjvmtiagent/
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);
585 std::shared_ptr<jbyte> transformed((jbyte*)writer.CreateImage(&allocator, &transformedLen));
588 env->SetByteArrayRegion(transformedArr, 0, transformedLen, transformed.get());
687 // - send the transformed code back to the runtime
    [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...]
  /external/clang/lib/AST/
Type.cpp 1043 QualType transformed = f(type); local
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestTransforms.java 595 String transformed = translit.transform(source); local
596 if (!assertEquals(locale, expected, transformed)) {
599 return transformed;

Completed in 1380 milliseconds

1 2