Searched defs:message (Results 1 - 25 of 1175) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Dyyerror.c27 yyerror (char const *message) argument
29 fputs (message, stderr);
/external/clang/test/Parser/
H A Dblock-block-storageclass.c8 __block const char * message = "HELLO"; local
14 printf ("%s(%d)\n", message, X);
/external/clang/test/Sema/
H A Dblock-storageclass.c9 __block const char * message = "HELLO"; local
15 printf ("%s(%d)\n", message, X);
/external/icu4c/samples/layout/
H A DGDIGUISupport.cpp18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) argument
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
H A DGnomeGUISupport.cpp22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title) argument
28 s = g_strconcat(title, ":\n", message, NULL);
33 fprintf(stderr, "%s: %s\n", title, message);
/external/webkit/Source/WebCore/inspector/
H A DInspectorClient.cpp43 bool InspectorClient::doDispatchMessageOnFrontendPage(Page* frontendPage, const String& message) argument
57 dispatchToFrontend += message;
/external/webkit/Source/WebCore/platform/haiku/
H A DPlatformWheelEventHaiku.cpp42 PlatformWheelEvent::PlatformWheelEvent(BMessage* message) argument
43 : m_position(message->FindPoint("be:view_where"))
44 , m_globalPosition(message->FindPoint("screen_where"))
45 , m_deltaX(message->FindFloat("be:wheel_delta_x"))
46 , m_deltaY(message->FindFloat("be:wheel_delta_y"))
55 int32 modifiers = message->FindInt32("modifiers");
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DCompressedMessage.java33 package com.jme3.network.message;
47 private Message message; field in class:CompressedMessage
52 this.message = msg;
55 public void setMessage(Message message) { argument
56 this.message = message;
60 return message;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DDataLengthException.java20 * create a DataLengthException with the given message.
22 * @param message the message to be carried with the exception.
25 String message)
27 super(message);
24 DataLengthException( String message) argument
H A DRuntimeCryptoException.java17 * create a RuntimeCryptoException with the given message.
19 * @param message the message to be carried with the exception.
22 String message)
24 super(message);
21 RuntimeCryptoException( String message) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DNoSuchStoreException.java6 public NoSuchStoreException(String message) argument
8 super(message);
/external/icu4c/test/intltest/
H A Dicusvtst.h38 UnicodeString& lrmsg(UnicodeString& result, const UnicodeString& message, const UObject* lhs, const UObject* rhs) const;
39 void confirmBoolean(const UnicodeString& message, UBool val);
41 void confirmEqual(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
43 void confirmEqual(const UnicodeString& message, const Integer* lhs, const Integer* rhs);
44 void confirmEqual(const UnicodeString& message, const UnicodeString* lhs, const UnicodeString* rhs);
45 void confirmEqual(const UnicodeString& message, const Locale* lhs, const Locale* rhs);
47 void confirmStringsEqual(const UnicodeString& message, const UnicodeString& lhs, const UnicodeString& rhs);
48 void confirmIdentical(const UnicodeString& message, const UObject* lhs, const UObject* rhs);
49 void confirmIdentical(const UnicodeString& message, int32_t lhs, int32_t rhs);
51 void msgstr(const UnicodeString& message, UObjec
52 logstr(const UnicodeString& message, UObject* obj) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DRendererException.java46 public RendererException(String message){ argument
47 super(message);
/external/nist-sip/java/javax/sip/
H A DDialogDoesNotExistException.java7 public DialogDoesNotExistException(String message) { argument
8 super(message);
11 public DialogDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DInvalidArgumentException.java7 public InvalidArgumentException(String message) { argument
8 super(message);
11 public InvalidArgumentException(String message, Throwable cause) { argument
12 super(message, cause);
H A DObjectInUseException.java7 public ObjectInUseException(String message) { argument
8 super(message);
11 public ObjectInUseException(String message, Throwable cause) { argument
12 super(message, cause);
H A DPeerUnavailableException.java7 public PeerUnavailableException(String message) { argument
8 super(message);
11 public PeerUnavailableException(String message, Throwable cause) { argument
12 super(message, cause);
H A DProviderDoesNotExistException.java7 public ProviderDoesNotExistException(String message) { argument
8 super(message);
11 public ProviderDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DSipException.java7 public SipException(String message) { argument
8 super(message);
11 public SipException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionAlreadyExistsException.java7 public TransactionAlreadyExistsException(String message) { argument
8 super(message);
11 public TransactionAlreadyExistsException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionDoesNotExistException.java7 public TransactionDoesNotExistException(String message) { argument
8 super(message);
11 public TransactionDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionUnavailableException.java7 public TransactionUnavailableException(String message) { argument
8 super(message);
11 public TransactionUnavailableException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransportNotSupportedException.java7 public TransportNotSupportedException(String message) { argument
8 super(message);
11 public TransportNotSupportedException(String message, Throwable cause) { argument
12 super(message, cause);
/external/oprofile/libutil++/
H A Dop_exception.h35 std::string message; member in class:op_exception
/external/webkit/Source/WebCore/dom/
H A DMessagePortChannel.cpp36 PassOwnPtr<MessagePortChannel::EventData> MessagePortChannel::EventData::create(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
38 return new EventData(message, channels);
41 MessagePortChannel::EventData::EventData(PassRefPtr<SerializedScriptValue> message, PassOwnPtr<MessagePortChannelArray> channels) argument
42 : m_message(message)

Completed in 463 milliseconds

1234567891011>>