HomeSort by relevance Sort by last modified time
    Searched defs:transform (Results 476 - 500 of 1755) sorted by null

<<11121314151617181920>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DefaultTransformer.java 44 public double transform(Object o) throws MathException { method in class:DefaultTransformer
  /external/glide/library/src/main/java/com/bumptech/glide/load/
MultiTransformation.java 33 public Resource<T> transform(Resource<T> resource, int outWidth, int outHeight) { method in class:MultiTransformation
37 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
BitmapTransformation.java 20 * public Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
44 public final Resource<Bitmap> transform(Resource<Bitmap> resource, int outWidth, int outHeight) { method in class:BitmapTransformation
50 Bitmap transformed = transform(bitmapPool, toTransform, outWidth, outHeight);
70 * @param toTransform The {@link android.graphics.Bitmap} to transform.
74 protected abstract Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight); method in class:BitmapTransformation
CenterCrop.java 27 protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { method in class:CenterCrop
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperTransformation.java 30 public Resource<GifBitmapWrapper> transform(Resource<GifBitmapWrapper> resource, int outWidth, int outHeight) { method in class:GifBitmapWrapperTransformation
34 Resource<Bitmap> transformed = bitmapTransformation.transform(bitmapResource, outWidth, outHeight);
40 Resource<GifDrawable> transformed = gifDataTransformation.transform(gifResource, outWidth, outHeight);
  /external/guava/guava/src/com/google/common/collect/
TransformedIterator.java 39 abstract T transform(F from); method in class:TransformedIterator
48 return transform(backingIterator.next());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UnicodeRegex.java 88 public String transform(String regex) { method in class:UnicodeRegex
151 return STANDARD.transform(regex);
161 return Pattern.compile(STANDARD.transform(regex));
171 return Pattern.compile(STANDARD.transform(regex), options);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeRegex.java 86 public String transform(String regex) { method in class:UnicodeRegex
149 return STANDARD.transform(regex);
159 return Pattern.compile(STANDARD.transform(regex));
169 return Pattern.compile(STANDARD.transform(regex), options);
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
JarTransformer.java 37 reader.accept(transform(w), ClassReader.EXPAND_FRAMES); method
44 abstract protected ClassVisitor transform(ClassVisitor v); method in class:JarTransformer
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJTransformer.java 71 * Losslessly transform the JPEG image associated with this transformer
77 * free. Each lossless transform requires reading and performing Huffman
91 * which specifies the transform parameters and/or cropping region for the
97 public void transform(byte[][] dstBufs, TJTransform[] transforms, method in class:TJTransformer
101 transformedSizes = transform(jpegBuf, jpegBufSize, dstBufs, transforms,
106 * Losslessly transform the JPEG image associated with this transformer
111 * which specifies the transform parameters and/or cropping region for the
120 public TJDecompressor[] transform(TJTransform[] transforms, int flags) method in class:TJTransformer
134 transform(dstBufs, transforms, flags); method
142 * generated by the most recent transform operation
155 private native int[] transform(byte[] srcBuf, int srcSize, byte[][] dstBufs, method in class:TJTransformer
    [all...]
  /external/llvm/
llvm-host-build.mk 74 define transform-host-td-to-out
  /external/mesa3d/src/mesa/tnl/
t_vb_normals.c 106 GLuint transform = NORM_TRANSFORM_NO_ROT; local
109 /* need to do full (3x3) matrix transform */
110 transform = NORM_TRANSFORM;
113 if (ctx->Transform.Normalize) {
114 store->NormalTransform = _mesa_normal_tab[transform | NORM_NORMALIZE];
116 else if (ctx->Transform.RescaleNormals &&
118 store->NormalTransform = _mesa_normal_tab[transform | NORM_RESCALE];
121 store->NormalTransform = _mesa_normal_tab[transform];
127 * transform normal vectors (just leave them in object coordinates)
130 if (ctx->Transform.Normalize)
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_iccprofile.h 27 CLcmsCmm* transform() { return m_Transform.get(); } function in class:CPDF_IccProfile
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_imports.py 122 def transform(self, node, results): member in class:FixImports
139 self.transform(node, results)
fix_tuple_params.py 46 def transform(self, node, results): member in class:FixTupleParams
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_imports.py 122 def transform(self, node, results): member in class:FixImports
139 self.transform(node, results)
fix_tuple_params.py 46 def transform(self, node, results): member in class:FixTupleParams
  /external/tensorflow/tensorflow/contrib/image/python/ops/
image_ops.py 81 output = transform(
117 return transform(
127 """Returns projective transform(s) for the given angle(s).
138 to `tf.contrib.image.transform`.
170 """Returns projective transform(s) for the given translation(s).
181 to `tf.contrib.image.transform`.
215 def transform(images, transforms, interpolation="NEAREST", name=None): function
216 """Applies the given transform(s) to the image(s).
223 transforms: Projective transform matrix/matrices. A vector of length 8 or
229 the transform mapping input points to output points. Note that gradient
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/preprocessing/
text.py 65 """Calls transform."""
66 return self.transform(x)
70 """Reverses output of transform back to text.
85 def transform(self, x): member in class:ByteProcessor
169 return self.transform(raw_documents)
171 def transform(self, raw_documents): member in class:VocabularyProcessor
172 """Transform documents to word-id matrix.
  /external/tensorflow/tensorflow/contrib/py2tf/converters/
call_trees.py 192 # The renaming process will transform it into a regular function.
257 def transform(node, context, uncompiled_modules, nocompile_decorators): function
258 """Transform function call to the compiled counterparts.
261 node: AST to transform.
continue_statements.py 126 def transform(node, namer): function
side_effect_guards.py 189 def transform(node, context): function
  /external/testng/src/test/java/test/tmp/
AnnotationTransformer.java 17 public void transform(ITestAnnotation annotation, Class testClass, method in class:AnnotationTransformer
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ScaleFilter.java 17 package androidx.media.filterpacks.transform;
  /libcore/luni/src/main/java/javax/xml/transform/
OutputKeys.java 20 package javax.xml.transform;
47 * then {@link javax.xml.transform.Transformer#setOutputProperty}
48 * or {@link javax.xml.transform.Transformer#setOutputProperties} will
160 * {@link javax.xml.transform}.</p>

Completed in 394 milliseconds

<<11121314151617181920>>