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

1 2 3 4 5 6 7 8 91011>>

  /build/make/
tapasHelp.sh 9 message='usage: tapas [<App1> <App2> ...] [arm|x86|mips|arm64|x86_64|mips64] [eng|userdebug|user]
23 echo "$message"
help.sh 9 message='The basic Android build process is:
59 echo "$message"
  /external/protobuf/src/google/protobuf/
map_test_util_impl.h 53 // Set every field in the TestMap message to a unique value.
56 static void SetMapFields(MapMessage* message);
58 // Set every field in the TestArenaMap message to a unique value.
61 static void SetArenaMapFields(MapMessage* message);
63 // Set every field in the message to a default value.
65 static void SetMapFieldsInitialized(MapMessage* message);
67 // Modify all the map fields of the message (which should already have been
70 static void ModifyMapFields(MapMessage* message);
76 static void ExpectMapFieldsSet(const MapMessage& message);
82 static void ExpectArenaMapFieldsSet(const MapMessage& message);
    [all...]
test_util_lite.cc 49 void TestUtilLite::SetAllFields(unittest::TestAllTypesLite* message) {
50 message->set_optional_int32 (101);
51 message->set_optional_int64 (102);
52 message->set_optional_uint32 (103);
53 message->set_optional_uint64 (104);
54 message->set_optional_sint32 (105);
55 message->set_optional_sint64 (106);
56 message->set_optional_fixed32 (107);
57 message->set_optional_fixed64 (108);
58 message->set_optional_sfixed32(109)
    [all...]
  /external/junit-params/src/main/java/junitparams/converters/
ConversionFailedException.java 4 public ConversionFailedException(String message) {
5 super(message);
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
TensorFlowException.java 20 TensorFlowException(String message) {
21 super(message);
  /art/test/021-string2/src/junit/framework/
AssertionFailedError.java 13 public AssertionFailedError(String message) {
14 super(defaultString(message));
17 private static String defaultString(String message) {
18 return message == null ? "" : message;
  /art/test/082-inline-execute/src/junit/framework/
AssertionFailedError.java 13 public AssertionFailedError(String message) {
14 super(defaultString(message));
17 private static String defaultString(String message) {
18 return message == null ? "" : message;
  /external/junit/src/main/java/junit/framework/
AssertionFailedError.java 11 * Constructs a new AssertionFailedError without a detail message.
17 * Constructs a new AssertionFailedError with the specified detail message.
18 * A null message is replaced by an empty String.
19 * @param message the detail message. The detail message is saved for later
22 public AssertionFailedError(String message) {
23 super(defaultString(message));
26 private static String defaultString(String message) {
27 return message == null ? "" : message
    [all...]
  /external/dng_sdk/source/
dng_exceptions.cpp 30 void ReportWarning (const char *message,
38 fprintf (stderr, "*** Warning: %s (%s) ***\n", message, sub_message);
40 fprintf (stderr, "*** Warning: %s ***\n", message);
44 (void) message;
53 void ReportError (const char *message,
60 fprintf (stderr, "*** Error: %s (%s) ***\n", message, sub_message);
62 fprintf (stderr, "*** Error: %s ***\n", message);
66 (void) message;
76 const char *message,
85 if (!message)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/
AssertionFailedException.java 21 public AssertionFailedException(String message, Throwable cause) {
22 super(message, cause);
25 public AssertionFailedException(String message) {
26 super(message);
  /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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
warning_tests.py 5 def outer(message, stacklevel=1):
6 inner(message, stacklevel)
8 def inner(message, stacklevel=1):
9 warnings.warn(message, stacklevel=stacklevel)
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/
CompressorException.java 30 * Constructs a new exception with the specified detail message. The cause
33 * @param message
34 * the detail message
36 public CompressorException(final String message) {
37 super(message);
41 * Constructs a new exception with the specified detail message and cause.
43 * @param message
44 * the detail message
48 public CompressorException(final String message, final Throwable cause) {
49 super(message, cause)
    [all...]
  /external/apache-http/src/org/apache/http/
MethodNotSupportedException.java 54 * Creates a new MethodNotSupportedException with the specified detail message.
56 * @param message The exception detail message
58 public MethodNotSupportedException(final String message) {
59 super(message);
63 * Creates a new MethodNotSupportedException with the specified detail message and cause.
65 * @param message the exception detail message
69 public MethodNotSupportedException(final String message, final Throwable cause) {
70 super(message, cause)
    [all...]
ProtocolException.java 36 * For example a malformed status line or headers, a missing message body, etc.
52 * Creates a new ProtocolException with a <tt>null</tt> detail message.
59 * Creates a new ProtocolException with the specified detail message.
61 * @param message The exception detail message
63 public ProtocolException(String message) {
64 super(message);
68 * Creates a new ProtocolException with the specified detail message and cause.
70 * @param message the exception detail message
    [all...]
  /external/apache-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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
InvalidCipherTextException.java 5 * message.
18 * create a InvalidCipherTextException with the given message.
20 * @param message the message to be carried with the exception.
23 String message)
25 super(message);
29 * create a InvalidCipherTextException with the given message.
31 * @param message the message to be carried with the exception.
35 String message,
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
InvalidCipherTextException.java 6 * message.
20 * create a InvalidCipherTextException with the given message.
22 * @param message the message to be carried with the exception.
25 String message)
27 super(message);
31 * create a InvalidCipherTextException with the given message.
33 * @param message the message to be carried with the exception.
37 String message,
    [all...]
  /external/brotli/java/org/brotli/dec/
BrotliRuntimeException.java 14 BrotliRuntimeException(String message) {
15 super(message);
18 BrotliRuntimeException(String message, Throwable cause) {
19 super(message, cause);
  /external/clang/test/Lexer/
pragma-message2.c 3 #pragma message "\\test" // expected-warning {{\test}}
4 // CHECK: #pragma message("\134test")
6 #pragma message("\\test") // expected-warning {{\test}}
7 // CHECK: #pragma message("\134test")
  /external/cldr/tools/java/org/unicode/cldr/util/
InternalCldrException.java 6 public InternalCldrException(String message) {
7 super(message);
10 public InternalCldrException(String message, Throwable cause) {
11 super(message, cause);
  /external/droiddriver/src/io/appium/droiddriver/exceptions/
ActionException.java 24 public ActionException(String message) {
25 super(message);
28 public ActionException(String message, Throwable cause) {
29 super(message, cause);
  /external/googletest/googletest/include/gtest/internal/custom/
gtest-port.h 38 #define GTEST_INTERNAL_DEPRECATED(message)
  /external/guice/core/src/com/google/inject/
OutOfScopeException.java 28 public OutOfScopeException(String message) {
29 super(message);
32 public OutOfScopeException(String message, Throwable cause) {
33 super(message, cause);

Completed in 1301 milliseconds

1 2 3 4 5 6 7 8 91011>>