HomeSort by relevance Sort by last modified time
    Searched defs:error (Results 651 - 675 of 3032) sorted by null

<<21222324252627282930>>

  /packages/apps/Browser/src/com/android/browser/
ErrorConsoleView.java 41 * Define some constants to describe the visibility of the error console.
137 * Removes all error messages from the console.
211 // An adapter for this View that contains a list of error messages.
230 * This class is an adapter for ErrorConsoleListView that contains the error console
289 * Constructs a TwoLineListItem for the error at position.
293 ConsoleMessage error = mMessages.get(position); local
295 if (error == null) {
307 headline.setText(error.sourceId() + ":" + error.lineNumber());
308 subText.setText(error.message())
    [all...]
  /prebuilts/tools/common/m2/repository/org/slf4j/slf4j-api/1.7.7/
slf4j-api-1.7.7.jar 
  /external/v8/test/mjsunit/
stack-traces.js 99 Error.captureStackTrace(this, stripPoint);
148 // Test that the error constructor is not shown in the trace
178 // If an error occurs while the stack trace is being formatted it should
190 assertTrue(e.stack.indexOf('<error: ReferenceError') != -1,
191 "ErrorsDuringFormatting didn't contain error: ReferenceError");
202 assertTrue(e.stack.indexOf('<error>') != -1,
203 "ErrorsDuringFormatting didn't contain <error>");
209 // Poisonous object that throws a reference error if attempted converted to
293 var error = new Error();
    [all...]
  /art/runtime/jdwp/
jdwp_socket.cc 86 LOG(ERROR) << "JDWP net startup failed (req port=" << options->port << ")";
122 PLOG(probe ? ERROR : FATAL) << "Socket create failed";
130 PLOG(probe ? ERROR : FATAL) << "setsockopt(SO_REUSEADDR) failed";
144 PLOG(probe ? ERROR : FATAL) << "Attempt to bind to port " << port << " failed";
151 PLOG(probe ? ERROR : FATAL) << "Listen failed";
231 PLOG(ERROR) << "accept failed";
234 PLOG(ERROR) << "accept failed";
278 int error; local
279 int cc = gethostbyname_r(options->host.c_str(), &he, auxBuf, sizeof(auxBuf), &pEntry, &error);
281 LOG(WARNING) << "gethostbyname_r('" << options->host << "') failed: " << hstrerror(error);
    [all...]
  /art/runtime/
parsed_options.cc 567 bool error = (fmt != nullptr); local
568 FILE* stream = error ? stderr : stdout;
699 Exit((error) ? 1 : 0);
  /art/test/412-new-array/src/
Main.java 209 Error error = null; local
215 error = e;
217 assertNotNull(error);
  /bionic/libc/dns/net/
getnameinfo.c 37 * - RFC2553 says that we should raise error on short buffer. X/Open says
287 int error; local
289 if ((error = ip6_parsenumeric(sa, addr, host,
291 return(error);
332 int error; local
334 if ((error = ip6_parsenumeric(sa, addr, host,
337 return(error);
  /bionic/libc/kernel/uapi/linux/
dm-log-userspace.h 54 int32_t error; member in struct:dm_ulog_request
nbd.h 65 __be32 error; member in struct:nbd_reply
  /bionic/libc/kernel/uapi/misc/
cxl.h 84 __u64 error; member in struct:cxl_event_afu_error
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/screenpinning/
ScreenPinningTestActivity.java 126 private void error(int errorId) { method in class:ScreenPinningTestActivity
127 error(errorId, new Throwable()); method
130 private void error(final int errorId, final Throwable cause) { method in class:ScreenPinningTestActivity
134 String error = getString(errorId);
135 Log.d(TAG, error, cause);
139 ((TextView) findViewById(R.id.error_text)).setText(error);
148 error(R.string.error_screen_already_pinned);
171 error(R.string.error_screen_pinning_did_not_start);
182 error(R.string.error_screen_no_longer_pinned);
193 error(R.string.error_screen_pinning_did_not_exit)
    [all...]
  /cts/common/host-side/manifest-generator/src/com/android/compatibility/common/generator/
ManifestGenerator.java 60 error("Missing package name");
62 error("Missing instrumentation name");
64 error("No activities");
66 error("Missing output file");
120 private static void error(String message) { method in class:ManifestGenerator
  /cts/tests/tests/effect/src/android/effect/cts/
GLEnv.java 103 int error = egl.eglGetError(); local
104 if (error != EGL10.EGL_SUCCESS) {
105 throw new RuntimeException("Operation '" + operation + "' caused EGL error: " + error);
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglContextTest.java 71 throw new IllegalStateException("error in eglInitialize");
98 int error = EGL14.eglGetError(); local
99 if (error != EGL14.EGL_SUCCESS) {
100 throw new RuntimeException("error releasing context: " + error);
104 error = EGL14.eglGetError();
105 if (error != EGL14.EGL_SUCCESS) {
106 throw new RuntimeException("error destroying context: " + error);
110 error = EGL14.eglGetError()
    [all...]
  /development/ndk/platforms/android-21/include/linux/
dm-log-userspace.h 54 int32_t error; member in struct:dm_ulog_request
nbd.h 65 __be32 error; member in struct:nbd_reply
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 76 GLenum error = glGetError(); local
77 if (error != GL_NO_ERROR)
78 fprintf(stderr, "GL Error: 0x%04x\n", (int)error);
84 EGLint error = eglGetError(); local
86 if (error && error != EGL_SUCCESS)
87 fprintf(stderr, "EGL Error: 0x%04x\n", (int)error);
105 #error WINDOW_BPP must be 16 or 3
    [all...]
app-win32.c 56 GLenum error = glGetError(); local
57 if (error != GL_NO_ERROR)
60 _stprintf(errorString, _T("0x%04x"), error);
61 MessageBox(NULL, errorString, _T("GL Error"), MB_OK);
68 EGLint error = eglGetError(); local
69 if (error != EGL_SUCCESS)
72 _stprintf(errorString, _T("0x%04x"), error);
73 MessageBox(NULL, errorString, _T("EGL Initialization Error"), MB_OK);
91 #error WINDOW_BPP must be 16 or 32
  /development/samples/OpenGL/HelloOpenGLES20/src/com/example/android/opengl/
MyGLRenderer.java 138 * If the operation is not successful, the check throws an error.
143 int error; local
144 while ((error = GLES20.glGetError()) != GLES20.GL_NO_ERROR) {
145 Log.e(TAG, glOperation + ": glError " + error);
146 throw new RuntimeException(glOperation + ": glError " + error);
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 139 // Set up error management
142 JpegError error; local
143 error.parent = this;
145 mCInfo.err = jpeg_std_error(&error);
149 if (checkError("Error initializing compression")) return NO_INIT;
169 if (checkError("Error configuring defaults")) return NO_INIT;
174 if (checkError("Error starting compression")) return NO_INIT;
185 if (checkError("Error while compressing")) return NO_INIT;
193 if (checkError("Error while finishing compression")) return NO_INIT;
260 JpegError *error = static_cast<JpegError*>(cinfo->err) local
    [all...]
  /external/aac/libAACenc/src/
channel_map.cpp 226 INT error=0; local
253 default: error=1;
256 return error;
500 /* MODE_INVALID in case of error */
504 /* (MODE_INVALID: error, */
530 default: /* error */
  /external/aac/libFDK/src/
FDK_trigFcts.cpp 298 FIXP_DBL residual, error, sine, cosine; local
301 error = fMult(sine, residual);
303 return cosine - error;
308 FIXP_DBL residual, error, sine, cosine; local
311 error = fMult(cosine, residual);
313 return sine + error;
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 63 ANTLR3_BOOLEAN error; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
83 /** This is true when we see an error and before having successfully
84 * matched a token. Prevents generation of more than one error message
85 * per error.
89 /** The index into the input stream where the last error occurred.
90 * This is used to prevent infinite loops where an error is found
91 * but no token is consumed during recovery...another error is found,
102 /** When the recognizer terminates, the error handling functions
103 * will have incremented this value if any error occurred (that was displayed). It can then be
123 * that are generally useful in error reporting. The generated parsers instal
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DFA.java 60 * an exception upon error.
163 error(nvae);
168 protected void error(NoViableAltException nvae) { ; } method in class:DFA
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DFA.js 18 * an exception upon error.
103 this.error(nvae);
108 error: function(nvae) { },

Completed in 377 milliseconds

<<21222324252627282930>>