/external/fonttools/Lib/fontTools/pens/ |
D | transformPen.py | 15 def __init__(self, outPen, transformation): argument 20 if not hasattr(transformation, "transformPoint"): 22 transformation = Transform(*transformation) 23 self._transformation = transformation 24 self._transformPoint = transformation.transformPoint 54 def addComponent(self, glyphName, transformation): argument 55 transformation = self._transformation.transform(transformation) 56 self._outPen.addComponent(glyphName, transformation)
|
D | basePen.py | 108 def addComponent(self, glyphName, transformation): argument 140 def addComponent(self, glyphName, transformation): argument 189 def addComponent(self, glyphName, transformation): argument 199 tPen = TransformPen(self, transformation)
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
D | EngineKey.java | 21 private final Transformation transformation; field in EngineKey 31 ResourceDecoder decoder, Transformation transformation, ResourceEncoder encoder, in EngineKey() argument 39 this.transformation = transformation; in EngineKey() 71 } else if (transformation == null ^ engineKey.transformation == null) { in equals() 73 …} else if (transformation != null && !transformation.getId().equals(engineKey.transformation.getId… in equals() 108 … hashCode = 31 * hashCode + (transformation != null ? transformation.getId().hashCode() : 0); in hashCode() 126 .append(transformation != null ? transformation.getId() : "") in toString() 146 …messageDigest.update((transformation != null ? transformation.getId() : "").getBytes(STRING_CHARSE… in updateDiskCacheKey()
|
D | DecodeJob.java | 39 private final Transformation<T> transformation; field in DecodeJob 49 …DataLoadProvider<A, T> loadProvider, Transformation<T> transformation, ResourceTranscoder<T, Z> tr… in DecodeJob() argument 51 …this(resultKey, width, height, fetcher, loadProvider, transformation, transcoder, diskCache, diskC… in DecodeJob() 57 …DataLoadProvider<A, T> loadProvider, Transformation<T> transformation, ResourceTranscoder<T, Z> tr… in DecodeJob() argument 64 this.transformation = transformation; in DecodeJob() 235 Resource<T> transformed = transformation.transform(decoded, width, height); in transform()
|
D | EngineKeyFactory.java | 14 ResourceDecoder sourceDecoder, Transformation transformation, ResourceEncoder encoder, in buildKey() argument 16 …n new EngineKey(id, signature, width, height, cacheDecoder, sourceDecoder, transformation, encoder, in buildKey()
|
D | Engine.java | 141 …DataLoadProvider<T, Z> loadProvider, Transformation<Z> transformation, ResourceTranscoder<Z, R> tr… in load() argument 148 loadProvider.getSourceDecoder(), transformation, loadProvider.getEncoder(), in load() 187 …Z, R> decodeJob = new DecodeJob<T, Z, R>(key, width, height, fetcher, loadProvider, transformation, in load()
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_geometric_transformations/ |
D | py_geometric_transformations.markdown | 7 - Learn to apply different geometric transformation to images like translation, rotation, affine 8 transformation etc. 14 OpenCV provides two transformation functions, **cv2.warpAffine** and **cv2.warpPerspective**, with 15 which you can have all kinds of transformations. **cv2.warpAffine** takes a 2x3 transformation 16 matrix while **cv2.warpPerspective** takes a 3x3 transformation matrix as input. 42 be \f$(t_x,t_y)\f$, you can create the transformation matrix \f$\textbf{M}\f$ as follows: 74 Rotation of an image for an angle \f$\theta\f$ is achieved by the transformation matrix of the form 79 location you prefer. Modified transformation matrix is given by 87 To find this transformation matrix, OpenCV provides a function, **cv2.getRotationMatrix2D**. Check 102 In affine transformation, all parallel lines in the original image will still be parallel in the [all …]
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | CryptoUpcalls.java | 156 String transformation = "RSA/ECB/" + jcaPadding; in rsaDecryptWithPrivateKey() local 163 c = Cipher.getInstance(transformation); in rsaDecryptWithPrivateKey() 171 System.err.println("Unsupported cipher algorithm: " + transformation); in rsaDecryptWithPrivateKey() 182 ArrayList<Provider> providers = getExternalProviders("Cipher." + transformation); in rsaDecryptWithPrivateKey() 185 c = Cipher.getInstance(transformation, p); in rsaDecryptWithPrivateKey() 194 System.err.println("Could not find provider for algorithm: " + transformation); in rsaDecryptWithPrivateKey() 203 + " private key using " + transformation + ":"); in rsaDecryptWithPrivateKey()
|
D | OpenSSLProvider.java | 309 private void putSymmetricCipherImplClass(String transformation, String className) { in putSymmetricCipherImplClass() argument 315 "Cipher." + transformation, in putSymmetricCipherImplClass() 321 private void putRSACipherImplClass(String transformation, String className) { in putRSACipherImplClass() argument 331 "Cipher." + transformation, in putRSACipherImplClass()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/ |
D | MultiTransformation.java | 36 for (Transformation<T> transformation : transformations) { in transform() 37 Resource<T> transformed = transformation.transform(previous, outWidth, outHeight); in transform() 50 for (Transformation<T> transformation : transformations) { in getId() 51 sb.append(transformation.getId()); in getId()
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/ |
D | GifFrameManager.java | 37 private Transformation<Bitmap> transformation = UnitTransformation.get(); field in GifFrameManager 72 public void setFrameTransformation(Transformation<Bitmap> transformation) { in setFrameTransformation() argument 73 if (transformation == null) { in setFrameTransformation() 76 this.transformation = transformation; in setFrameTransformation() 96 .transform(transformation) in getNextFrame()
|
D | GifResourceEncoder.java | 48 Transformation<Bitmap> transformation = drawable.getFrameTransformation(); in encode() local 49 if (transformation instanceof UnitTransformation) { in encode() 62 …Resource<Bitmap> transformedResource = getTransformedFrame(currentFrame, transformation, drawable); in encode() 112 …te Resource<Bitmap> getTransformedFrame(Bitmap currentFrame, Transformation<Bitmap> transformation, in getTransformedFrame() argument 116 Resource<Bitmap> transformedResource = transformation.transform(bitmapResource, in getTransformedFrame()
|
/external/libpng/ |
D | TODO | 7 cHRM transformation. 10 Add "grayscale->palette" transformation and "palette->grayscale" detection. 13 Complete sRGB transformation (presently it simply uses gamma=0.45455). 23 background and doing rgb-to-gray transformation.
|
/external/eigen/doc/ |
D | TutorialGeometry.dox | 11 …- Projective or affine transformation matrices: see the Transform class. These are really matrices. 13 …rage, you can directly use the Transform::data() method to pass your transformation matrix to Open… 15 You can construct a Transform from an abstract transformation, like this: 58 N-D \ref TutorialGeoTransform "Affine transformation"</td><td>\code 80 Any of the above transformation types can be converted to any other types of the same nature, 95 …ass="top">top</a>\section TutorialGeoCommontransformationAPI Common API across transformation types 98 generic algorithms working on any kind of transformation representations: 103 <tr class="alt"><td>Apply the transformation to a vector</td><td>\code 105 <tr><td>Get the inverse of the transformation</td><td>\code 118 vector distinguish when the transformation is applied. [all …]
|
/external/glide/library/src/main/java/com/bumptech/glide/request/ |
D | GenericRequest.java | 63 private Transformation<Z> transformation; field in GenericRequest 103 Transformation<Z> transformation, in obtain() argument 129 transformation, in obtain() 153 transformation = null; in recycle() 175 Transformation<Z> transformation, in init() argument 196 this.transformation = transformation; in init() 210 check("Transformation", transformation, "try .transform(UnitTransformation.get())"); in init() 421 …atus = engine.load(signature, width, height, dataFetcher, loadProvider, transformation, transcoder, in onSizeReady()
|
/external/webrtc/webrtc/base/ |
D | stringutils.cc | 54 CharacterTransformation transformation) { in ascii_string_compare() argument 58 c1 = transformation(*s1); in ascii_string_compare() 62 c2 = transformation(*s2); in ascii_string_compare()
|
/external/opencv3/doc/tutorials/features2d/akaze_tracking/ |
D | akaze_tracking.markdown | 16 -# Estimate homography transformation using RANSAC 18 -# Apply homography transformation to the bounding box to find the object 91 -# Use *RANSAC* to estimate homography transformation 97 transformation. 118 If there is a reasonable number of inliers we can use estimated transformation to locate the
|
/external/libxml2/optim/ |
D | TOTRY | 13 for each transformation context 15 cache values in the transformation
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
D | GenericRequestBuilder.java | 77 private Transformation<ResourceType> transformation = UnitTransformation.get(); field in GenericRequestBuilder 317 transformation = transformations[0]; in transform() 319 transformation = new MultiTransformation<ResourceType>(transformations); in transform() 332 Transformation<ResourceType> transformation = UnitTransformation.get(); in dontTransform() local 333 return transform(transformation); in dontTransform() 773 transformation, in obtainRequest()
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_feature_homography/ |
D | py_feature_homography.markdown | 20 of points from both the images, it will find the perpective transformation of that object. Then we 22 find the transformation. 71 are passed to find the perpective transformation. Once we get this 3x3 transformation matrix, we use
|
/external/deqp/modules/gles3/functional/ |
D | es3fTextureUnitTests.cpp | 286 static tcu::Vector<tcu::Vec2, 3> calculateLodDerivateParts (const Mat4& transformation) in calculateLodDerivateParts() argument 289 Vec3 trans00 = (transformation * Vec4(0.0f, 0.0f, 1.0f, 1.0f)).xyz(); in calculateLodDerivateParts() 290 Vec3 trans01 = (transformation * Vec4(0.0f, 1.0f, 1.0f, 1.0f)).xyz(); in calculateLodDerivateParts() 291 Vec3 trans10 = (transformation * Vec4(1.0f, 0.0f, 1.0f, 1.0f)).xyz(); in calculateLodDerivateParts() 459 Mat4 transformation = matExtend3To4(Mat3(tempOffsetData) * in MultiTexShader() local 467 m_lodDerivateParts.push_back(calculateLodDerivateParts(transformation)); in MultiTexShader() 468 m_transformations.push_back(transformation); in MultiTexShader() 508 Mat4 transformation(transData); in MultiTexShader() local 532 transformation = transformation * Mat4(zScaleTransfData) * Mat4(zTranslationTransfData); in MultiTexShader() 537 m_lodDerivateParts.push_back(calculateLodDerivateParts(transformation)); in MultiTexShader() [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | NOTES | 3 A generic, configurable software implementation of GL transformation & 23 the vtxfmt dispatch hooks, thus taking over the task of transformation 61 - Direct the default vertex transformation stage to
|
/external/llvm/test/CodeGen/X86/ |
D | targetLoweringGeneric.ll | 9 ; rdar://11195364 A problem with the transformation: 14 ; transformation should not occur
|
/external/llvm/lib/Passes/ |
D | PassRegistry.def | 11 // libraries. This file describes both transformation passes and analyses 12 // Analyses are registered while transformation passes have names registered
|
/external/mesa3d/docs/ |
D | RELNOTES-3.1 | 87 Assorted transformation hints. 117 vertex transformation code. Basically, the whole transformation
|