Home
last modified time | relevance | path

Searched refs:degrees (Results 1 – 25 of 26) sorted by relevance

12

/external/skia/src/utils/
DSkColorMatrix.cpp26 void SkColorMatrix::setRotate(Axis axis, SkScalar degrees) in setRotate() argument
30 S = SkScalarSinCos(SkDegreesToRadians(degrees), &C); in setRotate()
53 void SkColorMatrix::preRotate(Axis axis, SkScalar degrees) in preRotate() argument
56 tmp.setRotate(axis, degrees); in preRotate()
60 void SkColorMatrix::postRotate(Axis axis, SkScalar degrees) in postRotate() argument
63 tmp.setRotate(axis, degrees); in postRotate()
DSkNWayCanvas.cpp93 bool SkNWayCanvas::rotate(SkScalar degrees) { in rotate() argument
96 iter->rotate(degrees); in rotate()
98 return this->INHERITED::rotate(degrees); in rotate()
DSkProxyCanvas.cpp50 bool SkProxyCanvas::rotate(SkScalar degrees) { in rotate() argument
51 return fProxy->rotate(degrees); in rotate()
DSkDumpCanvas.cpp202 bool SkDumpCanvas::rotate(SkScalar degrees) { in rotate() argument
203 this->dump(kMatrix_Verb, NULL, "rotate(%g)", SkScalarToFloat(degrees)); in rotate()
204 return this->INHERITED::rotate(degrees); in rotate()
/external/skia/include/effects/
DSkColorMatrix.h39 void setRotate(Axis, SkScalar degrees);
41 void preRotate(Axis, SkScalar degrees);
42 void postRotate(Axis, SkScalar degrees);
/external/webkit/WebKit/android/plugins/
DANPMatrixInterface.cpp100 static void anp_preRotate(ANPMatrix* matrix, float degrees) { in anp_preRotate() argument
101 matrix->preRotate(SkFloatToScalar(degrees)); in anp_preRotate()
104 static void anp_postRotate(ANPMatrix* matrix, float degrees) { in anp_postRotate() argument
105 matrix->postRotate(SkFloatToScalar(degrees)); in anp_postRotate()
Dandroid_npapi.h263 void (*preRotate)(ANPMatrix*, float degrees);
264 void (*postRotate)(ANPMatrix*, float degrees);
587 void (*rotate)(ANPCanvas*, float degrees);
DANPCanvasInterface.cpp55 static void anp_rotate(ANPCanvas* canvas, float degrees) { in anp_rotate() argument
56 canvas->skcanvas->rotate(SkFloatToScalar(degrees)); in anp_rotate()
/external/skia/include/core/
DSkMatrix.h139 void setRotate(SkScalar degrees, SkScalar px, SkScalar py);
142 void setRotate(SkScalar degrees);
181 bool preRotate(SkScalar degrees, SkScalar px, SkScalar py);
185 bool preRotate(SkScalar degrees);
218 bool postRotate(SkScalar degrees, SkScalar px, SkScalar py);
222 bool postRotate(SkScalar degrees);
DSkScalar.h153 #define SkDegreesToRadians(degrees) ((degrees) * (SK_ScalarPI / 180)) argument
215 #define SkDegreesToRadians(degrees) SkFractMul(degrees, SK_FractPIOver180) argument
DSkCanvas.h196 virtual bool rotate(SkScalar degrees);
/external/skia/src/animator/
DSkDrawMatrix.h53 void rotate(SkScalar degrees, SkPoint& center) { in rotate() argument
54 fMatrix.preRotate(degrees, center.fX, center.fY); in rotate()
DSkMatrixParts.cpp48 SK_MEMBER(degrees, Float)
55 SkRotate::SkRotate() : degrees(0) { in SkRotate()
60 fMatrix->rotate(degrees, center); in add()
DSkMatrixParts.h51 SkScalar degrees; variable
/external/skia/src/core/
DSkMatrix.cpp302 void SkMatrix::setRotate(SkScalar degrees, SkScalar px, SkScalar py) { in setRotate() argument
304 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV); in setRotate()
308 void SkMatrix::setRotate(SkScalar degrees) { in setRotate() argument
310 sinV = SkScalarSinCos(SkDegreesToRadians(degrees), &cosV); in setRotate()
314 bool SkMatrix::preRotate(SkScalar degrees, SkScalar px, SkScalar py) { in preRotate() argument
316 m.setRotate(degrees, px, py); in preRotate()
320 bool SkMatrix::preRotate(SkScalar degrees) { in preRotate() argument
322 m.setRotate(degrees); in preRotate()
326 bool SkMatrix::postRotate(SkScalar degrees, SkScalar px, SkScalar py) { in postRotate() argument
328 m.setRotate(degrees, px, py); in postRotate()
[all …]
DSkPictureRecord.cpp94 bool SkPictureRecord::rotate(SkScalar degrees) { in rotate() argument
96 addScalar(degrees); in rotate()
98 return this->INHERITED::rotate(degrees); in rotate()
DSkPictureRecord.h23 virtual bool rotate(SkScalar degrees);
DSkCanvas.cpp781 bool SkCanvas::rotate(SkScalar degrees) { in rotate() argument
784 return fMCRec->fMatrix->preRotate(degrees); in rotate()
/external/skia/include/utils/
DSkNWayCanvas.h25 virtual bool rotate(SkScalar degrees);
DSkProxyCanvas.h36 virtual bool rotate(SkScalar degrees);
DSkDumpCanvas.h63 virtual bool rotate(SkScalar degrees);
/external/jpeg/
Dusage.doc437 -rotate 90 Rotate image 90 degrees clockwise.
438 -rotate 180 Rotate image 180 degrees.
439 -rotate 270 Rotate image 270 degrees clockwise (or 90 ccw).
/external/libffi/
Dtexinfo.tex2312 % @textdegree - the normal degrees sign.
3673 \def\textdegree{degrees}%
/external/srec/config/en.us/dictionary/
Dlarge.ok7338 degrees d6grEz
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-1618995 Helper functions for turn -> degrees.

12