/external/mockito/src/main/java/org/mockito/exceptions/misusing/ |
NullInsteadOfMockException.java | 14 public NullInsteadOfMockException(String message) { 15 super(message);
|
RedundantListenerException.java | 22 public RedundantListenerException(String message) { 23 super(message);
|
UnfinishedStubbingException.java | 14 public UnfinishedStubbingException(String message) { 15 super(message);
|
UnfinishedVerificationException.java | 14 public UnfinishedVerificationException(String message) { 15 super(message);
|
WrongTypeOfReturnValue.java | 13 public WrongTypeOfReturnValue(String message) { 14 super(message);
|
/external/mockito/src/main/java/org/mockito/exceptions/verification/ |
MoreThanAllowedActualInvocations.java | 17 public MoreThanAllowedActualInvocations(String message) { 18 super(message);
|
NeverWantedButInvoked.java | 14 public NeverWantedButInvoked(String message) { 15 super(message);
|
NoInteractionsWanted.java | 17 public NoInteractionsWanted(String message) { 18 super(message);
|
SmartNullPointerException.java | 13 public SmartNullPointerException(String message) { 14 super(message);
|
TooLittleActualInvocations.java | 14 public TooLittleActualInvocations(String message) { 15 super(message);
|
TooManyActualInvocations.java | 14 public TooManyActualInvocations(String message) { 15 super(message);
|
VerificationInOrderFailure.java | 14 public VerificationInOrderFailure(String message) { 15 super(message);
|
/external/mockito/src/main/java/org/mockito/internal/creation/instance/ |
InstantiationException.java | 19 public InstantiationException(String message, Throwable cause) { 20 super(message, cause);
|
/external/mockito/src/main/java/org/mockito/internal/exceptions/ |
ExceptionIncludingMockitoWarnings.java | 10 public ExceptionIncludingMockitoWarnings(String message, Throwable throwable) { 11 super(message, throwable);
|
/external/nanopb-c/examples/cmake_relpath/ |
simple.c | 8 /* This is the buffer where we will store our message. */ 13 /* Encode our message */ 15 /* Allocate space on the stack to store the message data. 22 SimpleMessage message = SimpleMessage_init_zero; local 28 message.lucky_number = 13; 29 message.unlucky.number = 42; 31 /* Now we are ready to encode the message! */ 32 status = pb_encode(&stream, SimpleMessage_fields, &message); 43 /* Now we could transmit the message over network, store it in a file or 50 /* Allocate space for the decoded message. * 51 SimpleMessage message = SimpleMessage_init_zero; local [all...] |
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/ |
TransportTimeoutException.java | 62 * message. 70 * specified detail message. 72 * @param message the detail message pertaining to this exception. 74 public TransportTimeoutException(String message) { 75 super(message);
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/connect/spi/ |
ClosedConnectionException.java | 53 * message. 60 * specified detail message. 62 * @param message the detail message pertaining to this exception. 64 public ClosedConnectionException(String message) { 65 super(message);
|
/external/pcre/dist2/src/ |
pcre2_error.c | 272 * Return error message * 275 /* This function copies an error message into a buffer whose units are of an 282 buffer where to put the message (zero terminated) 285 Returns: length of message if all is well 292 const unsigned char *message; local 300 message = compile_error_texts; 305 message = match_error_texts; 310 message = (unsigned char *)"\0"; /* Empty message list */ 316 while (*message++ != CHAR_NUL) {} [all...] |
/external/perfetto/protos/perfetto/ipc/ |
producer_port.proto | 65 // Sent by the client in response to a StartDataSource message, when a data 71 // Sent by the client in response to a StopDataSource message, when a data 85 message InitializeConnectionRequest { 116 message InitializeConnectionResponse { 117 // This message provides the shared memory buffer FD (not a proto field). 122 message RegisterDataSourceRequest { 126 message RegisterDataSourceResponse { 133 message UnregisterDataSourceRequest { 139 message UnregisterDataSourceResponse {} 143 message RegisterTraceWriterRequest [all...] |
/external/perfetto/src/protozero/test/example_proto/ |
upper_import.proto | 22 message TrickyPublicImport {}
|
/external/python/rsa/rsa/ |
core.py | 33 def encrypt_int(message, ekey, n): 34 """Encrypts a message using encryption key 'ekey', working modulo n""" 36 assert_int(message, 'message') 40 if message < 0: 43 if message > n: 44 raise OverflowError("The message %i is too long for n=%i" % (message, n)) 46 return pow(message, ekey, n) 56 message = pow(cyphertext, dkey, n [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/ |
SerializerException.java | 23 public SerializerException(String message) { 24 super(message);
|
/external/snakeyaml/src/test/java/org/pyyaml/ |
CanonicalException.java | 24 public CanonicalException(String message) { 25 super(message);
|
/external/swiftshader/src/OpenGL/compiler/ |
InfoSink.cpp | 17 void TInfoSinkBase::prefix(TPrefixType message) { 18 switch(message) { 58 void TInfoSinkBase::message(TPrefixType message, const char* s) { function in class:TInfoSinkBase 59 prefix(message); 64 void TInfoSinkBase::message(TPrefixType message, const char* s, TSourceLoc loc) { function in class:TInfoSinkBase 65 prefix(message);
|
/cts/tests/tests/location/src/android/location/cts/ |
SoftAssert.java | 45 * @param message test message 51 public void assertTrue(String message, Long eventTimeInNs, String expectedResult, 54 Log.i(mTag, message + ", (Test: PASS, actual : " + 61 errorMessage += message + 72 * @param message test message 77 public void assertTrue(String message, String expectedResult, 79 assertTrue(message, null, expectedResult, actualResult, condition); 86 * @param message the message associated with the conditio 157 StringBuilder message = new StringBuilder(); local [all...] |