HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 1201 - 1225 of 2948) sorted by null

<<41424344454647484950>>

  /build/tools/atree/
files.cpp 130 bool* error) {
160 *error = true;
225 fprintf(stderr, "error reading file %s. (%s)\n",
276 errstr = "Error: you can only specifiy 'rm' or 'strip' once per line.";
282 errstr = "Error: you can only specifiy 'rm' or 'strip' once per line.";
287 bool error = false; local
288 paths[pcount++] = replace_variables(word, variables, &error);
289 if (error) {
294 errstr = "Error: More than 2 paths per line.";
300 errstr = "Error: No path found on line."
    [all...]
  /cts/tests/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 195 int error; local
196 if ((error = EGL14.eglGetError()) != EGL14.EGL_SUCCESS) {
197 throw new RuntimeException(msg + ": EGL error: 0x" + Integer.toHexString(error));
OutputSurface.java 304 int error; local
305 if ((error = EGL14.eglGetError()) != EGL14.EGL_SUCCESS) {
306 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
  /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/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();
  /external/aac/libMpegTPDec/src/
tpdec_asc.cpp 722 INT error = 0; local
725 error = cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_CPE, i++);
727 error = cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_SCE, i++);
732 error |= cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_CPE, i++);
735 error |= cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_CPE, i++);
737 error |= cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_CPE, i++);
741 error |= cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_CPE, i++);
742 error |= cb->cbSbr(cb->cbSbrData, hBs, asc->m_samplingFrequency, asc->m_extensionSamplingFrequency, asc->m_samplesPerFrame, AOT_ER_AAC_ELD, ID_SCE, i++);
746 return error;
    [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 257 int error; local
283 error = tun_alloc(tunnel->device6, tunnel->fd6);
284 if(error < 0) {
289 error = tun_alloc(tunnel->device4, tunnel->fd4);
290 if(error < 0) {
313 logmsg(ANDROID_LOG_WARN,"read_packet/read error: %s", strerror(errno));
351 logmsg(ANDROID_LOG_WARN,"event_loop/poll returned an error: %s",strerror(errno));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 302 long error = (after - before - delay); local
303 if (error < 0)
304 error = -error;
305 if (i > 0 && error > allowableError) {
313 if (error > (1000 + delay) || count == toLong.length) {
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorInclude.java 95 * Get the error number associated with this type of stylesheet including itself
97 * @return the appropriate error number
170 handler.error(te.getMessage(), te);
322 handler.error(XSLTErrorResources.ER_IOEXCEPTION,
327 handler.error(te.getMessage(), te);
XSLTElementProcessor.java 184 handler.error(XSLTErrorResources.ER_REQUIRED_ELEM_NOT_FOUND, new Object[]{getElemDef().getRequiredElem()}, null);
201 handler.error(XSLTErrorResources.ER_CHARS_NOT_ALLOWED, null, null);//"Characters are not allowed at this point in the document!",
257 * error reporting.
259 * error reporting.
274 * error reporting.
276 * error reporting.
279 * @param throwError True if it should throw an error if an
327 handler.error(XSLTErrorResources.ER_ATTR_NOT_ALLOWED, new Object[]{attributes.getQName(i), rawName}, null);//"\""+attributes.getQName(i)+"\""
374 handler.error(
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AVT.java 197 String error = null; // if non-null, break from loop local
244 // Error. Expressions can not begin with quotes.
245 error = "Expressions can not begin with quotes.";
294 error = XSLMessages.createMessage(
295 XSLTErrorResources.ER_NO_CURLYBRACE, null); //"Error: Can not have \"{\" within expression.";
337 if (error != null)
347 error = XSLMessages.createMessage(XSLTErrorResources.ER_ILLEGAL_ATTRIBUTE_VALUE, new Object[]{ name, stringedValue });
398 if (null != error)
403 new Object[]{ error }); //"Attr Template, "+error);
    [all...]
ElemCopyOf.java 220 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemValueOf.java 270 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemVariable.java 509 * is present, an error will be raised.
521 error(XSLTErrorResources.ER_CANT_HAVE_CONTENT_AND_SELECT, method
FuncDocument.java 100 // If the second argument is an empty nodeset, this is an error.
174 error(xctxt, XSLTErrorResources.ER_NO_CONTEXT_OWNERDOC, null); //"context does not have an owner document!"); method
378 * Tell the user of an error, and probably throw an
382 * @param msg The error message key
383 * @param args Arguments to be used in the error message
385 * the error condition is severe enough to halt processing.
389 public void error(XPathContext xctxt, String msg, Object args[]) method in class:FuncDocument
399 errHandler.error(spe);
411 * the error condition is severe enough to halt processing.
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 378 * @see org.xml.sax.ErrorHandler#error(SAXParseException)
380 public void error(SAXParseException exc) throws SAXException { method in class:ToSAXHandler
381 super.error(exc);
384 ((ErrorHandler)m_saxHandler).error(exc);
  /external/apache-xml/src/main/java/org/apache/xpath/
Expression.java 39 * normally has a location within a document or DOM, can send error and warning
239 * the error condition is severe enough to halt processing.
270 * the error condition is severe enough to halt processing.
377 * @param msg An error msgkey that corresponds to one of the conststants found
404 * Tell the user of an assertion error, and probably throw an
428 * Tell the user of an error, and probably throw an
432 * @param msg An error msgkey that corresponds to one of the constants found
443 public void error(XPathContext xctxt, String msg, Object[] args) method in class:Expression
550 * is intended only as an approximation for the sake of error
572 * is intended only as an approximation for the sake of error
    [all...]

Completed in 815 milliseconds

<<41424344454647484950>>