Searched defs:angle (Results 1 - 25 of 200) sorted by relevance

12345678

/external/chromium_org/third_party/freetype/include/freetype/
H A Dfttrigon.h48 * This type is used to model angle values in FreeType. Note that the
49 * angle is a 16.16 fixed-point value expressed in degrees.
61 * The angle pi expressed in @FT_Angle units.
73 * The angle 2*pi expressed in @FT_Angle units.
85 * The angle pi/2 expressed in @FT_Angle units.
97 * The angle pi/4 expressed in @FT_Angle units.
109 * Return the sinus of a given angle in fixed-point format.
112 * angle ::
113 * The input angle.
119 * If you need both the sinus and cosinus for a given angle, us
124 FT_Sin( FT_Angle angle ); variable
148 FT_Cos( FT_Angle angle ); variable
168 FT_Tan( FT_Angle angle ); variable
[all...]
/external/freetype/include/
H A Dfttrigon.h48 * This type is used to model angle values in FreeType. Note that the
49 * angle is a 16.16 fixed-point value expressed in degrees.
61 * The angle pi expressed in @FT_Angle units.
73 * The angle 2*pi expressed in @FT_Angle units.
85 * The angle pi/2 expressed in @FT_Angle units.
97 * The angle pi/4 expressed in @FT_Angle units.
109 * Return the sinus of a given angle in fixed-point format.
112 * angle ::
113 * The input angle.
119 * If you need both the sinus and cosinus for a given angle, us
124 FT_Sin( FT_Angle angle ); variable
148 FT_Cos( FT_Angle angle ); variable
168 FT_Tan( FT_Angle angle ); variable
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfttrigon.h48 * This type is used to model angle values in FreeType. Note that the
49 * angle is a 16.16 fixed-point value expressed in degrees.
61 * The angle pi expressed in @FT_Angle units.
73 * The angle 2*pi expressed in @FT_Angle units.
85 * The angle pi/2 expressed in @FT_Angle units.
97 * The angle pi/4 expressed in @FT_Angle units.
109 * Return the sinus of a given angle in fixed-point format.
112 * angle ::
113 * The input angle.
119 * If you need both the sinus and cosinus for a given angle, us
124 FT_Sin( FT_Angle angle ); variable
148 FT_Cos( FT_Angle angle ); variable
168 FT_Tan( FT_Angle angle ); variable
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfttrigon.h48 * This type is used to model angle values in FreeType. Note that the
49 * angle is a 16.16 fixed-point value expressed in degrees.
61 * The angle pi expressed in @FT_Angle units.
73 * The angle 2*pi expressed in @FT_Angle units.
85 * The angle pi/2 expressed in @FT_Angle units.
97 * The angle pi/4 expressed in @FT_Angle units.
109 * Return the sinus of a given angle in fixed-point format.
112 * angle ::
113 * The input angle.
119 * If you need both the sinus and cosinus for a given angle, us
124 FT_Sin( FT_Angle angle ); variable
148 FT_Cos( FT_Angle angle ); variable
168 FT_Tan( FT_Angle angle ); variable
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_base_unittest.cc15 gfx::Display CreateDisplay(int width, int height, int angle) { argument
17 display.SetRotationAsDegree(angle);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegArcAbs.h32 static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
34 return adoptRef(new SVGPathSegArcAbs(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
38 SVGPathSegArcAbs(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
39 : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { }
H A DSVGPathSegArcRel.h32 static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
34 return adoptRef(new SVGPathSegArcRel(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
38 SVGPathSegArcRel(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
39 : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { }
H A DSVGTransformTearOff.h63 float angle() { return target()->angle(); } function in class:blink::FINAL
68 void setRotate(float angle, float cx, float cy, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DCone.cpp59 double angle = 180.0 * acos(dotProduct) / piDouble; local
60 double absAngle = fabs(angle);
62 // Divide by 2.0 here since API is entire angle (not half-angle)
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafangles.c93 * The trick here is to realize that we don't need a very accurate angle
95 * only compare the sign of angle differences, or check whether its
108 AF_Angle angle;
121 angle = 0;
124 angle = ( AF_ANGLE_PI2 * dy ) / ( ax + ay );
127 if ( angle >= 0 )
128 angle = AF_ANGLE_PI - angle;
130 angle = -AF_ANGLE_PI - angle;
187 AF_Angle angle; local
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DSampleSpiral.cpp46 SkScalar angle = t * step; local
47 x = (20 + SkIntToScalar(i) * 5) * SkScalarSinCos(angle, &y);
H A DSampleStringArt.cpp14 // generating an angle from 0 to 1.
31 SkScalar angle = fAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI); variable
35 SkScalar step = angle;
45 length += SkScalarDiv(angle, SkScalarHalf(SK_ScalarPI));
46 step += angle;
/external/eigen/demos/opengl/
H A Dtrackball.cpp28 float angle = 2. * acos(cos_angle); local
30 mpCamera->rotateAroundTarget(Quaternionf(AngleAxisf(angle, axis)));
32 mpCamera->localRotate(Quaternionf(AngleAxisf(-angle, axis)));
/external/freetype/src/autofit/
H A Dafangles.c93 * The trick here is to realize that we don't need a very accurate angle
95 * only compare the sign of angle differences, or check whether its
108 AF_Angle angle;
121 angle = 0;
124 angle = ( AF_ANGLE_PI2 * dy ) / ( ax + ay );
127 if ( angle >= 0 )
128 angle = AF_ANGLE_PI - angle;
130 angle = -AF_ANGLE_PI - angle;
187 AF_Angle angle; local
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowFloatMath.java37 public static float sin(float angle) { argument
38 return (float) Math.sin(angle);
42 public static float cos(float angle) { argument
43 return (float) Math.cos(angle);
/external/skia/samplecode/
H A DSampleSpiral.cpp46 SkScalar angle = t * step; local
47 x = (20 + SkIntToScalar(i) * 5) * SkScalarSinCos(angle, &y);
H A DSampleStringArt.cpp14 // generating an angle from 0 to 1.
31 SkScalar angle = fAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI); variable
35 SkScalar step = angle;
45 length += SkScalarDiv(angle, SkScalarHalf(SK_ScalarPI));
46 step += angle;
/external/chromium_org/content/browser/screen_orientation/
H A Dscreen_orientation_browsertest.cc49 void SendFakeScreenOrientation(unsigned angle, const std::string& strType) { argument
54 screen_info.orientationAngle = angle;
80 int angle; local
82 "screen.orientation.angle")->GetAsInteger(&angle);
83 return angle;
108 int angle; local
110 "window.orientation")->GetAsInteger(&angle);
111 return angle;
146 int angle local
174 int angle = GetWindowOrientationAngle(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DRotateTransformOperation.h34 static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type) argument
36 return adoptRef(new RotateTransformOperation(0, 0, 1, angle, type));
39 static PassRefPtr<RotateTransformOperation> create(double x, double y, double z, double angle, OperationType type) argument
41 return adoptRef(new RotateTransformOperation(x, y, z, angle, type));
47 double angle() const { return m_angle; } function in class:blink::RotateTransformOperation
71 RotateTransformOperation(double x, double y, double z, double angle, OperationType type) argument
75 , m_angle(angle)
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_transform.c124 void vegaRotate(VGfloat angle) argument
128 matrix_rotate(dst, angle);
/external/chromium_org/third_party/skia/gm/
H A Dstringart.cpp39 SkScalar angle = kAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI); local
43 SkScalar step = angle;
53 length += SkScalarDiv(angle, SkScalarHalf(SK_ScalarPI));
54 step += angle;
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_transform.c124 void vegaRotate(VGfloat angle) argument
128 matrix_rotate(dst, angle);
/external/skia/gm/
H A Dstringart.cpp39 SkScalar angle = kAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI); local
43 SkScalar step = angle;
53 length += SkScalarDiv(angle, SkScalarHalf(SK_ScalarPI));
54 step += angle;
/external/chromium_org/base/
H A Dos_compat_android.cc64 // c = cos(angle);
65 // s = sin(angle);
70 // sincos(angle, &s, &c);
94 void sincos(double angle, double* s, double *c) { argument
95 *c = cos(angle);
96 *s = sin(angle);
100 void sincosf(float angle, float* s, float* c) { argument
101 *c = cosf(angle);
102 *s = sinf(angle);
/external/chromium_org/cc/animation/
H A Dtransform_operation.h54 SkMScalar angle; member in struct:cc::TransformOperation::__anon2636::__anon2640

Completed in 5124 milliseconds

12345678