/art/test/082-inline-execute/src/junit/framework/ |
Assert.java | 16 * an AssertionFailedError with the given message. 18 static public void assertTrue(String message, boolean condition) { 20 fail(message); 31 * an AssertionFailedError with the given message. 33 static public void assertFalse(String message, boolean condition) { 34 assertTrue(message, !condition); 44 * Fails a test with the given message. 46 static public void fail(String message) { 47 if (message == null) { 50 throw new AssertionFailedError(message); 229 String message = "Expected: <null> but was: " + String.valueOf(object); local [all...] |
/bionic/libc/bionic/ |
nl_types.cpp | 37 char* catgets(nl_catd, int, int, const char* message) { 38 return const_cast<char*>(message);
|
/bionic/libc/private/ |
bionic_systrace.h | 23 // ScopedTrace("Trace message"); 28 explicit ScopedTrace(const char* message); 37 void bionic_trace_begin(const char* message);
|
/cts/tests/sensor/src/android/hardware/cts/helpers/ |
SensorTestPlatformException.java | 28 public SensorTestPlatformException(String message) { 29 super(message + " (This is a 'sensor test platform' issue, please report it so it can be fixed)");
|
SensorTestStateNotSupportedException.java | 29 public SensorTestStateNotSupportedException(String message) { 30 super(message);
|
/cts/tests/tests/location/src/android/location/cts/ |
MultiConstellationNotSupportedException.java | 27 public MultiConstellationNotSupportedException(String message) { 28 super(message);
|
/dalvik/dx/src/com/android/dex/ |
DexException.java | 26 public DexException(String message) { 27 super(message);
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/ |
DebuggeeSynchronizer.java | 38 * Sends specified string <code>message</code> to the channel. 40 * @param message message to be sent 42 abstract public void sendMessage(String message); 45 * Waits for specified message. If received string is equal to 46 * <code>message</code> then <code>true</code> returns. 48 * @param message expected message 49 * @return <code>true</code> if received message is equal to 52 abstract public boolean receiveMessage(String message); [all...] |
/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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
Messages.java | 32 * Bind the given message's substitution locations with the given string values. 34 * @param message the message to be manipulated 37 public static String bind(String message) { 38 return bind(message, null); 42 * Bind the given message's substitution locations with the given string values. 44 * @param message the message to be manipulated 45 * @param binding the object to be inserted into the message 48 public static String bind(String message, Object binding) [all...] |
/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/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));
|