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

<<31323334353637383940>>

  /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-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
  /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) { },
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 89 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
99 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
108 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
118 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
128 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
144 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
155 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
167 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
182 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
192 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename)
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
Jdk14Logger.java 133 * @see org.apache.commons.logging.Log#error(Object)
135 public void error(Object message) { method in class:Jdk14Logger
145 * @see org.apache.commons.logging.Log#error(Object, Throwable)
147 public void error(Object message, Throwable exception) { method in class:Jdk14Logger
218 * Is error logging currently enabled?
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemSort.java 76 error(XSLTErrorResources.ER_NO_CURLYBRACE, null); method
318 error(XSLTErrorResources.ER_CANNOT_ADD, method
ElemWithParam.java 241 * is present, an error will be raised.
253 error(XSLTErrorResources.ER_CANT_HAVE_CONTENT_AND_SELECT, method
  /external/bison/lib/
error.c 0 /* Error handler for noninteractive utilities
24 #include "error.h"
52 /* If NULL, error will flush stdout, then print on stderr the program
53 name, a colon and a space. Otherwise, error will call this
57 /* This variable is incremented each time 'error' is called. */
68 /* In GNU libc we want do not want to use the common name 'error' directly.
76 # define error __error macro
135 # error Please port fcntl to your platform
188 s = _("Unknown system error");
285 /* Print the program name and error message MESSAGE, which is a printf-styl
290 error (int status, int errnum, const char *message, ...) function
397 # undef error macro
    [all...]
  /external/ceres-solver/internal/ceres/
evaluator_test.cc 106 string error; local
107 return Evaluator::Create(options, program, &error);
577 string error; local
578 scoped_ptr<Evaluator> evaluator(Evaluator::Create(options, program, &error));
  /external/chromium/chrome/browser/autofill/
autofill_download_unittest.cc 88 response.error = http_error;
104 int error; member in struct:AutofillDownloadTestHelper::ResponseData
107 ResponseData() : type_of_response(REQUEST_QUERY_FAILED), error(0) {
265 EXPECT_EQ(0, helper.responses_.front().error);
273 EXPECT_EQ(404, helper.responses_.front().error);
282 EXPECT_EQ(0, helper.responses_.front().error);
322 EXPECT_EQ(500, helper.responses_.front().error);
349 EXPECT_EQ(503, helper.responses_.front().error);
  /external/chromium/chrome/browser/
background_application_list_model_unittest.cc 90 std::string error; local
93 Extension::STRICT_ERROR_CHECKS, &error);
96 EXPECT_TRUE(extension.get() != NULL) << error;
idbbindingutilities_browsertest.cc 32 bool error = webkit_glue::IDBKeysFromValuesAndKeyPath( local
39 ASSERT_FALSE(error);
43 error = webkit_glue::IDBKeysFromValuesAndKeyPath(
49 ASSERT_FALSE(error);
53 error = webkit_glue::IDBKeysFromValuesAndKeyPath(
56 ASSERT_TRUE(error);
  /external/chromium/chrome/browser/chromeos/options/
wifi_config_model.cc 94 UErrorCode error = U_ZERO_ERROR; local
98 error));
99 if (U_FAILURE(error))
  /external/chromium/chrome/browser/extensions/
crx_installer.cc 174 std::string error; local
176 ConvertUserScriptToExtension(source_file_, original_url_, &error);
178 ReportFailureFromFileThread(error);
194 std::string error; local
209 std::string* error) {
210 DCHECK(error);
214 *error = base::StringPrintf(
223 *error = base::StringPrintf(
237 *error = "Extensions are not enabled.";
249 *error = base::StringPrintf
309 std::string error; local
455 std::string error; local
    [all...]
  /external/chromium/chrome/browser/sync/
sync_setup_flow.cc 85 const GoogleServiceAuthError& error = service->GetAuthError(); local
88 args->SetInteger("error", error.state());
97 args->SetInteger("error", 0);
101 args->SetString("captchaUrl", error.captcha().image_url.spec());
390 // This shows the user the "Could not connect to server" error.
391 // TODO(sync): Update this error messaging.
394 args.SetInteger("error", GoogleServiceAuthError::CONNECTION_FAILED);
  /external/chromium/chrome/browser/sync/util/
extensions_activity_monitor_unittest.cc 71 std::string error; local
77 Extension::STRICT_ERROR_CHECKS, &error)); local
130 std::string error; local
136 Extension::STRICT_ERROR_CHECKS, &error)); local
137 EXPECT_EQ("", error);
  /external/chromium/chrome/browser/translate/
translate_infobar_delegate.h 38 // Factory method to create a non-error translate infobar.
49 // Factory method to create an error translate infobar.
71 TranslateErrors::Type error() const { return error_; } function in class:TranslateInfoBarDelegate
85 // Returns true if the current infobar indicates an error (in which case it
118 // while translating and also the one displaying the error message.
132 // to an error state (and vice-versa).
152 TranslateErrors::Type error,
198 // The error that occurred when trying to translate (NONE if no error).
  /external/chromium/chrome/common/extensions/
update_manifest.cc 84 // is a pointer to a std::string where the error message should be appended.
88 std::string* error = static_cast<std::string*>(context); local
89 base::StringAppendV(error, message, args);
124 // boolean indicating success or failure. On failure, it writes a error message
258 std::string error; local
259 if (!ParseSingleAppTag(apps[i], gupdate_ns, &current, &error)) {
260 ParseError("%s", error.c_str());

Completed in 541 milliseconds

<<31323334353637383940>>