HomeSort by relevance Sort by last modified time
    Searched defs:message (Results 1 - 25 of 431) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/icu/src/main/native/
ErrorCode.cpp 23 const char* message = u_errorName(errorCode); local
30 return jniThrowException(env, "java/lang/IllegalArgumentException", message);
33 return jniThrowException(env, "java/lang/ArrayIndexOutOfBoundsException", message);
35 return jniThrowException(env, "java/lang/UnsupportedOperationException", message);
37 return jniThrowRuntimeException(env, message);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/
LocalizedException.java 11 protected ErrorBundle message; field in class:LocalizedException
15 * Constructs a new LocalizedException with the specified localized message.
16 * @param message the {@link ErrorBundle} that contains the message for the exception
18 public LocalizedException(ErrorBundle message)
20 super(message.getText(Locale.getDefault()));
21 this.message = message;
25 * Constructs a new LocalizedException with the specified localized message and cause.
26 * @param message the {@link ErrorBundle} that contains the message for the exceptio
    [all...]
  /external/opencore/oscl/unit_test/src/
test_problem.cpp 23 const _STRING& message) :
26 m_message(message)
65 test_problem::message(void) const function in class:test_problem
  /external/webkit/WebKit/gtk/tests/
testhttpbackend.c 39 SoupMessage* message = webkit_network_request_get_message(request); local
46 g_assert_cmpint(G_OBJECT(message)->ref_count, ==, 1);
testnetworkrequest.c 33 SoupMessage* message; local
38 message = webkit_network_request_get_message(request);
39 g_assert(!message);
43 message = soup_message_new("GET", "http://debian.org/");
44 request = WEBKIT_NETWORK_REQUEST(g_object_new(WEBKIT_TYPE_NETWORK_REQUEST, "message", message, NULL));
46 g_assert_cmpint(G_OBJECT(message)->ref_count, ==, 2);
48 g_assert_cmpint(G_OBJECT(message)->ref_count, ==, 1);
49 g_object_unref(message);
52 message = soup_message_new("GET", "http://debian.org/")
65 SoupMessage* message; local
    [all...]
testnetworkresponse.c 34 SoupMessage* message; local
39 message = webkit_network_response_get_message(response);
40 g_assert(!message);
44 message = soup_message_new("GET", "http://debian.org/");
45 response = WEBKIT_NETWORK_RESPONSE(g_object_new(WEBKIT_TYPE_NETWORK_RESPONSE, "message", message, NULL));
47 g_assert_cmpint(G_OBJECT(message)->ref_count, ==, 2);
49 g_assert_cmpint(G_OBJECT(message)->ref_count, ==, 1);
50 g_object_unref(message);
53 message = soup_message_new("GET", "http://debian.org/")
66 SoupMessage* message; local
    [all...]
  /external/bluetooth/glib/glib/
gerror.h 38 gchar *message; member in struct:_GError
48 const gchar *message);
69 const gchar *message);
79 /* if (err) prefix the formatted string to the ->message */
  /external/webkit/JavaScriptCore/runtime/
ErrorPrototype.cpp 44 putDirectWithoutTransition(exec->propertyNames().message, jsNontrivialString(exec, "Unknown error"), DontEnum);
53 JSValue message = thisObj->get(exec, exec->propertyNames().message); local
58 if (!message.isUndefined())
59 return jsMakeNontrivialString(exec, name.toString(exec), ": ", message.toString(exec));
62 if (!message.isUndefined())
63 return jsMakeNontrivialString(exec, "Error: ", message.toString(exec));
  /external/webkit/WebCore/bindings/generic/
BindingSecurityBase.cpp 81 String message; local
  /external/webkit/WebCore/bindings/js/
JSMessagePortCustom.h 52 PassRefPtr<SerializedScriptValue> message = SerializedScriptValue::create(exec, args.at(0)); local
59 impl->postMessage(message, &portArray, ec);
  /external/webkit/WebCore/bindings/v8/custom/
V8DedicatedWorkerContextCustom.cpp 49 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0]); local
56 workerContext->postMessage(message.release(), &portArray, ec);
V8WorkerCustom.cpp 94 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0]); local
101 worker->postMessage(message.release(), &portArray, ec);
  /packages/apps/Email/src/org/apache/james/mime4j/message/
BinaryBody.java 20 package org.apache.james.mime4j.message;
BodyPart.java 20 package org.apache.james.mime4j.message;
36 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
TextBody.java 20 package org.apache.james.mime4j.message;
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViews_ActionExceptionTest.java 46 String message = "This is exception message"; local
47 new RemoteViews.ActionException(message);
  /dalvik/libcore/xml/src/main/java/org/xml/sax/
SAXException.java 53 * @param message The error or warning message.
55 public SAXException (String message) {
56 super(message);
65 * one, and its message will become the default message for
81 * one, but the new exception will have its own message.</p>
83 * @param message The detail message.
86 public SAXException (String message, Exception e
104 String message = super.getMessage(); local
    [all...]
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
MidiEvent.java 21 private MidiMessage message; field in class:MidiEvent
25 public MidiEvent(MidiMessage message, long tick) {
26 this.message = message;
31 return message;
  /external/apache-http/src/org/apache/http/message/
HeaderValueFormatter.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/message/HeaderValueFormatter.java $
32 package org.apache.http.message;
HeaderValueParser.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/message/HeaderValueParser.java $
32 package org.apache.http.message;
LineFormatter.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/message/LineFormatter.java $
32 package org.apache.http.message;
43 * Interface for formatting elements of the HEAD section of an HTTP message.
LineParser.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/message/LineParser.java $
32 package org.apache.http.message;
44 * Interface for parsing lines in the HEAD section of an HTTP message.
  /external/dbus/dbus/
dbus-errors.h 50 const char *message; /**< public error message field */ member in struct:DBusError
65 const char *message,
69 const char *message);
  /external/webkit/WebCore/dom/
ErrorEvent.h 47 static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber)
49 return adoptRef(new ErrorEvent(message, fileName, lineNumber));
53 void initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber);
55 const String& message() const { return m_message; } function in class:WebCore::ErrorEvent
63 ErrorEvent(const String& message, const String& fileName, unsigned lineNumber);
  /external/webkit/WebCore/storage/
SQLError.h 41 static PassRefPtr<SQLError> create(unsigned code, const String& message) { return adoptRef(new SQLError(code, message)); }
44 String message() const { return m_message.threadsafeCopy(); } function in class:WebCore::SQLError
47 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.threadsafeCopy()) { }

Completed in 629 milliseconds

1 2 3 4 5 6 7 8 91011>>