Searched refs:transformed (Results 1 - 10 of 10) sorted by relevance

/frameworks/native/services/surfaceflinger/
H A DTransform.h63 bool transformed() const;
H A DTransform.cpp90 bool Transform::transformed() const { function in class:android::Transform
227 if (CC_UNLIKELY(transformed())) {
H A DSurfaceFlinger.cpp1490 // TODO: we could cache the transformed region
1612 if (tr.transformed()) {
/frameworks/base/libs/hwui/
H A DStatefulBaseRenderer.cpp169 SkPath transformed; local
170 path->transform(transform, &transformed);
185 region.setPath(transformed, clip);
187 // region is the transformed input path, masked by the previous clip
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Settings.java294 MeteringRectangle[] transformed = null;
296 transformed = new MeteringRectangle[reference.size()];
315 transformed[index] = new MeteringRectangle(left, top, right - left, bottom - top,
319 return transformed;
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java639 * transformed by the optional matrix. The new bitmap may be the
712 final boolean transformed = !m.rectStaysRect();
720 bitmap = createBitmap(neww, newh, transformed ? Config.ARGB_8888 : newConfig,
721 transformed || source.hasAlpha());
728 if (transformed) {
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
H A DQuad.java25 * 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/base/core/java/android/widget/
H A DSwitch.java679 final CharSequence transformed = (mSwitchTransformationMethod != null)
683 return new StaticLayout(transformed, mTextPaint,
684 (int) Math.ceil(Layout.getDesiredWidth(transformed, mTextPaint)),
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSwitchCompat.java565 final CharSequence transformed = (mSwitchTransformationMethod != null)
569 return new StaticLayout(transformed, mTextPaint,
570 (int) Math.ceil(Layout.getDesiredWidth(transformed, mTextPaint)),
/frameworks/base/core/java/android/view/
H A DViewGroup.java2328 * Returns true if a child view contains the specified point when transformed
4620 // Views being animated or transformed are not considered opaque because we may
4644 boolean transformed = getChildStaticTransformation(child, t);
4645 if (transformed) {

Completed in 342 milliseconds