HomeSort by relevance Sort by last modified time
    Searched refs:message (Results 251 - 275 of 6277) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/
ConnectionClosedException.java 55 * Creates a new ConnectionClosedException with the specified detail message.
57 * @param message The exception detail message
59 public ConnectionClosedException(final String message) {
60 super(message);
MalformedChunkCodingException.java 49 * Creates a MalformedChunkCodingException without a detail message.
56 * Creates a MalformedChunkCodingException with the specified detail message.
58 * @param message The exception detail message
60 public MalformedChunkCodingException(final String message) {
61 super(message);
NoHttpResponseException.java 55 * Creates a new NoHttpResponseException with the specified detail message.
57 * @param message exception message
59 public NoHttpResponseException(String message) {
60 super(message);
UnsupportedHttpVersionException.java 54 * Creates an exception without a detail message.
61 * Creates an exception with the specified detail message.
63 * @param message The exception detail message
65 public UnsupportedHttpVersionException(final String message) {
66 super(message);
  /external/apache-http/src/org/apache/http/client/
NonRepeatableRequestException.java 53 * Creates a new NonRepeatableEntityException with a <tt>null</tt> detail message.
60 * Creates a new NonRepeatableEntityException with the specified detail message.
62 * @param message The exception detail message
64 public NonRepeatableRequestException(String message) {
65 super(message);
  /external/apache-http/src/org/apache/http/impl/cookie/
DateParseException.java 59 * @param message the exception message
61 public DateParseException(String message) {
62 super(message);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMDOMException.java 37 * @param message
39 public DTMDOMException(short code, String message)
41 super(code, message);
  /external/bcc/src/cc/frontends/p4/compiler/
compilationException.py 6 def __init__(self, isBug, format, *message):
12 self.message = message
17 # TODO: format this message nicely
18 return self.format.format(*self.message)
24 def __init__(self, format, *message):
28 self.message = message
32 # TODO: format this message nicely
34 *self.message)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DSA.java 21 * sign the passed in message (usually the output of a hash function).
23 * @param message the message to be signed.
26 public BigInteger[] generateSignature(byte[] message);
29 * verify the message message against the signature values r and s.
31 * @param message the message that was supposed to have been signed.
35 public boolean verifySignature(byte[] message, BigInteger r, BigInteger s);
  /external/clang/test/Parser/
block-block-storageclass.c 8 __block const char * message = "HELLO"; local
14 printf ("%s(%d)\n", message, X);
  /external/clang/test/Sema/
block-storageclass.c 9 __block const char * message = "HELLO"; local
15 printf ("%s(%d)\n", message, X);
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
UnrecoverableException.java 28 public UnrecoverableException(String message) {
29 super(message);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
InvalidFormatException.java 28 public InvalidFormatException(String message) {
29 super(message);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
InvalidFormatException.java 24 public InvalidFormatException(String message) {
25 super(message);
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Reporter.java 28 void info(String message);
33 void info(ASTNode node, String message);
  /external/image_io/includes/image_io/base/
cout_message_writer.h 14 void WriteMessage(const Message& message) override {
15 std::cout << GetFormattedMessage(message) << std::endl;
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
message.pass.cpp 14 // string message() const;
23 assert(ec.message() == std::generic_category().message(6));
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcondition/syserr.errcondition.observers/
message.pass.cpp 14 // string message() const;
23 assert(ec.message() == std::generic_category().message(6));
  /external/mockito/src/main/java/org/mockito/creation/instance/
InstantiationException.java 19 public InstantiationException(String message, Throwable cause) {
20 super(message, cause);
  /external/mockito/src/main/java/org/mockito/exceptions/misusing/
CannotStubVoidMethodWithReturnValue.java 10 public CannotStubVoidMethodWithReturnValue(String message) {
11 super(message);
CannotVerifyStubOnlyMock.java 12 public CannotVerifyStubOnlyMock(String message) {
13 super(message);
FriendlyReminderException.java 14 public FriendlyReminderException(String message) {
15 super(message);
InvalidUseOfMatchersException.java 14 public InvalidUseOfMatchersException(String message) {
15 super(message);
MissingMethodInvocationException.java 14 public MissingMethodInvocationException(String message) {
15 super(message);
NotAMockException.java 14 public NotAMockException(String message) {
15 super(message);

Completed in 1194 milliseconds

<<11121314151617181920>>