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

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/stlport/stl/config/
_feedback.h 2 * thanks to #pragma message directives.
9 # pragma message (_STLP_COMPILER)
13 # pragma message ("STLport: RTTI support -> Disabled")
15 # pragma message ("STLport: RTTI support -> Enabled")
19 # pragma message ("STLport: Exception support -> Disabled")
21 # pragma message ("STLport: Exception support -> Enabled")
25 # pragma message ("STLport: Threading model -> Multi")
27 # pragma message ("STLport: Threading model -> Mono")
31 # pragma message ("STLport: Library model -> Dynamic")
33 # pragma message ("STLport: Library model -> Static"
    [all...]
  /dalvik/libcore/archive/src/main/native/
zip.c 25 throwNewIllegalStateException (JNIEnv * env, const char *message)
27 jniThrowException(env, "java/lang/IllegalStateException", message);
34 throwNewIllegalArgumentException (JNIEnv * env, const char *message)
36 jniThrowException(env, "java/lang/IllegalArgumentException", message);
  /external/bison/lib/
yyerror.c 27 yyerror (char const *message)
29 return fprintf (stderr, "%s\n", 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/webkit/WebCore/plugins/win/
PluginMessageThrottlerWin.cpp 55 for (PluginMessage* message = m_front; message; message = next) {
56 next = message->next;
57 freeMessage(message);
63 PluginMessage* message = allocateMessage(); local
65 message->hWnd = hWnd;
66 message->msg = msg;
67 message->wParam = wParam;
68 message->lParam = lParam
83 PluginMessage* message = m_front; local
101 PluginMessage *message; local
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
XPathProcessorException.java 34 * an error message.
35 * @param message The error message.
37 public XPathProcessorException(String message)
39 super(message);
45 * an error message, and another exception
47 * @param message The error message.
50 public XPathProcessorException(String message, Exception e)
52 super(message, e)
    [all...]
  /development/tools/idegen/src/
Log.java 24 static void debug(String message) {
26 info(message);
30 static void info(String message) {
31 System.out.println(message);
  /external/apache-http/src/org/apache/http/
MethodNotSupportedException.java 49 * Creates a new MethodNotSupportedException with the specified detail message.
51 * @param message The exception detail message
53 public MethodNotSupportedException(final String message) {
54 super(message);
58 * Creates a new MethodNotSupportedException with the specified detail message and cause.
60 * @param message the exception detail message
64 public MethodNotSupportedException(final String message, final Throwable cause) {
65 super(message, cause)
    [all...]
ProtocolException.java 36 * For example a malformed status line or headers, a missing message body, etc.
47 * Creates a new ProtocolException with a <tt>null</tt> detail message.
54 * Creates a new ProtocolException with the specified detail message.
56 * @param message The exception detail message
58 public ProtocolException(String message) {
59 super(message);
63 * Creates a new ProtocolException with the specified detail message and cause.
65 * @param message the exception detail message
    [all...]
  /external/apache-http/src/org/apache/http/auth/
InvalidCredentialsException.java 46 * Creates a new InvalidCredentialsException with a <tt>null</tt> detail message.
53 * Creates a new InvalidCredentialsException with the specified message.
55 * @param message the exception detail message
57 public InvalidCredentialsException(String message) {
58 super(message);
62 * Creates a new InvalidCredentialsException with the specified detail message and cause.
64 * @param message the exception detail message
68 public InvalidCredentialsException(String message, Throwable cause)
    [all...]
  /external/apache-http/src/org/apache/http/client/
CircularRedirectException.java 45 * Creates a new CircularRedirectException with a <tt>null</tt> detail message.
52 * Creates a new CircularRedirectException with the specified detail message.
54 * @param message The exception detail message
56 public CircularRedirectException(String message) {
57 super(message);
61 * Creates a new CircularRedirectException with the specified detail message and cause.
63 * @param message the exception detail message
67 public CircularRedirectException(String message, Throwable cause)
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountsException.java 23 public AccountsException(String message) {
24 super(message);
26 public AccountsException(String message, Throwable cause) {
27 super(message, cause);
AuthenticatorException.java 23 public AuthenticatorException(String message) {
24 super(message);
26 public AuthenticatorException(String message, Throwable cause) {
27 super(message, cause);
NetworkErrorException.java 22 public NetworkErrorException(String message) {
23 super(message);
25 public NetworkErrorException(String message, Throwable cause) {
26 super(message, cause);
OperationCanceledException.java 22 public OperationCanceledException(String message) {
23 super(message);
25 public OperationCanceledException(String message, Throwable cause) {
26 super(message, cause);
  /packages/apps/Email/src/com/android/email/mail/
CertificateValidationException.java 22 public CertificateValidationException(String message) {
23 super(message);
26 public CertificateValidationException(String message, Throwable throwable) {
27 super(message, throwable);
NoSuchProviderException.java 22 public NoSuchProviderException(String message) {
23 super(message);
26 public NoSuchProviderException(String message, Throwable throwable) {
27 super(message, throwable);
  /cts/tools/host/src/com/android/cts/
ADBServerNeedRestartException.java 24 public ADBServerNeedRestartException(String message) {
25 super(message);
DeviceDisconnectedException.java 24 public DeviceDisconnectedException(String message) {
25 super(message);
  /dalvik/dx/src/com/android/dx/util/
Warning.java 26 * @param message human-oriented message
28 public Warning(String message) {
29 super(message);
  /dalvik/dx/src/junit/framework/
AssertionFailedError.java 10 public AssertionFailedError (String message) {
11 super (message);
  /dalvik/libcore/junit/src/main/java/junit/framework/
AssertionFailedError.java 10 public AssertionFailedError (String message) {
11 super (message);
  /dalvik/libcore/luni/src/test/java/com/google/coretests/
CoreTestTimeout.java 26 * Creates a new instance with the given message.
28 public CoreTestTimeout(String message) {
29 super(message);
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
CryptoException.java 17 * create a CryptoException with the given message.
19 * @param message the message to be carried with the exception.
22 String message)
24 super(message);
DataLengthException.java 20 * create a DataLengthException with the given message.
22 * @param message the message to be carried with the exception.
25 String message)
27 super(message);

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>