/packages/apps/Music/src/com/android/music/ |
MusicUtils.java | 38 import android.graphics.Matrix; 1298 Matrix matrix = new Matrix(); local [all...] |
/frameworks/ex/chips/src/com/android/ex/chips/ |
RecipientEditTextView.java | 28 import android.graphics.Matrix; 501 Matrix matrix = new Matrix(); local 502 matrix.setRectToRect(src, dst, Matrix.ScaleToFit.FILL); 503 canvas.drawBitmap(photo, matrix, paint); [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
MotionEventTest.java | 25 import android.graphics.Matrix; 513 fail("transform() should throw an exception when matrix is null."); 566 Matrix matrix = new Matrix(); local 567 matrix.setRotate(ROTATION); 568 event.transform(matrix);
|
/external/skia/gpu/src/ |
GrContext.cpp | 871 const GrMatrix* matrix, 895 if (NULL != matrix && 896 !matrix->preservesAxisAlignment()) { 901 if (NULL != matrix) { 902 combinedMatrix->preConcat(*matrix); 919 const GrMatrix* matrix) { 927 bool doAA = apply_aa_to_rect(target, fGpu, paint, rect, width, matrix, 1309 GrMatrix matrix; local [all...] |
/external/skia/samplecode/ |
SampleApp.cpp | 586 // Apply any gesture matrix 676 SkMatrix matrix; local 680 if (matrix.setRectToRect(scalarSrc, dest, SkMatrix::kFill_ScaleToFit)) { 682 matrix.mapRect(&pixel, originalPixel); [all...] |
/external/skia/src/core/ |
SkCanvas.cpp | 67 The clip/matrix/proc are fields that reflect the top of the save/restore 79 // optional, related to canvas' external matrix 138 // default is to assume no external matrix 155 Since a level optionally copies the matrix and/or stack, we have pointers 624 void SkCanvas::prepareForDeviceDraw(SkDevice* device, const SkMatrix& matrix, 629 device->gainFocus(this, matrix, clip, clipStack); 832 const SkMatrix& matrix, const SkPaint* paint) { 841 this->commonDrawBitmap(bitmap, srcRect, matrix, *paint); 890 bool SkCanvas::concat(const SkMatrix& matrix) { 894 return fMCRec->fMatrix->preConcat(matrix); 907 SkMatrix matrix; local 1274 SkMatrix matrix; local 1292 SkMatrix matrix; local 1611 SkMatrix matrix; local 1654 const SkMatrix& SkCanvas::LayerIter::matrix() const { function in class:SkCanvas::LayerIter [all...] |
SkPicturePlayback.cpp | 593 const SkMatrix* matrix = getMatrix(); local 594 canvas.drawBitmapMatrix(bitmap, *matrix, paint); 692 const SkMatrix* matrix = getMatrix(); local 694 matrix, paint); 1362 const SkMatrix& matrix = fMatrices[index]; local [all...] |
SkDraw.cpp | 50 SkAutoBlitterChoose(const SkBitmap& device, const SkMatrix& matrix, 52 fBlitter = SkBlitter::Choose(device, matrix, paint, 61 void choose(const SkBitmap& device, const SkMatrix& matrix, 64 fBlitter = SkBlitter::Choose(device, matrix, paint, 309 bool init(SkCanvas::PointMode, const SkPaint&, const SkMatrix* matrix, 391 // square procs (strokeWidth > 0 but matrix is square-scale (sx == sy) 429 const SkMatrix* matrix, const SkRegion* clip) { 442 matrix->rectStaysRect() && SkCanvas::kPoints_PointMode == mode) { 443 SkScalar sx = matrix->get(SkMatrix::kMScaleX); 444 SkScalar sy = matrix->get(SkMatrix::kMScaleY) 561 const SkMatrix* matrix = fMatrix; local 730 const SkMatrix& matrix = *fMatrix; local 876 const SkMatrix* matrix = fMatrix; local 1110 SkMatrix matrix; local 1231 SkMatrix matrix; local 1282 SkMatrix matrix; local 1563 const SkMatrix* matrix = fMatrix; local 1763 const SkMatrix* matrix = fMatrix; local 2604 SkMatrix matrix; local [all...] |
/external/skia/src/pdf/ |
SkPDFDevice.cpp | 188 void updateMatrix(const SkMatrix& matrix); 355 void GraphicStackState::updateMatrix(const SkMatrix& matrix) { 356 if (matrix == currentEntry()->fMatrix) { 368 if (matrix.getType() == SkMatrix::kIdentity_Mask) { 373 SkPDFUtils::AppendTransform(matrix, fContentStream); 374 currentEntry()->fMatrix = matrix; 444 const SkRegion& clipRegion, const SkMatrix& matrix, 449 init(clipStack, clipRegion, matrix, paint, hasText); 466 const SkMatrix& matrix, const SkPaint& paint, bool hasText) { 471 matrix, paint, hasText 717 SkMatrix matrix = *d.fMatrix; local 782 SkMatrix matrix; local 945 SkMatrix matrix; local [all...] |
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_tiled_backing_store.c | 95 Ewk_Tile_Matrix *matrix; member in struct:_Ewk_Tiled_Backing_Store_Data::__anon13335 162 ewk_tile_matrix_updates_process(priv->model.matrix); 171 Ewk_Tile_Unused_Cache *tuc = ewk_tile_matrix_unused_cache_get(priv->model.matrix); 192 (priv->model.matrix, evas, col, row, zoom); 245 ewk_tile_matrix_tile_put(priv->model.matrix, it->tile, last_used); 246 tuc = ewk_tile_matrix_unused_cache_get(priv->model.matrix); 332 Ewk_Tile_Matrix *tm = priv->model.matrix; 371 tuc = ewk_tile_matrix_unused_cache_get(priv->model.matrix); 415 ewk_tile_matrix_updates_process(priv->model.matrix); 538 (priv->model.matrix, m_col, m_row, zoom) [all...] |
/packages/apps/Browser/src/com/android/browser/ |
TabBar.java | 30 import android.graphics.Matrix; 81 private final Matrix mActiveMatrix = new Matrix(); 82 private final Matrix mInactiveMatrix = new Matrix(); 414 // TODO: We should change the matrix/shader only when needed 415 final Matrix matrix = mSelected ? mActiveMatrix : mInactiveMatrix; local 416 matrix.setTranslate(-left, 0.0f); 417 (mSelected ? mActiveShader : mInactiveShader).setLocalMatrix(matrix); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
GLCanvasImpl.java | 25 import android.opengl.Matrix; 104 float matrix[] = mMatrixValues; local 106 Matrix.setIdentityM(matrix, 0); 107 Matrix.translateM(matrix, 0, 0, mHeight, 0); 108 Matrix.scaleM(matrix, 0, 1, -1, 1); 218 Matrix.translateM(mMatrixValues, 0, x, y, z); 222 Matrix.scaleM(mMatrixValues, 0, sx, sy, sz) [all...] |
/development/tools/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmImp.cpp | 2077 GLint matrix[16]; local [all...] |
/external/opencv/cvaux/include/ |
cvaux.h | 73 /* Calculates covariation matrix of a set of arrays */ 78 /* Calculates eigen values and vectors of covariation matrix of a set of 189 coefficient matrix */ 369 // weight_edge - optional matrix of floats, of width and height = graph->total. 374 // If this parameter is not zero structure of the graph is determined from matrix 408 // weight_edge - optional matrix of floats, of width and height = graph->total. 512 float matrix[9]; /* intinsic camera parameters: [ fx 0 cx; 0 fy cy; 0 0 1 ] */ member in struct:CvCamera 516 float transVect[3]; /* rotation matrix and transition vector relatively 524 float fundMatr[9]; /* fundamental matrix */ [all...] |
/external/webkit/Source/WebKit/android/nav/ |
CachedRoot.cpp | 166 const SkMatrix& matrix, const SkPaint& paint) { 169 INHERITED::commonDrawBitmap(bitmap, rect, matrix, paint); 211 const SkMatrix& matrix = getTotalMatrix(); local 212 matrix.mapPoints(upDown, 2); 221 const SkPath& path, const SkMatrix* matrix, 225 INHERITED::drawTextOnPath(text, byteLength, path, matrix, paint); [all...] |
/frameworks/base/include/private/opengles/ |
gl_context.h | 417 matrixx_t matrix; member in struct:android::gl::transform_t 474 matrixf_t matrix; member in struct:android::gl::vp_transform_t
|
/external/webkit/Source/WebCore/rendering/ |
RenderLayer.cpp | 479 TransformationMatrix matrix = *m_transform; local 480 makeMatrixRenderable(matrix, false /* flatten 3d */); 481 return matrix; [all...] |
/frameworks/base/services/java/com/android/server/wm/ |
WindowManagerService.java | 65 import android.graphics.Matrix; 5116 Matrix matrix = new Matrix(); local [all...] |
/prebuilt/common/jfreechart/ |
jfreechart-1.0.9-swt.jar | |
/prebuilt/sdk/14/ |
android.jar | |
/prebuilt/sdk/10/ |
android.jar | |
/prebuilt/sdk/12/ |
android.jar | |
/prebuilt/sdk/4/ |
android.jar | |
/prebuilt/sdk/5/ |
android.jar | |
/prebuilt/sdk/6/ |
android.jar | |