Searched refs:ny (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/text/method/
H A DTouch.java151 int ny = widget.getScrollY() + (int) dy;
156 ny = Math.min(ny, layout.getHeight() - (widget.getHeight() - padding));
157 ny = Math.max(ny, 0);
162 scrollTo(widget, layout, nx, ny);
/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java300 float ny = lstPointY + ratio * deltaY;
303 vector[index] = ny;
306 lstPointY = ny;
/frameworks/base/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec70 void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
71 void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
H A DGLES11Ext.spec39 void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java945 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
949 float ny,
953 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
957 int ny,
947 glNormal3f( float nx, float ny, float nz ) argument
955 glNormal3x( int nx, int ny, int nz ) argument
H A DGLES11Ext.java570 // C function void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz )
574 int ny,
572 glNormal3xOES( int nx, int ny, int nz ) argument
H A DGLErrorWrapper.java589 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 DGLLogWrapper.java2124 public void glNormal3f(float nx, float ny, float nz) { argument
2127 arg("ny", ny);
2131 mgl.glNormal3f(nx, ny, nz);
2135 public void glNormal3x(int nx, int ny, int nz) { argument
2138 arg("ny", ny);
2142 mgl.glNormal3x(nx, ny, nz);
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java729 float ny,
735 int ny,
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 Dgl.h618 GL_API void GL_APIENTRY glNormal3f (GLfloat nx, GLfloat ny, GLfloat nz);
705 GL_API void GL_APIENTRY glNormal3x (GLfixed nx, GLfixed ny, GLfixed nz);
H A Dglext.h554 GL_API void GL_APIENTRY glNormal3xOES (GLfixed nx, GLfixed ny, GLfixed nz);
594 typedef void (GL_APIENTRYP PFNGLNORMAL3XOESPROC) (GLfixed nx, GLfixed ny, GLfixed nz);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java753 // C function void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz )
757 float ny,
761 // C function void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz )
765 int ny,
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 Dgl.h542 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 Dandroid_opengl_GLES10.cpp2735 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2738 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2741 (GLfloat)ny,
2746 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2749 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2752 (GLfixed)ny,
2737 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2748 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dandroid_opengl_GLES11Ext.cpp1321 /* void glNormal3xOES ( GLfixed nx, GLfixed ny, GLfixed nz ) */
1324 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
1327 (GLfixed)ny,
1323 android_glNormal3xOES__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
H A Dcom_google_android_gles_jni_GLImpl.cpp2861 /* void glNormal3f ( GLfloat nx, GLfloat ny, GLfloat nz ) */
2864 (JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) {
2867 (GLfloat)ny,
2872 /* void glNormal3x ( GLfixed nx, GLfixed ny, GLfixed nz ) */
2875 (JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) {
2878 (GLfixed)ny,
2863 android_glNormal3f__FFF(JNIEnv *_env, jobject _this, jfloat nx, jfloat ny, jfloat nz) argument
2874 android_glNormal3x__III(JNIEnv *_env, jobject _this, jint nx, jint ny, jint nz) argument
/frameworks/base/opengl/libs/
H A Dglesv2dbg_functions.h261 GL_ENTRY(void, glNormal3f, GLfloat nx, GLfloat ny, GLfloat nz)
262 GL_ENTRY(void, glNormal3x, GLfixed nx, GLfixed ny, GLfixed nz)
263 GL_ENTRY(void, glNormal3xOES, GLfixed nx, GLfixed ny, GLfixed nz)

Completed in 273 milliseconds