HomeSort by relevance Sort by last modified time
    Searched full:matrix (Results 226 - 250 of 720) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/libs/surfaceflinger_client/
SurfaceComposerClient.cpp 527 layer_state_t::matrix22_t matrix; local
528 matrix.dsdx = dsdx;
529 matrix.dtdx = dtdx;
530 matrix.dsdy = dsdy;
531 matrix.dtdy = dtdy;
532 s->matrix = matrix;
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 26 import android.graphics.Matrix;
203 Matrix matrix = new Matrix(); local
204 matrix.setScale(scale, scale);
205 Bitmap thumbnail = transform(matrix, source, width, height,
335 private static Bitmap transform(Matrix scaler,
  /external/skia/src/core/
SkPicturePlayback.cpp 589 const SkMatrix* matrix = getMatrix(); local
590 canvas.drawBitmapMatrix(bitmap, *matrix, paint);
685 const SkMatrix* matrix = getMatrix(); local
687 matrix, paint);
1355 const SkMatrix& matrix = fMatrices[index]; local
    [all...]
SkGlyphCache.h 34 matrix, etc., and holds the glyphs for that strike. Calling any of the
252 SkAutoGlyphCache(const SkPaint& paint, const SkMatrix* matrix)
254 fCache = paint.detachCache(matrix);
  /external/e2fsprogs/
ABOUT-NLS 174 matrix shows the current state of internationalization, as of August
175 2002. The matrix shows, in regard of each package, for which languages
401 Some counters in the preceding matrix are higher than the number of
406 For a PO file in the matrix above to be effective, the package to
414 matrix with full percentage details can be found at
415 `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.cpp 300 SkMatrix matrix; local
302 // turn our fields into a matrix.
306 matrix.setTranslate(m_translation.fX, m_translation.fY);
308 matrix.preRotate(m_angleTransform);
310 matrix.preScale(m_scale.fX, m_scale.fY);
311 this->setMatrix(matrix);
  /external/webkit/WebCore/platform/graphics/cg/
ImageCG.cpp 311 CGAffineTransform matrix = CGAffineTransformMake(narrowPrecisionToCGFloat(patternTransform.a()), 0, 0, narrowPrecisionToCGFloat(patternTransform.d()), adjustedX, adjustedY); local
312 matrix = CGAffineTransformConcat(matrix, CGContextGetCTM(context));
314 matrix = CGAffineTransformTranslate(matrix, 0, size().height() - h);
316 matrix, tileRect.width(), tileRect.height(),
  /external/freetype/src/smooth/
ftsmooth.c 61 const FT_Matrix* matrix,
73 if ( matrix )
74 FT_Outline_Transform( &slot->outline, matrix );
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Alt3D.h 43 /** matrix */
94 /** creates linear alt from matrix and center */
114 /** Multiplies matrix with float vecA; returns resulting vector */
  /external/webkit/WebCore/platform/graphics/skia/
GradientSkia.cpp 178 SkMatrix matrix = m_gradientSpaceTransformation; local
179 m_gradient->setLocalMatrix(matrix);
190 void Gradient::setPlatformGradientSpaceTransform(const AffineTransform& matrix)
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
pkg_android.opengl.html 127 <A NAME="Matrix"></A>
128 <nobr><A HREF="android.opengl.Matrix.html">Matrix</A></nobr>
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BitmapShader_Delegate.java 113 "Unable to inverse matrix in BitmapShader", e, null /*data*/);
122 "Unable to inverse matrix in BitmapShader", e, null /*data*/);
167 // handle the local matrix.
LinearGradient_Delegate.java 131 "Unable to inverse matrix in LinearGradient", e, null /*data*/);
140 "Unable to inverse matrix in LinearGradient", e, null /*data*/);
185 // handle the local matrix.
RadialGradient_Delegate.java 120 "Unable to inverse matrix in RadialGradient", e, null /*data*/);
129 "Unable to inverse matrix in RadialGradient", e, null /*data*/);
176 // handle the local matrix
SweepGradient_Delegate.java 112 "Unable to inverse matrix in SweepGradient", e, null /*data*/);
121 "Unable to inverse matrix in SweepGradient", e, null /*data*/);
168 // handle the local matrix
  /hardware/ti/wlan/wl1271/utils/
GenSM.c 54 * \note event/action matrix and debug descriptions are used by reference, and are not copied!
117 * \note event/action matrix and debug descriptions are used by reference, and are not copied!
121 * \param pMatrix - pointer to the event/actions matrix
  /system/wlan/ti/wilink_6_1/utils/
GenSM.c 54 * \note event/action matrix and debug descriptions are used by reference, and are not copied!
117 * \note event/action matrix and debug descriptions are used by reference, and are not copied!
121 * \param pMatrix - pointer to the event/actions matrix
  /cts/tests/tests/widget/src/android/widget/cts/
ImageViewTest.java 33 import android.graphics.Matrix;
406 imageView.setScaleType(ImageView.ScaleType.MATRIX);
407 assertEquals(ImageView.ScaleType.MATRIX, imageView.getScaleType());
426 args = {android.graphics.Matrix.class}
440 final Matrix matrix = new Matrix(); local
441 imageView.setImageMatrix(matrix);
442 assertEquals(matrix, imageView.getImageMatrix());
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
_index.html 24 <dd>Demonstrates calling the {@link android.graphics.Matrix.html#setPolyToPoly(float[],int,float[],int,int)} method to translate coordinates on a canvas to a new perspective (used to simulate perspective). </dd>
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
M4.java 21 * A 4x4 float matrix
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 35 * Allows retrieving the current matrix even if the current OpenGL ES
36 * driver does not support retrieving the current matrix.
38 * Note: the actual matrix may differ from the retrieved matrix, due
434 throw new IllegalArgumentException("Unknown matrix mode: " + mode);
1029 * Get the current matrix
1037 * Get the current matrix mode
1057 throw new IllegalArgumentException("Unknown matrix mode");
1082 throw new IllegalArgumentException("Matrix math difference.");
  /external/bison/lib/
bitsetv-print.c 26 | Display the MATRIX array of SIZE bitsets of size SIZE. |
bitsetv.h 50 of the bit matrix set. */
  /external/freetype/include/freetype/
ftoutln.h 287 /* Apply a simple 2x2 matrix to all of an outline's points. Useful */
294 /* matrix :: A pointer to the transformation matrix. */
302 const FT_Matrix* matrix );
  /external/freetype/src/base/
ftoutln.c 673 const FT_Matrix* matrix )
678 if ( !vector || !matrix )
681 xz = FT_MulFix( vector->x, matrix->xx ) +
682 FT_MulFix( vector->y, matrix->xy );
684 yz = FT_MulFix( vector->x, matrix->yx ) +
685 FT_MulFix( vector->y, matrix->yy );
696 const FT_Matrix* matrix )
702 if ( !outline || !matrix )
709 FT_Vector_Transform( vec, matrix );

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>