/cts/apps/CameraITS/pymodules/its/ |
device.py | 15 import its.error namespace 100 except socket.error: 102 raise its.error.Error(self.device_id, 110 output, error = proc.communicate() 142 output, error = proc.communicate() 144 # Check if there is no error 145 if error is None or error.find("error") < 0 [all...] |
image.py | 18 import its.error namespace 82 raise its.error.Error('Invalid format %s' % (cap["format"])) 98 raise its.error.Error('Invalid raw-10 buffer width') 117 raise its.error.Error('Invalid raw-10 buffer width') 148 raise its.error.Error('Invalid raw-12 buffer width') 167 raise its.error.Error('Invalid raw-12 buffer width' [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
CtsMediaOutputSurface.java | 317 int error; local 318 if ((error = EGL14.eglGetError()) != EGL14.EGL_SUCCESS) { 319 throw new RuntimeException(msg + ": EGL error: 0x" + Integer.toHexString(error));
|
/cts/tests/tests/graphics/src/android/opengl/cts/ |
EglConfigGLSurfaceView.java | 209 int error; local 210 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { 211 Log.e(TAG, op + ": glError " + error); 212 throw new RuntimeException(op + ": glError " + error);
|
/cts/tests/tests/media/src/android/media/cts/ |
InputSurface.java | 219 int error; local 220 if ((error = EGL14.eglGetError()) != EGL14.EGL_SUCCESS) { 221 throw new RuntimeException(msg + ": EGL error: 0x" + Integer.toHexString(error));
|
OutputSurface.java | 313 int error; local 314 if ((error = EGL14.eglGetError()) != EGL14.EGL_SUCCESS) { 315 throw new RuntimeException(msg + ": EGL error: 0x" + Integer.toHexString(error));
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
WrapperTest.java | 217 int error; local 218 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) { 219 Log.e(TAG, op + ": glError " + error); 220 throw new RuntimeException(op + ": glError " + error); 321 int error; local 322 while ((error = EGL14.eglGetError()) != EGL14.EGL_SUCCESS) { 323 Log.e(TAG, msg + ": EGL error: 0x" + Integer.toHexString(error)); 327 throw new RuntimeException("EGL error encountered (see log)");
|
/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
TextureTestRenderer.java | 178 int error; local 179 while ((error = gl.glGetError()) != GL10.GL_NO_ERROR) { 180 Log.e(TAG, op + ": glError " + error); 181 throw new IllegalStateException(op + ": glError " + error);
|
/cts/tests/tests/textureview/src/android/textureview/cts/ |
GLProducerThread.java | 119 int error = mEgl.eglGetError(); local 120 if (error == EGL10.EGL_BAD_NATIVE_WINDOW) { 124 + GLUtils.getEGLErrorString(error));
|
/cts/tests/tests/view/src/android/view/cts/ |
VelocityTrackerTest.java | 175 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
|
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/ |
Gles2ColoredTriangleList.java | 125 * Checks if any of the GL calls since the last time this method was called set an error 140 int error = GLES20.glGetError(); local 141 if (error != GLES20.GL_NO_ERROR) { 142 String errorString = GLU.gluErrorString(error); 144 errorString = GLUtils.getEGLErrorString(error); 146 String message = glOperation + " caused GL error 0x" + Integer.toHexString(error) +
|
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/ |
Gles2ColoredTriangleList.java | 125 * Checks if any of the GL calls since the last time this method was called set an error 140 int error = GLES20.glGetError(); local 141 if (error != GLES20.GL_NO_ERROR) { 142 String errorString = GLU.gluErrorString(error); 144 errorString = GLUtils.getEGLErrorString(error); 146 String message = glOperation + " caused GL error 0x" + Integer.toHexString(error) +
|
/development/ndk/platforms/android-3/include/linux/mmc/ |
mmc.h | 51 unsigned int error; member in struct:mmc_command 70 unsigned int error; member in struct:mmc_data
|
/development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/ |
GL2JNIView.java | 65 * bit depths). Failure to do so would result in an EGL_BAD_MATCH error. 127 int error; local 128 while ((error = egl.eglGetError()) != EGL10.EGL_SUCCESS) { 129 Log.e(TAG, String.format("%s: EGL error: 0x%x", prompt, error));
|
/development/perftests/panorama/feature_stab/src/dbreg/ |
dbreg.cpp | 640 double error = db_SafeSqrt(m_sq_cost[c]); local 641 int bin = (int)(error/m_max_cost_pix*m_nr_bins);
|
/development/samples/TtsEngine/src/com/example/android/ttsengine/ |
RobotSpeakTtsService.java | 141 Log.e(TAG, "Error loading data for : " + lang + "-" + country); 164 // we error out early before wasting too much time. 166 callback.error(); 184 // It is crucial to call either of callback.error() or callback.done() to ensure 187 callback.error();
|
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/ |
Gles2ColoredTriangleList.java | 125 * Checks if any of the GL calls since the last time this method was called set an error 140 int error = GLES20.glGetError(); local 141 if (error != GLES20.GL_NO_ERROR) { 142 String errorString = GLU.gluErrorString(error); 144 errorString = GLUtils.getEGLErrorString(error); 146 String message = glOperation + " caused GL error 0x" + Integer.toHexString(error) +
|
/device/moto/shamu/camera/QCamera2/HAL/ |
QCameraChannel.cpp | 999 int error = NO_ERROR; local [all...] |
/external/aac/libMpegTPDec/src/ |
tpdec_asc.cpp | 1061 INT error = 0; local [all...] |
/external/aac/libMpegTPEnc/src/ |
tpenc_lib.cpp | 294 TRANSPORTENC_ERROR error; local 296 error = transportEnc_Latm_Init( 304 if (error != TRANSPORTENC_OK) { 305 return error;
|
/external/aac/libSBRenc/src/ |
ps_main.cpp | 115 FDK_PSENC_ERROR error = PSENC_OK; local 118 error = PSENC_INVALID_HANDLE; 125 error = PSENC_MEMORY_ERROR; 130 if (PSENC_OK != (error = FDKsbrEnc_CreatePSEncode(&hParametricStereo->hPsEncode))) { 143 error = PSENC_MEMORY_ERROR; 151 return error; 162 FDK_PSENC_ERROR error = PSENC_OK; local 165 error = PSENC_INVALID_HANDLE; 205 if (PSENC_OK != (error = FDKsbrEnc_InitPSEncode(hParametricStereo->hPsEncode, (PS_BANDS) hPsEncConfig->nStereoBands, hPsEncConfig->iidQuantErrorThreshold))){ 238 return error; 246 FDK_PSENC_ERROR error = PSENC_OK; local 265 FDK_PSENC_ERROR error = PSENC_OK; local 311 FDK_PSENC_ERROR error = PSENC_OK; local 476 FDK_PSENC_ERROR error = PSENC_OK; local [all...] |
/external/android-clat/ |
clatd.c | 270 // We don't log an error here because configure_packet_socket has already done so. 285 int error; local 311 error = tun_alloc(tunnel->device4, tunnel->fd4); 312 if(error < 0) { 317 error = set_nonblocking(tunnel->fd4); 318 if (error < 0) { 340 logmsg(ANDROID_LOG_WARN,"read_packet/read error: %s", strerror(errno)); 387 logmsg(ANDROID_LOG_WARN,"event_loop/poll returned an error: %s",strerror(errno)); 391 // error is waiting. If we don't call read() after getting POLLERR, a 394 // socket error flag instead [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
AdamsBashforthIntegrator.java | 35 * one: it uses adaptive stepsize to implement error control, whereas 153 * @param scalAbsoluteTolerance allowed absolute error 154 * @param scalRelativeTolerance allowed relative error 173 * @param vecAbsoluteTolerance allowed absolute error 174 * @param vecRelativeTolerance allowed relative error 229 double error = 10; local 230 while (error >= 1.0) { 234 // evaluate error using the last term of the Taylor expansion 235 error = 0; 242 error += ratio * ratio [all...] |
AdamsMoultonIntegrator.java | 38 * one: it uses adaptive stepsize to implement error control, whereas 163 * Build an Adams-Moulton integrator with the given order and error control parameters. 169 * @param scalAbsoluteTolerance allowed absolute error 170 * @param scalRelativeTolerance allowed relative error 183 * Build an Adams-Moulton integrator with the given order and error control parameters. 189 * @param vecAbsoluteTolerance allowed absolute error 190 * @param vecRelativeTolerance allowed relative error 246 double error = 10; local 247 while (error >= 1.0) { 267 error = nordsieckTmp.walkInOptimizedOrder(new Corrector(y, predictedScaled, yTmp)) 396 double error = 0; local [all...] |
EmbeddedRungeKuttaIntegrator.java | 33 * sets of coefficients allowing to estimate the error, their Butcher 48 * compute directly the error rather than computing two estimates and 57 * the step is rejected after the error estimation phase, no 106 * @param scalAbsoluteTolerance allowed absolute error 107 * @param scalRelativeTolerance allowed relative error 144 * @param vecAbsoluteTolerance allowed absolute error 145 * @param vecRelativeTolerance allowed relative error 237 // iterate over step size, ensuring local normalized error is smaller than 1 238 double error = 10; local 239 while (error >= 1.0) [all...] |