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

<<21222324252627282930>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AdtConsoleSdkLog.java 32 public void error(@Nullable Throwable t, @Nullable String errorFormat, Object... args) { method in class:AdtConsoleSdkLog
34 AdtPlugin.logAndPrintError(t, TAG, "Error: " + errorFormat, args);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFileWrapper.java 51 StreamException.Error error = StreamException.Error.DEFAULT; local
53 error = StreamException.Error.OUTOFSYNC;
55 throw new StreamException(e, this, error);
  /bionic/libc/bionic/
pthread_create.cpp 111 int error = 0; local
119 // error = errno;
132 return error;
  /bionic/libc/kernel/common/linux/
ftape.h 44 __u8 error; member in struct:__anon366::__anon367
46 } error; member in union:__anon366
  /build/tools/rgb2565/
to565.c 48 int* error = malloc((width+2) * 3 * sizeof(int)); local
50 memset(error, 0, (width+2) * 3 * sizeof(int));
52 error += 3; // array goes from [-3..((width+1)*3+2)]
56 int r = in[0] + error[i*3+0];
59 int g = in[1] + error[i*3+1];
62 int b = in[2] + error[i*3+2];
72 error[(i+1)*3+ch] += e - ((e*1/16) + (e*3/16) + (e*5/16)); \
88 // error <- next_error; next_error <- 0
89 int* temp = error; error = next_error; next_error = temp
    [all...]
  /cts/tests/tests/opengl/libopengltest/
