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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Parser/
block-block-storageclass.c 7 __block const char * message = "HELLO"; local
13 printf ("%s(%d)\n", message, X);
  /external/clang/test/Sema/
block-storageclass.c 8 __block const char * message = "HELLO"; local
14 printf ("%s(%d)\n", message, X);
  /external/protobuf/java/src/test/java/com/google/protobuf/
TestUtil.java 243 * These are useful for testing various protocol message features, e.g.
244 * set all fields of a message, serialize it, parse it, and check that all
313 * Set every field of {@code message} to the values expected by
316 public static void setAllFields(TestAllTypes.Builder message) {
317 message.setOptionalInt32 (101);
318 message.setOptionalInt64 (102);
319 message.setOptionalUint32 (103);
320 message.setOptionalUint64 (104);
321 message.setOptionalSint32 (105);
322 message.setOptionalSint64 (106)
    [all...]
  /external/oprofile/libutil++/
op_exception.h 35 std::string message; member in class:op_exception
  /external/webkit/Source/JavaScriptCore/runtime/
ErrorPrototype.cpp 56 JSValue message = thisObj->get(exec, exec->propertyNames().message); local
61 if (!message.isUndefined())
62 return JSValue::encode(jsMakeNontrivialString(exec, name.toString(exec), ": ", message.toString(exec)));
65 if (!message.isUndefined())
66 return JSValue::encode(jsMakeNontrivialString(exec, "Error: ", message.toString(exec)));
  /external/webkit/Source/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/webkit/Tools/MiniBrowser/win/
main.cpp 48 if (msg.message != WM_KEYDOWN && msg.message != WM_SYSKEYDOWN && msg.message != WM_KEYUP && msg.message != WM_SYSKEYUP)
55 // Don't call TranslateMessage() on key events destined for a WebKit2 view, WebKit will do this if it doesn't handle the message.
67 MSG message; local
68 while (BOOL result = ::GetMessage(&message, 0, 0, 0)) {
72 if (shouldTranslateMessage(message))
73 ::TranslateMessage(&message);
75 if (!MiniBrowser::shared().handleMessage(&message))
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 39 AdbMessage message = new AdbMessage(); local
40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
41 if (! message.write(mDevice)) {
55 public void handleMessage(AdbMessage message) {
56 switch (message.getCommand()) {
58 mPeerId = message.getArg0();
64 mDevice.log(message.getDataString());
71 AdbMessage message = new AdbMessage(); local
72 message.set(AdbMessage.A_OKAY, mId, mPeerId);
73 message.write(mDevice)
    [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/javassist/src/main/javassist/
CannotCompileException.java 43 private String message; field in class:CannotCompileException
46 * Gets a long message if it is available.
49 if (message != null)
50 return message;
56 * Constructs a CannotCompileException with a message.
58 * @param msg the message.
62 message = msg;
74 message = null;
79 * Constructs a CannotCompileException with a detailed message
82 * @param msg the message
    [all...]
  /external/llvm/lib/Object/
Error.cpp 24 virtual std::string message(int ev) const;
33 std::string _object_error_category::message(int ev) const { function in class:_object_error_category
43 llvm_unreachable("An enumerator of object_error does not have a message "
  /external/nist-sip/java/gov/nist/javax/sip/message/
RequestExt.java 1 package gov.nist.javax.sip.message;
3 import javax.sip.message.Request;
ResponseExt.java 1 package gov.nist.javax.sip.message;
3 import javax.sip.message.Response;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
InfoSink.cpp 9 void TInfoSinkBase::prefix(TPrefixType message) {
10 switch(message) {
48 void TInfoSinkBase::message(TPrefixType message, const char* s) { function in class:TInfoSinkBase
49 prefix(message);
54 void TInfoSinkBase::message(TPrefixType message, const char* s, TSourceLoc loc) { function in class:TInfoSinkBase
55 prefix(message);
  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurityBase.cpp 81 String message; local
  /external/webkit/Source/WebCore/bindings/js/
JSMessagePortCustom.h 51 PassRefPtr<SerializedScriptValue> message = SerializedScriptValue::create(exec, exec->argument(0)); local
58 impl->postMessage(message, &portArray, ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8DedicatedWorkerContextCustom.cpp 50 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(args[0], didThrow); local
59 workerContext->postMessage(message.release(), &portArray, ec);
  /frameworks/media/libvideoeditor/osal/src/
M4PSW_Trace.c 55 M4OSA_Char message[MAX_STRING_SIZE]; local
59 /* get the var arguments into the string message to be able to print */
61 vsprintf((char *)message, (const char *)format,marker ); /* formats and writes the data into message */
66 __android_log_print(ANDROID_LOG_INFO, "M4OSA_Trace", "%s", (char*)message);
69 (char *)message, line, file);
80 M4OSA_Char message[MAX_STRING_SIZE]; local
84 /* get the var arguments into the string message to be able to print */
86 vsprintf((char *)message, (const char *)stringMsg,marker ); /* formats and writes the data into message */
    [all...]
  /libcore/luni/src/main/native/
JniException.cpp 24 const char* message = u_errorName(error); local
27 return jniThrowException(env, "java/lang/IllegalArgumentException", message);
30 return jniThrowException(env, "java/lang/ArrayIndexOutOfBoundsException", message);
32 return jniThrowException(env, "java/lang/UnsupportedOperationException", message);
34 return jniThrowRuntimeException(env, message);
43 void jniThrowOutOfMemoryError(JNIEnv* env, const char* message) {
44 jniThrowException(env, "java/lang/OutOfMemoryError", message);
  /packages/apps/Email/emailcommon/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/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilitySettingsTest.java 40 String message = "Accessibility settings activity must be launched via Intent " + local
42 assertTrue(message, !resolvedActivities.isEmpty());

Completed in 1098 milliseconds

1 2 3 4 5 6 7 8 91011>>