Searched defs:errorMessage (Results 1 - 25 of 49) sorted by relevance

12

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DValidationException.java36 public ValidationException(int codeAddress, String errorMessage) { argument
37 super(errorMessage);
41 public ValidationException(String errorMessage) { argument
42 super(errorMessage);
/external/icu4c/samples/layout/
H A DFontMap.h39 char errorMessage[256]; member in class:FontMap
H A DUnicodeReader.cpp34 char errorMessage[128]; local
41 sprintf(errorMessage,"Couldn't open %s: %s \n", fileName, strerror(errno));
42 guiSupport->postErrorMessage(errorMessage, "Text File Error");
74 sprintf(errorMessage, "Couldn't detect the encoding of %s: (%2.2X, %2.2X, %2.2X, %2.2X)\n", fileName,
76 guiSupport->postErrorMessage(errorMessage, "Text File Error");
86 sprintf(errorMessage,"Couldn't get memory for reading %s: %s \n", fileName, strerror(errno));
87 guiSupport->postErrorMessage(errorMessage, "Text File Error");
94 sprintf(errorMessage,"Couldn't read %s: %s \n", fileName, strerror(errno));
95 guiSupport->postErrorMessage(errorMessage, "Text File Error");
109 sprintf(errorMessage,"Could
[all...]
/external/nist-sip/java/javax/sip/header/
H A DErrorInfoHeader.java13 void setErrorMessage(String errorMessage) throws ParseException; argument
/external/smali/smali/src/main/java/org/jf/smali/
H A DSemanticException.java38 private String errorMessage; field in class:SemanticException
41 SemanticException(IntStream input, String errorMessage, Object... messageArguments) { argument
43 this.errorMessage = String.format(errorMessage, messageArguments);
48 this.errorMessage = ex.getMessage();
51 SemanticException(IntStream input, CommonTree tree, String errorMessage, Object... messageArguments) { argument
58 this.errorMessage = String.format(errorMessage, messageArguments);
61 SemanticException(IntStream input, Token token, String errorMessage, Object... messageArguments) { argument
68 this.errorMessage
[all...]
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptsyntaxcheckresult.cpp90 \sa state(), errorMessage()
114 QString QScriptSyntaxCheckResult::errorMessage() const function in class:QScriptSyntaxCheckResult
116 return d_ptr->errorMessage();
125 QString QScriptSyntaxCheckResultPrivate::errorMessage() const function in class:QScriptSyntaxCheckResultPrivate
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerContextExecutionProxy.h54 String errorMessage; member in struct:WebCore::WorkerContextExecutionState
H A DWorkerContextExecutionProxy.cpp73 String errorMessage = toWebCoreString(message->Get()); local
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());
H A DV8DOMWindowShell.cpp110 String errorMessage = toWebCoreString(errorMessageString); local
122 document->reportException(errorMessage, message->GetLineNumber(), resourceNameString, callStack);
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DParser.java39 * @param errorMessage description of an error
41 void error(int line, String lineContent, String fileName, String errorMessage); argument
H A DNewHdfParser.java693 private static void reportError(ParseState state, String errorMessage) { argument
696 errorMessage);
699 + errorMessage + " : " + state.line);
/external/guava/guava/src/com/google/common/base/
H A DPreconditions.java81 * @param errorMessage the exception message to use if the check fails; will
86 boolean expression, @Nullable Object errorMessage) {
88 throw new IllegalArgumentException(String.valueOf(errorMessage));
138 * @param errorMessage the exception message to use if the check fails; will
143 boolean expression, @Nullable Object errorMessage) {
145 throw new IllegalStateException(String.valueOf(errorMessage));
197 * @param errorMessage the exception message to use if the check fails; will
202 public static <T> T checkNotNull(T reference, @Nullable Object errorMessage) { argument
204 throw new NullPointerException(String.valueOf(errorMessage));
85 checkArgument( boolean expression, @Nullable Object errorMessage) argument
142 checkState( boolean expression, @Nullable Object errorMessage) argument
/external/webkit/Source/JavaScriptCore/runtime/
H A DExceptionHelpers.cpp96 UString errorMessage = makeUString("'", value.toString(exec), "' is not a valid argument for '", op, "'"); local
97 JSObject* exception = createTypeError(exec, errorMessage);
105 UString errorMessage = makeUString("'", value.toString(exec), "' is not a constructor"); local
106 JSObject* exception = createTypeError(exec, errorMessage);
114 UString errorMessage = makeUString("'", value.toString(exec), "' is not a function"); local
115 JSObject* exception = createTypeError(exec, errorMessage);
123 UString errorMessage = makeUString("'", value.toString(exec), "' is not an object"); local
124 JSObject* exception = createTypeError(exec, errorMessage);
H A DRegExp.h50 const char* errorMessage() const { return m_constructionError; } function in class:JSC::RegExp
/external/webkit/Source/WebCore/bindings/js/
H A DWorkerScriptController.cpp141 String errorMessage; local
144 if (m_workerContext->sanitizeScriptError(errorMessage, lineNumber, sourceURL))
145 *exception = ScriptValue(*m_globalData, throwError(exec, createError(exec, errorMessage.impl())));
H A DScriptDebugServer.cpp231 void ScriptDebugServer::dispatchFailedToParseSource(const ListenerSet& listeners, SourceProvider* sourceProvider, int errorLine, const String& errorMessage) argument
240 copy[i]->failedToParseSource(url, data, firstLine, errorLine, errorMessage);
261 void ScriptDebugServer::sourceParsed(ExecState* exec, SourceProvider* sourceProvider, int errorLine, const UString& errorMessage) argument
275 dispatchFailedToParseSource(*listeners, sourceProvider, errorLine, ustringToString(errorMessage));
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginPackageGtk.cpp109 gchar errorMessage[64]; local
110 XGetErrorText(xdisplay, error->error_code, errorMessage, 63);
115 g_get_prgname(), errorMessage,
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DTemplateCompiler.java91 String errorMessage = "Could not compile template: " + templateName;
92 Class<?> templateClass = compileAndLoad(javaSource, errorMessage);
119 private Class<?> compileAndLoad(CharSequence javaSource, String errorMessage) argument
139 throwExceptionWithLotsOfDiagnosticInfo(javaSource, errorMessage, diagnosticCollector
145 private void throwExceptionWithLotsOfDiagnosticInfo(CharSequence javaSource, String errorMessage, argument
149 StringBuilder message = new StringBuilder(errorMessage).append('\n');
/external/webkit/Source/WebCore/workers/
H A DWorkerMessagingProxy.cpp109 static PassOwnPtr<WorkerExceptionTask> create(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) argument
111 return new WorkerExceptionTask(errorMessage, lineNumber, sourceURL, messagingProxy);
115 WorkerExceptionTask(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) argument
116 : m_errorMessage(errorMessage.crossThreadString())
277 void WorkerMessagingProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) argument
279 m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, sourceURL, this));
H A DDefaultSharedWorkerRepository.cpp82 virtual void postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL);
157 static void postExceptionTask(ScriptExecutionContext* context, const String& errorMessage, int lineNumber, const String& sourceURL) argument
159 context->reportException(errorMessage, lineNumber, sourceURL, 0);
162 void SharedWorkerProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) argument
166 (*iter)->postTask(createCallbackTask(&postExceptionTask, errorMessage, lineNumber, sourceURL));
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerClientImpl.cpp234 void WebWorkerClientImpl::postExceptionToWorkerObject(const WebString& errorMessage, argument
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);
372 postExceptionToWorkerObjectTask( ScriptExecutionContext* context, WebWorkerClientImpl* thisPtr, const String& errorMessage, int lineNumber, const String& sourceURL) argument
H A DWebWorkerBase.cpp286 void WebWorkerBase::postExceptionToWorkerObject(const String& errorMessage, argument
291 errorMessage, lineNumber,
297 const String& errorMessage,
303 thisPtr->commonClient()->postExceptionToWorkerObject(errorMessage,
295 postExceptionTask(ScriptExecutionContext* context, WebWorkerBase* thisPtr, const String& errorMessage, int lineNumber, const String& sourceURL) argument
/external/webkit/Tools/DumpRenderTree/wx/
H A DDumpRenderTreeWx.cpp182 const char* errorMessage; local
184 errorMessage = "WebFrame::GetInnerText";
186 errorMessage = "WebFrame::GetExternalRepresentation";
187 printf("ERROR: NULL result from %s", errorMessage);
/external/webkit/Source/WebCore/dom/
H A DScriptExecutionContext.cpp75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) argument
76 : m_errorMessage(errorMessage)
310 bool ScriptExecutionContext::sanitizeScriptError(String& errorMessage, int& lineNumber, String& sourceURL) argument
315 errorMessage = "Script error.";
321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) argument
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) argument
350 String message = errorMessage;
[all...]
/external/expat/tests/
H A Druntests.c72 _expect_failure(char *text, enum XML_Error errorCode, char *errorMessage, argument
78 _fail_unless(0, file, lineno, errorMessage);
83 #define expect_failure(text, errorCode, errorMessage) \
84 _expect_failure((text), (errorCode), (errorMessage), \

Completed in 1007 milliseconds

12