/external/chromium_org/third_party/angle/src/compiler/translator/ |
InitializeGlobals.h | 2 // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
|
InitializeParseContext.h | 2 // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
|
QualifierAlive.h | 2 // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved.
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
precompiled.cpp | 2 // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
|
/external/chromium_org/third_party/angle/src/third_party/compiler/ |
README.angle | 1 Name: ANGLE array bounds clamper from WebKit
|
/external/chromium_org/third_party/angle/tests/compiler_tests/ |
compiler_tests.gypi | 1 # Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
|
/external/chromium_org/third_party/angle/tests/preprocessor_tests/ |
preprocessor_test_main.cpp | 2 // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
|
preprocessor_tests.gypi | 1 # Copyright (c) 2014 The ANGLE Project Authors. All rights reserved.
|
/external/chromium_org/third_party/angle/tests/standalone_tests/ |
standalone_test_main.cpp | 2 // Copyright (c) 2013 The ANGLE Project Authors. All rights reserved.
|
/external/chromium_org/third_party/skia/gm/ |
stringart.cpp | 39 SkScalar angle = kAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI); local 43 SkScalar step = angle; 53 length += SkScalarDiv(angle, SkScalarHalf(SK_ScalarPI)); 54 step += angle;
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowFloatMath.java | 37 public static float sin(float angle) { 38 return (float) Math.sin(angle); 42 public static float cos(float angle) { 43 return (float) Math.cos(angle);
|
/external/skia/gm/ |
stringart.cpp | 39 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/third_party/WebKit/Source/platform/transforms/ |
RotateTransformOperation.h | 34 static PassRefPtr<RotateTransformOperation> create(double angle, OperationType type) 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) 41 return adoptRef(new RotateTransformOperation(x, y, z, angle, type)); 47 double angle() const { return m_angle; } function in class:WebCore::RotateTransformOperation 73 RotateTransformOperation(double x, double y, double z, double angle, OperationType type) 77 , m_angle(angle)
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGPathSegArc.h | 30 SVGPathSegArc(SVGPathElement* element, SVGPathSegRole role, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) 36 , m_angle(angle) 70 float angle() const { return m_angle; } function in class:WebCore::SVGPathSegArc 71 void setAngle(float angle) 73 m_angle = angle;
|
SVGTransformDistance.cpp | 38 SVGTransformDistance::SVGTransformDistance(SVGTransformType transformType, float angle, float cx, float cy, const AffineTransform& transform) 40 , m_angle(angle) 65 m_angle = toSVGTransform->angle() - fromSVGTransform->angle(); 83 m_angle = toSVGTransform->angle() - fromSVGTransform->angle(); 128 transform->setRotate(first->angle() + second->angle() * repeatCount, first->rotationCenter().x() + second->rotationCenter().x() * repeatCount, first->rotationCenter().y() + second->rotationCenter().y() * repeatCount); 145 transform->setSkewX(first->angle() + second->angle() * repeatCount) [all...] |
/external/chromium_org/third_party/skia/samplecode/ |
SampleStringArt.cpp | 14 // 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/skia/samplecode/ |
SampleStringArt.cpp | 14 // 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;
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Layer.java | 45 public void setAngle(float angle) { 46 // normalize the angle 48 while (angle >= twopi) angle -= twopi; 49 while (angle < 0f) angle += twopi; 50 // mAngle = angle; 52 float sin = (float)Math.sin(angle); 53 float cos = (float)Math.cos(angle);
|
/external/eigen/unsupported/test/ |
matrix_exponential.cpp | 30 T angle; local 35 angle = static_cast<T>(pow(10, i / 5. - 2)); 36 B << std::cos(angle), std::sin(angle), -std::sin(angle), std::cos(angle); 38 C = (angle*A).matrixFunction(expfn); 42 C = (angle*A).exp(); 53 T angle, ch, sh; local 57 angle = static_cast<T>((i-10) / 2.0) [all...] |
/external/chromium_org/third_party/skia/experimental/Intersection/ |
ShapeOps.cpp | 18 // OPTIMIZATION: Probably, the walked winding should be rolled into the angle structure 27 SkTDArray<Angle> angles; 30 Angle* last = angles.end() - 1; 43 SkTDArray<Angle*> sorted; 52 // find first angle, initialize winding to computed fWindSum 54 const Angle* angle; local 56 angle = sorted[++firstIndex]; 57 segment = angle->segment(); 58 } while (segment->windSum(angle) == SK_MinS32) [all...] |
/external/skia/experimental/Intersection/ |
ShapeOps.cpp | 18 // OPTIMIZATION: Probably, the walked winding should be rolled into the angle structure 27 SkTDArray<Angle> angles; 30 Angle* last = angles.end() - 1; 43 SkTDArray<Angle*> sorted; 52 // find first angle, initialize winding to computed fWindSum 54 const Angle* angle; local 56 angle = sorted[++firstIndex]; 57 segment = angle->segment(); 58 } while (segment->windSum(angle) == SK_MinS32) [all...] |
/external/chromium_org/ash/wm/maximize_mode/ |
maximize_mode_controller.cc | 28 // The hinge angle at which to enter maximize mode. 31 // The angle at which to exit maximize mode, this is specifically less than the 32 // angle to enter maximize mode to prevent rapid toggling when near the angle. 44 // compute the hinge angle reliably and must turn ignore accelerometer readings. 46 // detect hinge angle. 50 // which to detect hinge angle and screen rotation. 54 // which to detect hinge angle and screen rotation. These accelerometers are 59 // The angle which the screen has to be rotated past before the display will 66 // sine of the rise angle required, with the current value requiring at least 84 float angle = AngleBetweenVectorsInDegrees(base, other); local 263 float angle = ClockwiseAngleBetweenVectorsInDegrees(base_flattened, local 328 float angle = ClockwiseAngleBetweenVectorsInDegrees(rotation_reference, local [all...] |
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ScreenOrientationIntegrationTest.java | 109 // The target angle for that test should depend on the current orientation. 110 int angle = getWindowOrientation() == 0 ? 90 : 0; local 112 updateScreenOrientationForContent(angle); 113 assertEquals(angle, getWindowOrientation()); 116 updateScreenOrientationForContent(angle); 117 assertEquals(angle, getWindowOrientation()); 120 updateScreenOrientationForContent(angle); 121 assertEquals(angle, getWindowOrientation());
|
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
FloatMath_Delegate.java | 64 * @param angle to compute the cosine of, in radians 65 * @return the sine of angle 68 /*package*/ static float sin(float angle) { 69 return (float)Math.sin(angle); 75 * @param angle to compute the cosine of, in radians 76 * @return the cosine of angle 79 /*package*/ static float cos(float angle) { 80 return (float)Math.cos(angle);
|
/external/chromium_org/chrome/ |
gl_tests.isolate | 6 'angle.isolate',
|