Searched refs:precision (Results 1 - 18 of 18) sorted by relevance

/frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/action/
H A DTap.java35 float[] precision) {
39 checkNotNull(precision);
40 DownResultHolder res = MotionEvents.sendDown(uiController, coordinates, precision);
56 float[] precision) {
59 checkNotNull(precision);
61 MotionEvent downEvent = MotionEvents.sendDown(uiController, coordinates, precision).down;
83 float[] precision) {
86 checkNotNull(precision);
87 Tapper.Status stat = SINGLE.sendTap(uiController, coordinates, precision);
92 Tapper.Status secondStat = SINGLE.sendTap(uiController, coordinates, precision);
[all...]
H A DSwiper.java49 * @param precision a float[] with x and y values of precision of the tap.
53 float[] endCoordinates, float[] precision);
52 sendSwipe(UiController uiController, float[] startCoordinates, float[] endCoordinates, float[] precision) argument
H A DTapper.java50 * @param precision a float[] with x and y values of precision of the tap.
53 public Status sendTap(UiController uiController, float[] coordinates, float[] precision); argument
H A DSwipe.java37 float[] endCoordinates, float[] precision) {
38 return sendLinearSwipe(uiController, startCoordinates, endCoordinates, precision,
47 float[] endCoordinates, float[] precision) {
48 return sendLinearSwipe(uiController, startCoordinates, endCoordinates, precision,
79 float[] endCoordinates, float[] precision, int duration) {
83 checkNotNull(precision);
88 MotionEvent downEvent = MotionEvents.sendDown(uiController, steps[0], precision).down;
78 sendLinearSwipe(UiController uiController, float[] startCoordinates, float[] endCoordinates, float[] precision, int duration) argument
H A DGeneralSwipeAction.java64 float[] precision = precisionDescriber.describePrecision();
70 status = swiper.sendSwipe(uiController, startCoordinates, endCoordinates, precision);
88 "Couldn't swipe from: %s,%s to: %s,%s precision: %s, %s . Swiper: %s "
89 + "start coordinate provider: %s precision describer: %s. Tried %s times",
94 precision[0],
95 precision[1],
H A DGeneralClickAction.java71 float[] precision = precisionDescriber.describePrecision();
98 status = tapper.sendTap(uiController, coordinates, precision);
123 + "click at: %s,%s precision: %s, %s . Tapper: %s coordinate provider: %s precision " +
125 precision[0], precision[1], tapper, coordinatesProvider, precisionDescriber, loopCount,
H A DMotionEvents.java47 UiController uiController, float[] coordinates, float[] precision) {
50 checkNotNull(precision);
69 precision[0], // xPrecision
70 precision[1], // yPrecision
46 sendDown( UiController uiController, float[] coordinates, float[] precision) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DAutoFixFilter.java108 "precision mediump float;\n" +
201 long precision = (256l * 256l - 1l);
205 long temp = normal_cdf[i] * precision / histDim;
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A Dchecks.spec66 glGetShaderPrecisionFormat check range 1 check precision 1
H A DGLES20.spec71 void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision )
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java840 public FasterStringBuilder append(float value, int precision) { argument
842 for (int i = 0; i < precision; i++) {
849 if (precision != 0) {
853 append((int) (value * scale), precision);
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java1079 // C function void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision )
1086 int[] precision,
1090 // C function void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision )
1096 java.nio.IntBuffer precision
1081 glGetShaderPrecisionFormat( int shadertype, int precisiontype, int[] range, int rangeOffset, int[] precision, int precisionOffset ) argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES20.cpp2990 /* void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision ) */
3002 GLint *precision = (GLint *) 0; local
3030 _exceptionMessage = "precision == null";
3048 precision = precision_base + precisionOffset;
3054 (GLint *)precision
3071 /* void glGetShaderPrecisionFormat ( GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision ) */
3085 GLint *precision = (GLint *) 0; local
3094 precision = (GLint *)getPointer(_env, precision_buf, &_precisionArray, &_precisionRemaining, &_precisionBufferOffset);
3105 if (precision == NULL) {
3107 precision
[all...]
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h446 GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
/frameworks/native/opengl/include/GLES3/
H A Dgl3.h446 GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
H A Dgl31.h446 GL_APICALL void GL_APIENTRY glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.h93 void GLTrace_glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision);
H A Dgltrace_api.cpp2701 void GLTrace_glGetShaderPrecisionFormat(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision) { argument
2725 // copy argument precision
2729 arg_precision->add_int64value((uintptr_t)precision);
2734 glContext->hooks->gl.glGetShaderPrecisionFormat(shadertype, precisiontype, range, precision);
2740 (void *) precision,
[all...]

Completed in 402 milliseconds