/external/webkit/LayoutTests/storage/ |
multiple-transactions-on-different-handles.html | 33 function statementErrorCallback(dbName, statementType, error) 35 log(dbName + " " + statementType + " statement failed: " + error.message); 45 function(tx, error) { statementErrorCallback(dbName, "read", error); }); 50 function(tx, error) { statementErrorCallback(dbName, "write", error); }); 51 }, function(error) { 53 log(dbName + " transaction failed: " + error.message); 75 function(result) {}, function(tx, error) {}); 76 }, function(error) { [all...] |
statement-error-callback.html | 20 function transactionErrorFunction(error) 22 log("PASS - the transaction error callback was invoked."); 42 var database = openDatabase("bug-28872", "1.0", "statement error callback test", 1024); 47 tx.executeSql("THIS STATEMENT WILL FAIL", [], function(message) { log("FAIL - this statement should have failed"); finishTest(); }, function(error) { return true; }); 54 tx.executeSql("THIS STATEMENT WILL FAIL", [], function(message) { log("FAIL - this statement should have failed"); finishTest(); }, function(error) { throw "Exception in Statement error callback"; return false; }); 63 This test confirms that if the statement error callback returns true or throws an exception we do not execute any further statements in that transaction and instead execute the transaction error callback immediately.
|
/external/webkit/WebCore/icu/unicode/ |
parseerr.h | 28 * localize the error. 34 * context surrounding the error. If the source text is "let for=7" 35 * and "for" is the error (e.g., because it is a reserved word), then 42 * "let " "for=7" Pre- and post-context and error text 43 * "" "for" Error text only 55 * The line on which the error occured. If the parser uses this 57 * which the error appears, which will be be a value >= 1. If the 64 * The character offset to the error. If the line field is >= 1, 73 * Textual context before the error. Null-terminated. The empty 80 * The error itself and/or textual context after the error [all...] |
/external/webkit/WebKit/mac/icu/unicode/ |
parseerr.h | 28 * localize the error. 34 * context surrounding the error. If the source text is "let for=7" 35 * and "for" is the error (e.g., because it is a reserved word), then 42 * "let " "for=7" Pre- and post-context and error text 43 * "" "for" Error text only 55 * The line on which the error occured. If the parser uses this 57 * which the error appears, which will be be a value >= 1. If the 64 * The character offset to the error. If the line field is >= 1, 73 * Textual context before the error. Null-terminated. The empty 80 * The error itself and/or textual context after the error [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_THROW_VERIFICATION_ERROR.S | 3 * Handle a throw-verification-error instruction. This throws an 4 * exception for an error discovered during verification. The
|
/external/bluetooth/glib/gio/ |
goutputstream.c | 62 GError **error); 72 GError **error); 82 GError **error); 90 GError **error); 98 GError **error); 159 * @error: location to store the error occuring, or %NULL to ignore 165 * larger than %G_MAXSSIZE will cause a %G_IO_ERROR_INVALID_ARGUMENT error. 168 * It is not an error if this is not the same as the requested size, as it 169 * can happen e.g. on a partial i/o error, or if there is not enoug 634 GError *error = NULL; local 666 error); local 769 GError *error = NULL; local 789 error); local 863 GError *error = NULL; local 872 error); local 963 GError *error = NULL; local 983 error); local 1135 GError *error = NULL; local 1196 GError *error = NULL; local 1261 GError *error = NULL; local 1304 GError *error = NULL; local [all...] |
glocalfileinputstream.c | 58 GError **error); 62 GError **error); 65 GError **error); 72 GError **error); 76 GError **error); 138 GError **error) 148 if (g_cancellable_set_error_if_cancelled (cancellable, error)) 158 g_set_error (error, G_IO_ERROR, 160 _("Error reading from file: %s"), 174 GError **error) [all...] |
/external/clearsilver/man/man3/ |
nerr_register.3 | 27 name - pretty name for the error type 30 register an error type. This will assign a numeric value
|
/external/qemu/distrib/sdl-1.2.12/src/thread/win32/ |
win_ce_semaphore.h | 14 /* Error codes - all must have bit 29 set */ 15 #define SYNCH_ERROR 0X20000000 /* EXERCISE - REFINE THE ERROR NUMBERS */
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
offline-access.js | 5 applicationCache.onerror = function() { log("error") } 16 alert("FAIL, unexpected error: " + ex);
|
/packages/apps/IM/src/com/android/im/app/adapter/ |
ConnectionListenerAdapter.java | 37 public void onConnectionStateChange(IImConnection connection, int state, ImErrorInfo error) { 39 Log.d(TAG, "onConnectionStateChange(" + state + ", " + error + ")"); 43 public void onUpdateSelfPresenceError(IImConnection connection, ImErrorInfo error) { 45 Log.d(TAG, "onUpdateSelfPresenceError(" + error + ")"); 56 final int state, final ImErrorInfo error) { 59 onConnectionStateChange(conn, state, error); 65 final ImErrorInfo error) { 68 onUpdateSelfPresenceError(conn, error);
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
DOMErrorMonitor.java | 40 * adds copy of error to list for later retrieval. 43 public boolean handleError(DOMError error) { 44 errors.add(new DOMErrorImpl(error)); 60 DOMError error = (DOMError) iter.next(); local 61 if (error.getSeverity() >= severity) { 62 testCase.fail(id + error.getMessage());
|
/external/bison/tests/ |
synclines.at | 24 # Compile FILE expecting an error, and save in the file stdout the 26 # (e.g. c89 on IRIX 6.5) triger warnings on `#error', instead of 32 # input.y:4:2: #error "4" or 33 # input.y:4.2: #error "4" or 34 # input.y:4:2: error: #error "4" 36 # input.y:4: #error "4" 38 AT_CHECK([[sed -e 's/^\([^:]*:[^:.]*\)[.:][^:]*:\(.*\)$/\1:\2/' -e 's/^\([^:]*:[^:]*:\)[^@%:@]*\( @%:@error\)/\1\2/' stderr]], 0, [stdout]) 41 # AT_TEST_SYNCLINE(TITLE, INPUT, ERROR-MSG) 44 # to issue ERROR-MSG [all...] |
/external/bluetooth/bluez/doc/ |
serial-api.txt | 24 Possible errors: org.bluez.Error.InvalidArguments 25 org.bluez.Error.InProgress 26 org.bluez.Error.ConnectionAttemptFailed 27 org.bluez.Error.NotSupported 40 Possible errors: org.bluez.Error.InvalidArguments 41 org.bluez.Error.DoesNotExist
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
shell.sgml | 22 Error codes returned by shell functions. 27 @G_SHELL_ERROR_FAILED: Some other error. 31 Error domain for shell functions. Errors in this domain will 33 error domains. 46 @error: 65 @error:
|
/external/bluetooth/glib/glib/ |
gkeyfile.h | 24 #error "Only <glib.h> can be included directly." 64 GError **error); 69 GError **error); 75 GError **error); 80 GError **error); 83 GError **error) G_GNUC_MALLOC; 90 GError **error) G_GNUC_MALLOC; 96 GError **error); 100 GError **error) G_GNUC_MALLOC; 108 GError **error) G_GNUC_MALLOC [all...] |
/external/dbus/dbus/ |
dbus-server-unix.c | 43 * Sets error if the result is not OK. 47 * @param error location to store rationale for failure on bad address 54 DBusError *error) 70 _dbus_set_bad_address(error, "unix", 80 _dbus_set_bad_address(error, NULL, NULL, 92 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL); 99 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL); 111 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL); 124 error); 132 *server_p = _dbus_server_new_for_domain_socket (path, FALSE, error); [all...] |
/external/freetype/src/base/ |
basepic.c | 54 FT_Error error = FT_Err_Ok; local 60 return error; 65 error = ft_create_default_module_classes( library ); 66 if ( error ) 74 if(error) 76 return error;
|
/external/freetype/src/psnames/ |
pspic.c | 51 FT_Error error = FT_Err_Ok; local 57 return error; 62 error = FT_Create_Class_pscmaps_services(library, &container->pscmaps_services); 63 if(error) 68 if(error) 70 return error;
|
/external/opencore/engines/2way/test/src/ |
video_preview_disconnect_test.cpp | 25 int error = 0; local 33 OSCL_TRY(error, scheduler->StartScheduler()); 34 if (error != 0) 36 OSCL_LEAVE(error); 71 int error = 0; local 80 OSCL_TRY(error, iVideoAddSinkId = terminal->AddDataSinkL(*iVideoSink, id)); 81 if (error) 125 int error = 0; local 131 OSCL_TRY(error, terminal->ConnectL(iConnectOptions)); 132 if (error) 292 int error = 0; local [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
error_handlers.py | 23 """Defines style error handler classes. 25 A style error handler is a function to call when a style error is 26 found. Style error handlers can also have state. A class that represents 27 a style error handler should implement the following methods. 33 Handle the occurrence of a style error. 35 Check whether the error is reportable. If so, increment the total 36 error count and report the details. Note that error reporting can 40 line_number: The integer line number of the line containing the error [all...] |
/frameworks/base/core/java/android/webkit/ |
SslErrorHandler.java | 50 * SSL error preference table. 77 * Creates a new error handler with an empty loader queue. 89 * Create a new error handler that will be passed to the client. 104 outState.putBundle("ssl-error-handler", mSslPrefTable); 117 success = inState.containsKey("ssl-error-handler"); 119 mSslPrefTable = inState.getBundle("ssl-error-handler"); 127 * Clears SSL error preference table. 134 * Handles SSL error(s) on the way up to the user. 151 * Check the preference table for a ssl error that has already been shown 155 SslError error) { 196 SslError error = loader.sslError(); local [all...] |
/packages/apps/IM/src/com/android/im/engine/ |
SubscriptionRequestListener.java | 47 * Called when an error occurs during approving a subscription request. 50 * @param error 52 void onApproveSubScriptionError(String contact, ImErrorInfo error); 55 * Called when an error occurs during declining a subscription request. 57 * @param error 59 void onDeclineSubScriptionError(String contact, ImErrorInfo error);
|
/external/e2fsprogs/lib/et/ |
com_err.texinfo | 18 @settitle A Common Error Description Library for UNIX 24 * Com_err: (com_err). A Common Error Description Library for UNIX. 40 This file documents the use of the Common Error Description library. 70 @center @titlefont{A Common Error Description} 87 standard set of error codes passed between the kernel and user 91 their callers, leading to a total hodgepodge of error handling, and 122 @top A Common Error Description Library for UNIX 128 * Error codes:: 129 * Error table source file:: 130 * The error-table compiler:: [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/ |
MsgMgr.java | 32 * This class will manage error messages, warning messages, and other types of 58 * the error condition is severe enough to halt processing. 85 * the error condition is severe enough to halt processing. 101 * the error condition is severe enough to halt processing. 119 * the error condition is severe enough to halt processing. 138 * the error condition is severe enough to halt processing. 157 * Tell the user of an error, and probably throw an 162 * the error condition is severe enough to halt processing. 166 public void error(SourceLocator srcLctr, String msg) throws TransformerException 185 * Tell the user of an error, and probably throw a 195 public void error(SourceLocator srcLctr, String msg) throws TransformerException method in class:MsgMgr 197 error(srcLctr, null, null, msg, null); method 212 public void error(SourceLocator srcLctr, String msg, Object[] args) throws TransformerException method in class:MsgMgr 214 error(srcLctr, null, null, msg, args); method 229 public void error(SourceLocator srcLctr, String msg, Exception e) throws TransformerException method in class:MsgMgr 231 error(srcLctr, msg, null, e); method 247 public void error(SourceLocator srcLctr, String msg, Object args[], Exception e) throws TransformerException method in class:MsgMgr 278 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg) method in class:MsgMgr 281 error(srcLctr, styleNode, sourceNode, msg, null); method 298 public void error(SourceLocator srcLctr, Node styleNode, Node sourceNode, String msg, Object args[]) method in class:MsgMgr [all...] |