HomeSort by relevance Sort by last modified time
    Searched refs:errorMessage (Results 51 - 75 of 173) sorted by null

1 23 4 5 6 7

  /external/webkit/Tools/Scripts/
run-leaks 218 my ($errorMessage) = @_;
220 print STDERR basename($0) . ": $errorMessage\n";
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCollector.java 69 public void testRunFailed(String errorMessage) {
70 mErrorMessage = errorMessage;
RemoteAdtTestRunner.java 193 * @param errorMessage
195 private void reportError(String errorMessage) {
197 String.format(LaunchMessages.RemoteAdtTestRunner_RunFailedMsg_s, errorMessage));
243 public void testRunFailed(String errorMessage) {
244 reportError(errorMessage);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPv3Client.java 412 String errorMessage = tr.readString();
413 listener.read(errorMessage);
414 throw new SFTPException(errorMessage, errorCode);
451 String errorMessage = tr.readString();
452 listener.read(errorMessage);
453 throw new SFTPException(errorMessage, errorCode);
534 String errorMessage = tr.readString();
535 listener.read(errorMessage);
536 throw new SFTPException(errorMessage, errorCode);
565 String errorMessage = tr.readString()
    [all...]
  /frameworks/base/core/java/android/content/
SyncQueue.java 143 final String errorMessage = "unable to find pending row for " + operationToRemove;
144 Log.e(TAG, errorMessage, new IllegalStateException(errorMessage));
187 final String errorMessage = "unable to find pending row for " + syncOperation;
188 Log.e(TAG, errorMessage, new IllegalStateException(errorMessage));
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
76 : m_errorMessage(errorMessage)
310 bool ScriptExecutionContext::sanitizeScriptError(String& errorMessage, int& lineNumber, String& sourceURL)
315 errorMessage = "Script error.";
321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
326 m_pendingExceptions->append(adoptPtr(new PendingException(errorMessage, lineNumber, sourceURL, callStack)));
331 if (!dispatchErrorEvent(errorMessage, lineNumber, sourceURL))
332 logExceptionToConsole(errorMessage, lineNumber, sourceURL, callStack);
344 bool ScriptExecutionContext::dispatchErrorEvent(const String& errorMessage, int lineNumber, const String& sourceURL)
350 String message = errorMessage;
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerClientImpl.cpp 234 void WebWorkerClientImpl::postExceptionToWorkerObject(const WebString& errorMessage,
241 String(errorMessage),
247 bool unhandled = m_worker->dispatchEvent(ErrorEvent::create(errorMessage,
251 m_scriptExecutionContext->reportException(errorMessage, lineNumber, sourceURL, 0);
375 const String& errorMessage,
381 handled = thisPtr->m_worker->dispatchEvent(ErrorEvent::create(errorMessage,
385 thisPtr->m_scriptExecutionContext->reportException(errorMessage, lineNumber, sourceURL, 0);
  /external/webkit/Source/WebCore/bindings/v8/
WorkerContextExecutionProxy.cpp 73 String errorMessage = toWebCoreString(message->Get());
76 context->reportException(errorMessage, lineNumber, sourceURL, 0);
214 state->errorMessage = toWebCoreString(message->Get());
217 if (m_workerContext->sanitizeScriptError(state->errorMessage, state->lineNumber, state->sourceURL))
218 state->exception = V8Proxy::throwError(V8Proxy::GeneralError, state->errorMessage.utf8().data());
WorkerContextExecutionProxy.h 54 String errorMessage;
WorkerScriptController.cpp 80 m_workerContext->reportException(state.errorMessage, state.lineNumber, state.sourceURL, 0);
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 97 StringBuilder errorMessage = new StringBuilder();
99 errorMessage.append(dia);
101 throw new IllegalStateException(errorMessage.toString());
  /external/webkit/Source/WebCore/bindings/js/
WorkerScriptController.cpp 141 String errorMessage;
144 if (m_workerContext->sanitizeScriptError(errorMessage, lineNumber, sourceURL))
145 *exception = ScriptValue(*m_globalData, throwError(exec, createError(exec, errorMessage.impl())));
  /external/webkit/Source/WebCore/plugins/gtk/
PluginPackageGtk.cpp 109 gchar errorMessage[64];
110 XGetErrorText(xdisplay, error->error_code, errorMessage, 63);
115 g_get_prgname(), errorMessage,
  /external/webkit/Source/WebCore/workers/
WorkerMessagingProxy.cpp 109 static PassOwnPtr<WorkerExceptionTask> create(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy)
111 return new WorkerExceptionTask(errorMessage, lineNumber, sourceURL, messagingProxy);
115 WorkerExceptionTask(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy)
116 : m_errorMessage(errorMessage.crossThreadString())
277 void WorkerMessagingProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL)
279 m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, sourceURL, this));
WorkerMessagingProxy.h 65 virtual void postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL);
  /sdk/ddms/libs/ddmlib/tests/src/com/android/ddmlib/testrunner/
InstrumentationResultParserTest.java 197 final String errorMessage = "Unable to find instrumentation info";
198 addStatusKey(output, "Error", errorMessage);
204 mMockListener.testRunFailed(errorMessage);
238 final String errorMessage = "Unable to instantiate instrumentation";
240 output.append(errorMessage);
246 mMockListener.testRunFailed(EasyMock.contains(errorMessage));
  /frameworks/base/graphics/java/android/graphics/
BitmapRegionDecoder.java 233 private void checkRecycled(String errorMessage) {
235 throw new IllegalStateException(errorMessage);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 149 public void setStateTransformationCreationError(String errorMessage) {
150 mStateTransformationCreationErrorMessage = errorMessage;
  /external/webkit/Source/JavaScriptCore/runtime/
RegExp.h 50 const char* errorMessage() const { return m_constructionError; }
  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerModel.js 189 _failedToParseScriptSource: function(sourceURL, source, startingLine, errorLine, errorMessage)
191 var script = new WebInspector.Script(null, sourceURL, startingLine, errorLine, errorMessage, undefined);
235 scriptFailedToParse: function(sourceURL, source, startingLine, errorLine, errorMessage)
237 this._debuggerModel._failedToParseScriptSource(sourceURL, source, startingLine, errorLine, errorMessage);
  /external/webkit/Source/WebKit/chromium/public/
WebNotification.h 89 WEBKIT_API void dispatchErrorEvent(const WebString& errorMessage);
  /external/webkit/Tools/DumpRenderTree/wx/
DumpRenderTreeWx.cpp 182 const char* errorMessage;
184 errorMessage = "WebFrame::GetInnerText";
186 errorMessage = "WebFrame::GetExternalRepresentation";
187 printf("ERROR: NULL result from %s", errorMessage);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
AdapterViewRule.java 45 dropFeedback.errorMessage = String.format(
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ExportProcessor.java 218 private String translateComposerError(String errorMessage) {
220 if (VCardComposer.FAILURE_REASON_FAILED_TO_GET_DATABASE_INFO.equals(errorMessage)) {
222 } else if (VCardComposer.FAILURE_REASON_NO_ENTRY.equals(errorMessage)) {
224 } else if (VCardComposer.FAILURE_REASON_NOT_INITIALIZED.equals(errorMessage)) {
227 return errorMessage;
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 115 CharSequence errorMessage = context.getText(R.string.widget_error);
116 updateViews.setTextViewText(R.id.message, errorMessage);

Completed in 309 milliseconds

1 23 4 5 6 7