Searched refs:message (Results 51 - 75 of 5913) sorted by relevance

1234567891011>>

/external/protobuf/python/google/protobuf/internal/
H A Dtest_util.py45 def SetAllFields(message):
46 """Sets every field in the message to a unique value.
49 message: A unittest_pb2.TestAllTypes instance.
56 message.optional_int32 = 101
57 message.optional_int64 = 102
58 message.optional_uint32 = 103
59 message.optional_uint64 = 104
60 message.optional_sint32 = 105
61 message.optional_sint64 = 106
62 message
[all...]
/external/apache-http/src/org/apache/commons/logging/
H A DLog.java149 * <p> Log a message with trace log level. </p>
151 * @param message log this message
153 public void trace(Object message); argument
159 * @param message log this message
162 public void trace(Object message, Throwable t); argument
166 * <p> Log a message with debug log level. </p>
168 * @param message log this message
170 debug(Object message) argument
179 debug(Object message, Throwable t) argument
187 info(Object message) argument
196 info(Object message, Throwable t) argument
204 warn(Object message) argument
213 warn(Object message, Throwable t) argument
221 error(Object message) argument
230 error(Object message, Throwable t) argument
238 fatal(Object message) argument
247 fatal(Object message, Throwable t) argument
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DNoOpLog.java45 public void trace(Object message) { } argument
47 public void trace(Object message, Throwable t) { } argument
49 public void debug(Object message) { } argument
51 public void debug(Object message, Throwable t) { } argument
53 public void info(Object message) { } argument
55 public void info(Object message, Throwable t) { } argument
57 public void warn(Object message) { } argument
59 public void warn(Object message, Throwable t) { } argument
61 public void error(Object message) { } argument
63 public void error(Object message, Throwabl argument
65 fatal(Object message) argument
67 fatal(Object message, Throwable t) argument
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Derror-accessors.js28 // Test that the message property of error objects is a data property.
32 // message is constructed using the constructor.
33 var error1 = new Error("custom message");
37 assertEquals("custom message",
38 Object.getOwnPropertyDescriptor(error1, "message").value);
39 o.message = "another message";
40 assertEquals("another message", o.message);
41 assertEquals("custom message", error
[all...]
/external/doclava/src/com/google/doclava/apicheck/
H A DApiParseException.java26 public ApiParseException(String message) { argument
27 super(message);
30 public ApiParseException(String message, Exception cause) { argument
31 super(message, cause);
37 public ApiParseException(String message, int line) { argument
38 super(message);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DNumberParseException.java43 private String message; field in class:NumberParseException
45 public NumberParseException(ErrorType errorType, String message) { argument
46 super(message);
47 this.message = message;
60 return "Error type: " + errorType + ". " + message;
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dreflection_ops_unittest.cc51 unittest::TestAllTypes message; local
53 TestUtil::SetAllFields(&message);
54 TestUtil::ExpectAllFieldsSet(message);
58 unittest::TestAllTypes message, message2; local
60 TestUtil::SetAllFields(&message);
62 ReflectionOps::Copy(message, &message2);
72 unittest::TestAllExtensions message, message2; local
74 TestUtil::SetAllExtensions(&message);
76 ReflectionOps::Copy(message, &message2);
85 unittest::TestAllTypes message, message local
112 unittest::TestAllExtensions message, message2; local
161 unittest::TestAllTypes message; local
171 unittest::TestAllTypes message; local
192 unittest::TestAllExtensions message; local
215 unittest::TestEmptyMessage message; local
224 unittest::TestAllTypes message; local
255 unittest::TestAllExtensions message; local
290 unittest::TestRequired message; local
302 unittest::TestRequiredForeign message; local
330 unittest::TestAllExtensions message; local
357 FindInitializationErrors(const Message& message) argument
364 unittest::TestRequired message; local
369 unittest::TestRequiredForeign message; local
386 unittest::TestAllExtensions message; local
[all...]
/external/protobuf/src/google/protobuf/
H A Dreflection_ops_unittest.cc51 unittest::TestAllTypes message; local
53 TestUtil::SetAllFields(&message);
54 TestUtil::ExpectAllFieldsSet(message);
58 unittest::TestAllTypes message, message2; local
60 TestUtil::SetAllFields(&message);
62 ReflectionOps::Copy(message, &message2);
72 unittest::TestAllExtensions message, message2; local
74 TestUtil::SetAllExtensions(&message);
76 ReflectionOps::Copy(message, &message2);
85 unittest::TestAllTypes message, message local
112 unittest::TestAllExtensions message, message2; local
161 unittest::TestAllTypes message; local
171 unittest::TestAllTypes message; local
192 unittest::TestAllExtensions message; local
215 unittest::TestEmptyMessage message; local
224 unittest::TestAllTypes message; local
255 unittest::TestAllExtensions message; local
290 unittest::TestRequired message; local
302 unittest::TestRequiredForeign message; local
330 unittest::TestAllExtensions message; local
357 FindInitializationErrors(const Message& message) argument
364 unittest::TestRequired message; local
369 unittest::TestRequiredForeign message; local
386 unittest::TestAllExtensions message; local
[all...]
/external/apache-http/src/org/apache/http/
H A DParseException.java36 * Parse errors when receiving a message will typically trigger
62 * Creates a {@link ParseException} with a detail message.
64 * @param message the exception detail message, or <code>null</code>
66 public ParseException(String message) { argument
67 super(message);
/external/apache-http/src/org/apache/http/conn/
H A DConnectionPoolTimeoutException.java52 * Creates a ConnectTimeoutException with a <tt>null</tt> detail message.
59 * Creates a ConnectTimeoutException with the specified detail message.
61 * @param message The exception detail message
63 public ConnectionPoolTimeoutException(String message) { argument
64 super(message);
/external/bison/lib/
H A Dyyerror.c27 yyerror (char const *message) argument
29 fputs (message, stderr);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omaha/
H A DRequestFailureException.java25 public RequestFailureException(String message) { argument
26 this(message, ERROR_UNDEFINED);
29 public RequestFailureException(String message, int error) { argument
30 super(message);
34 public RequestFailureException(String message, Throwable cause) { argument
35 this(message, cause, ERROR_UNDEFINED);
38 public RequestFailureException(String message, Throwable cause, int error) { argument
39 super(message, cause);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dirc.js6 * an IRC message command and to close the connection respectively.
9 * being opened, a message being received and the connection being closed.
13 function log(message) { console.log(message); };
36 this.sendMessage = function(recipient, message) {
37 sendCommand(commands.PRIVMSG, [recipient], message);
44 this.disconnect = function(message) {
45 sendCommand(commands.QUIT, [], message);
62 this.onMessage = function(message) {
63 log("<< " + message);
[all...]
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dno_interface.cc11 bool NoInterfaceStub::Accept(Message* message) { argument
15 bool NoInterfaceStub::AcceptWithResponder(Message* message, argument
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDeserializationException.java8 * Error when deserializing a mojo message.
13 * Constructs a new deserialization exception with the specified detail message.
15 public DeserializationException(String message) { argument
16 super(message);
H A DSerializationException.java8 * Error that can be thrown when serializing a mojo message.
13 * Constructs a new serialization exception with the specified detail message.
15 public SerializationException(String message) { argument
16 super(message);
/external/chromium_org/native_client_sdk/src/examples/api/input_event/
H A Dexample.js11 function handleMessage(message) {
12 common.logMessage(message.data);
/external/chromium_org/native_client_sdk/src/examples/tutorial/multi_platform/
H A Dexample.js11 // This function is called by common.js when a message is received from the
13 function handleMessage(message) {
15 logEl.textContent += message.data;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DHeapSnapshotWorker.js31 function postMessageWrapper(message)
33 postMessage(message);
37 addEventListener("message", dispatcher.dispatchMessage.bind(dispatcher), false);
/external/chromium_org/third_party/icu/source/samples/layout/
H A DGDIGUISupport.cpp18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) argument
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-3159.js9 e.message);
/external/deqp/framework/randomshaders/
H A DrsgDefs.hpp39 Exception (const std::string& message) : std::runtime_error(message) {} argument
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DDexException.java24 public DexException(String message) { argument
25 super(message);
/external/emma/core/java12/com/vladium/emma/
H A DEMMAException.java23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
32 * @param message the detail message [can be null]
34 public EMMAException (final String message) argument
36 super (message);
40 * Constructs an exception with given error message/code and null cause.
42 * @param message the detail message [can be null]
43 * @param arguments message forma
47 EMMAException(final String message, final Object [] arguments) argument
68 EMMAException(final String message, final Throwable cause) argument
82 EMMAException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
H A DEMMARuntimeException.java23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
32 * @param message the detail message [can be null]
34 public EMMARuntimeException (final String message) argument
36 super (message);
40 * Constructs an exception with given error message/code and null cause.
42 * @param message the detail message [can be null]
43 * @param arguments message forma
47 EMMARuntimeException(final String message, final Object [] arguments) argument
68 EMMARuntimeException(final String message, final Throwable cause) argument
82 EMMARuntimeException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]

Completed in 601 milliseconds

1234567891011>>