/frameworks/base/libs/rs/java/Film/src/com/android/film/ |
H A D | FilmStripMesh.java | 31 float nx; field in class:FilmStripMesh.Vertex 41 nx = 0; 58 nx = _x; 77 nx = dx * dz; 81 len = (float)java.lang.Math.sqrt(nx*nx + ny*ny + nz*nz); 82 nx /= len; 224 t.nx = (vtx[ct*2+3] - vtx[ct*2 +1]); 226 float len = (float)java.lang.Math.sqrt(t.nx * t.nx [all...] |
/frameworks/base/awt/java/awt/geom/ |
H A D | Arc2D.java | 1054 double nx = (px - getX()) / getWidth() - 0.5; 1057 if ((nx * nx + ny * ny) > 0.25) { 1067 boolean containsAngle = containsAngle(Math.toDegrees(-Math.atan2(ny, nx))); 1148 double nx = cx < rx ? rx : (cx > rx + rw ? rx + rw : cx); 1150 return contains(nx, ny);
|
H A D | Ellipse2D.java | 436 double nx = cx < rx1 ? rx1 : (cx > rx2 ? rx2 : cx); 439 return contains(nx, ny);
|
H A D | RoundRectangle2D.java | 612 double nx = cx < rx1 ? rx1 : (cx > rx2 ? rx2 : cx); 615 return contains(nx, ny);
|
/frameworks/base/core/java/android/text/method/ |
H A D | Touch.java | 161 int nx = widget.getScrollX() + (int) dx; 175 scrollTo(widget, layout, nx, ny);
|
/frameworks/base/core/java/android/gesture/ |
H A D | GestureUtils.java | 299 float nx = lstPointX + ratio * deltaX; 301 vector[index] = nx; 305 lstPointX = nx;
|
/frameworks/base/opengl/tools/glgen/specs/gles11/ |
H A D | GLES10.spec | 70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) 71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
|
H A D | GLES11Ext.spec | 39 void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
|
/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES10.java | 929 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) 932 float nx, 937 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) 940 int nx, 931 glNormal3f( float nx, float ny, float nz ) argument 939 glNormal3x( int nx, int ny, int nz ) argument
|
H A D | GLErrorWrapper.java | 589 public void glNormal3f(float nx, float ny, float nz) { argument 591 mgl.glNormal3f(nx, ny, nz); 595 public void glNormal3x(int nx, int ny, int nz) { argument 597 mgl.glNormal3x(nx, ny, nz);
|
H A D | GLES11Ext.java | 566 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) 569 int nx, 568 glNormal3xOES( int nx, int ny, int nz ) argument
|
H A D | GLLogWrapper.java | 2124 public void glNormal3f(float nx, float ny, float nz) { argument 2126 arg("nx", nx); 2131 mgl.glNormal3f(nx, ny, nz); 2135 public void glNormal3x(int nx, int ny, int nz) { argument 2137 arg("nx", nx); 2142 mgl.glNormal3x(nx, ny, nz);
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
H A D | GL10.java | 728 float nx, 734 int nx, 727 glNormal3f( float nx, float ny, float nz ) argument 733 glNormal3x( int nx, int ny, int nz ) argument
|
/frameworks/base/opengl/include/GLES/ |
H A D | gl.h | 617 GL_API void GL_APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz); 704 GL_API void GL_APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
|
H A D | glext.h | 360 GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz); 400 typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
H A D | GLImpl.java | 753 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) 756 float nx, 761 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) 764 int nx, 755 glNormal3f( float nx, float ny, float nz ) argument 763 glNormal3x( int nx, int ny, int nz ) argument
|
/frameworks/base/opengl/tests/angeles/include/GLES/ |
H A D | gl.h | 542 GLAPI void APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz); 543 GLAPI void APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
|
/frameworks/base/core/jni/ |
H A D | android_opengl_GLES10.cpp | 2763 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */ 2766 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) { 2768 (GLfloat)nx, 2774 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */ 2777 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) { 2779 (GLfixed)nx, 2765 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument 2776 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
|
H A D | android_opengl_GLES11Ext.cpp | 1343 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */ 1346 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) { 1348 (GLfixed)nx, 1345 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
|
H A D | com_google_android_gles_jni_GLImpl.cpp | 2889 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */ 2892 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) { 2894 (GLfloat)nx, 2900 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */ 2903 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) { 2905 (GLfixed)nx, 2891 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument 2902 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
|
/frameworks/base/awt/java/awt/ |
H A D | BasicStroke.java | 1917 double nx = x1 + x3 - x2 - x2; 1920 int n = (int)(1 + Math.sqrt(0.75 * (Math.abs(nx) + Math.abs(ny)) * FLATNESS));
|