Searched refs:error (Results 1 - 25 of 59) sorted by relevance

123

/cts/tests/tests/net/src/android/net/http/cts/
H A DSslErrorTest.java37 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate);
38 assertTrue(error.hasError(SslError.SSL_EXPIRED));
39 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
43 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate);
44 assertFalse(error.hasError(SslError.SSL_UNTRUSTED));
45 error.addError(SslError.SSL_UNTRUSTED);
46 assertTrue(error.hasError(SslError.SSL_UNTRUSTED));
50 SslError error = new SslError(SslError.SSL_EXPIRED, mCertificate);
51 error.addError(42);
52 assertFalse(error
[all...]
/cts/tests/tests/opengl/src/android/opengl/cts/
H A DAttachShaderTest.java44 * error : GLES20.GL_NO_ERROR
51 int error = mActivity.glGetError();
52 assertEquals(GLES20.GL_NO_ERROR, error);
59 * error : GLES20.GL_INVALID_VALUE
66 int error = mActivity.glGetError();
67 assertTrue(GLES20.GL_NO_ERROR != error);
74 * error : GLES20.GL_INVALID_OPERATION
81 int error = mActivity.glGetError();
82 assertTrue(GLES20.GL_NO_ERROR != error);
90 * error
[all...]
H A DNativeAttachShaderTest.java45 * error : GLES20.GL_NO_ERROR
52 int error = mActivity.mRenderer.mAttachShaderError;
53 assertEquals(GLES20.GL_NO_ERROR, error);
60 * error : GLES20.GL_INVALID_VALUE
66 int error = mActivity.mRenderer.mAttachShaderError;
67 assertTrue(GLES20.GL_NO_ERROR != error);
74 * error : GLES20.GL_INVALID_OPERATION
80 int error = mActivity.mRenderer.mAttachShaderError;
81 assertTrue(GLES20.GL_NO_ERROR != error);
88 * error
[all...]
H A DProgramTest.java40 int error = mActivity.glGetError();
41 assertEquals(GLES20.GL_INVALID_OPERATION, error);
/cts/tests/tests/opengl/libopengltest/
H A Dattach_shader_eight.cpp31 GLint error = glGetError(); local
32 Data data = {error, -9 , -1};
H A Dattach_shader_nine.cpp30 GLint error = glGetError(); local
31 Data data = {error, -9, -1};
H A Dattach_shader_two.cpp42 GLint error = glGetError(); local
43 LOGI("Error %d\n", error);
44 Data data = {error, count, -1};
H A Dattach_shader_eleven.cpp41 GLint error = glGetError(); local
42 Data data = {error, count, -1};
H A Dattach_shader_four.cpp36 GLint error = glGetError(); local
37 Data data = {error, count, -1};
H A Dattach_shader_seven.cpp34 GLint error = glGetError(); local
35 Data data = {error, -9 , -1};
H A Dattach_shader_six.cpp34 GLint error = glGetError(); local
35 Data data = {error, -9 , -1};
H A Dattach_shader_three.cpp40 GLint error = glGetError(); local
41 Data data = {error, -9, -1};
H A Dattach_shader_five.cpp40 GLint error = glGetError(); local
41 Data data = {error, count, -1};
H A Dattach_shader_one.cpp57 GLint error = glGetError(); local
58 Data data = {error, count, -1};
H A Dattach_shader_ten.cpp40 GLint error = glGetError(); local
41 Data data = {error, count, -1};
H A Dcolor_one.cpp81 GLint error = glGetError(); local
126 for (GLint error = glGetError(); error; error
128 LOGI("after %s() glError (0x%x)\n", op, error);
/cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
H A Drun.js51 function PrintError(name, error) {
52 PrintResult(name, error);
/cts/tools/dasm/src/java_cup/
H A Dsym.java28 static final int error = 1; field in class:sym
/cts/tests/tests/view/src/android/view/cts/
H A DVelocityTrackerTest.java175 estimatedVx, error(mVx, estimatedVx) * 100.0f,
176 estimatedVy, error(mVy, estimatedVy) * 100.0f));
184 float errorVx = error(mVx, estimatedVx);
185 float errorVy = error(mVy, estimatedVy);
195 private static float error(float expected, float actual) { method in class:VelocityTrackerTest
/cts/tests/tests/effect/src/android/effect/cts/
H A DGLEnv.java103 int error = egl.eglGetError();
104 if (error != EGL10.EGL_SUCCESS) {
105 throw new RuntimeException("Operation '" + operation + "' caused EGL error: " + error);
/cts/tools/dasm/src/dasm/
H A Dsym.java63 static final int error = 1; field in class:sym
/cts/tests/tests/textureview/src/android/textureview/cts/
H A DGLProducerThread.java119 int error = mEgl.eglGetError();
120 if (error == EGL10.EGL_BAD_NATIVE_WINDOW) {
124 + GLUtils.getEGLErrorString(error));
/cts/tests/core/libcore/com/
H A DAndroid.mk18 $(error BUILD_CTSCORE_PACKAGE must be defined)
/cts/tests/core/libcore/dalvik/
H A DAndroid.mk18 $(error BUILD_CTSCORE_PACKAGE must be defined)
/cts/tests/core/libcore/libcore/
H A DAndroid.mk18 $(error BUILD_CTSCORE_PACKAGE must be defined)

Completed in 380 milliseconds

123