color_one.cpp 81 GLint error = glGetError(); local
126 for (GLint error = glGetError(); error; error
128 LOGI("after %s() glError (0x%x)\n", op, error);
  /cts/tests/tests/opengl/src/android/opengl/cts/
AttachShaderTest.java 44 * error : GLES20.GL_NO_ERROR
51 int error = mActivity.glGetError(); local
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 : GLES20.GL_NO_ERRO
99 int error = mActivity.glGetError(); local
113 int error = mActivity.glGetError(); local
128 int error = mActivity.glGetError(); local
134 int error = mActivity.glGetError(); local
140 int error = mActivity.glGetError(); local
146 int error = mActivity.glGetError(); local
    [all...]
NativeAttachShaderTest.java 45 * error : GLES20.GL_NO_ERROR
52 int error = mActivity.mRenderer.mAttachShaderError; local
53 assertEquals(GLES20.GL_NO_ERROR, error);
60 * error : GLES20.GL_INVALID_VALUE
66 int error = mActivity.mRenderer.mAttachShaderError; local
67 assertTrue(GLES20.GL_NO_ERROR != error);
74 * error : GLES20.GL_INVALID_OPERATION
80 int error = mActivity.mRenderer.mAttachShaderError; local
81 assertTrue(GLES20.GL_NO_ERROR != error);
88 * error : GLES20.GL_NO_ERRO
97 int error = mActivity.mRenderer.mAttachShaderError; local
110 int error = mActivity.mRenderer.mAttachShaderError;; local
123 int error = mActivity.mRenderer.mAttachShaderError; local
130 int error = mActivity.mRenderer.mAttachShaderError; local
138 int error = mActivity.mRenderer.mAttachShaderError; local
144 int error = mActivity.mRenderer.mAttachShaderError; local
    [all...]
  /cts/tools/dasm/src/java_cup/
sym.java 28 static final int error = 1; field in class:sym
  /development/host/windows/usb/api/
adb_legacy_interface.cpp 60 // Preserve error accross handle close
61 ULONG error = ok ? NO_ERROR : GetLastError(); local
65 if (NO_ERROR != error) {
66 SetLastError(error);
134 // Preserve error accross CloseHandle
135 ULONG error = ret ? NO_ERROR : GetLastError(); local
139 if (NO_ERROR != error) {
140 SetLastError(error);
200 // Preserve error accross CloseHandle
201 ULONG error = ret ? NO_ERROR : GetLastError(); local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
ftape.h 37 __u8 error; member in struct:__anon1050::__anon1051
39 } error; member in union:__anon1050
  /development/samples/HelloEffects/src/com/example/android/mediafx/
GLToolbox.java 73 int error; local
74 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
75 throw new RuntimeException(op + ": glError " + error);
  /external/aac/libAACdec/src/
channel.cpp 240 AAC_DECODER_ERROR error = AAC_DEC_OK; local
250 error = AAC_DEC_UNSUPPORTED_FORMAT;
289 error = IcsRead( hBs,
302 error = AAC_DEC_UNSUPPORTED_PREDICTION;
315 error = AAC_DEC_PARSE_ERROR;
324 error = CBlock_ReadSectionData( hBs,
333 /* read RVLC data from bitstream (error sens. cat. 1) */
338 error = CBlock_ReadScaleFactorData(pAacDecoderChannelInfo[ch], hBs, flags);
350 error = AAC_DEC_DECODE_FRAME_ERROR;
358 error = CTns_Read(hBs, &pAacDecoderChannelInfo[ch]->pDynData->TnsData, &pAacDecoderChannelInfo[ch]->icsI (…)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreePatternLexer.java 55 public boolean error = false; field in class:TreePatternLexer
120 error = true;
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ErrorManagerTest.java 48 em.error(null, new NullPointerException(), ErrorManager.GENERIC_FAILURE);
49 em.error("An error message.", null, ErrorManager.GENERIC_FAILURE);
50 em.error(null, null, ErrorManager.GENERIC_FAILURE);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFunction.java 70 handler.error(msg, new SAXException(msg));
87 handler.error(msg, new SAXException(msg));
134 handler.error(msg, new SAXException(msg));
154 handler.error(msg, new SAXException(msg));
ProcessorTemplateElem.java 71 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, ie);//"Failed creating ElemTemplateElement instance!", ie);
75 handler.error(XSLTErrorResources.ER_FAILED_CREATING_ELEMTMPL, null, iae);//"Failed creating ElemTemplateElement instance!", iae);
104 if(null != parent) // defensive, for better multiple error reporting. -sb
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemAttribute.java 87 // element pending, it is an error.
253 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemAttributeSet.java 154 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemPI.java 215 error(XSLTErrorResources.ER_CANNOT_ADD, method
FuncFormatNumb.java 67 ss.error(XSLTErrorResources.ER_CURRENCY_SIGN_ILLEGAL); // currency sign not allowed
134 templElem.error(XSLTErrorResources.ER_MALFORMED_FORMAT_STRING,
150 * the error condition is severe enough to halt processing.
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncId.java 114 error(xctxt, XPATHErrorResources.ER_CONTEXT_HAS_NO_OWNERDOC, null); method
  /external/ceres-solver/internal/ceres/
coordinate_descent_minimizer.cc 63 string* error) {
172 // TODO(sameeragarwal): Better error handling. Right now we
211 string error; local
214 Evaluator::Create(evaluator_options_, program, &error));
  /external/chromium/android/net/
android_network_library_impl.cc 66 LOG(ERROR) << "verifyServerCertificates method not found; skipping";
80 jobject error = env->CallStaticObjectMethod(cert_verifier_class_, verify_fn, local
89 if (!error) {
92 jclass error_class = env->GetObjectClass(error);
97 int code = env->CallIntMethod(error, error_fn);
106 env->DeleteLocalRef(error);
110 // a proper error
  /external/chromium/base/debug/
stack_trace_win.cc 46 // Returns the error code of a failed initialization.
122 // TODO(awong): Handle error: SymInitialize can fail with
127 DLOG(ERROR) << "SymInitialize failed: " << init_error_;
183 DWORD error = context->init_error(); local
184 if (error != ERROR_SUCCESS) {
185 (*os) << "Error initializing symbols (" << error

Completed in 1957 milliseconds

<<21222324252627282930>>