Searched defs:message (Results 501 - 525 of 2476) sorted by relevance

<<21222324252627282930>>

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DExceptionWithContext.java56 * @param message human-oriented message
58 public ExceptionWithContext(String message) { argument
59 this(message, null);
74 * @param message human-oriented message
77 public ExceptionWithContext(String message, Throwable cause) { argument
78 super((message != null) ? message :
131 * Prints the message an
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dprogress.c88 const char *message)
94 if (message)
95 fputs(message, stdout);
86 ext2fs_numeric_progress_close(ext2_filsys fs, struct ext2fs_numeric_progress_struct * progress, const char *message) argument
/external/easymock/src/org/easymock/internal/
H A DErrorMessage.java22 private final String message; field in class:ErrorMessage
26 public ErrorMessage(boolean matching, String message, int actualCount) { argument
28 this.message = message;
37 return message;
45 buffer.append("\n ").append(message).append(", actual: ");
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DMessages.java32 * 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) { argument
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, Objec argument
60 bind(String message, Object binding1, Object binding2) argument
71 bind(String message, Object[] bindings) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
H A DUiUtils.java31 public static void openWarning(Shell parent, String title, String message) { argument
36 message,
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/
H A Dconfigurationmessage.cc15 #include "polo/pairing/message/configurationmessage.h"
23 namespace message { namespace in namespace:polo::pairing
27 message::OptionsMessage::ProtocolRole client_role)
113 } // namespace message
H A Doptionsmessage.h21 #include "polo/pairing/message/polomessage.h"
25 namespace message { namespace in namespace:polo::pairing
27 // A message containing the Polo pairing options.
38 // Creates an empty options message. The supported encodings and protocol
39 // role preference should be set before sending this message.
79 } // namespace message
H A Dpairingrequestmessage.cc15 #include "polo/pairing/message/pairingrequestmessage.h"
22 namespace message { namespace in namespace:polo::pairing
57 } // namespace message
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
H A DConfigurationMessage.java17 package com.google.polo.pairing.message;
20 * Object implementing the internal representation of the protocol message
26 * The encoding component of the message.
31 * The client role component of the message.
H A DPairingRequestAckMessage.java17 package com.google.polo.pairing.message;
20 * Object implementing the internal representation of the protocol message
H A DPairingRequestMessage.java17 package com.google.polo.pairing.message;
20 * Object implementing the internal representation of the protocol message
H A DSecretAckMessage.java17 package com.google.polo.pairing.message;
24 * Object implementing the internal representation of the protocol message
H A DSecretMessage.java17 package com.google.polo.pairing.message;
24 * Object implementing the internal representation of the protocol message
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
H A DPoloWireInterface.java22 import com.google.polo.pairing.message.PoloMessage;
31 * Returns the next message from the wire.
40 * Returns the next message from the wire.
42 * @param type the required message type to be read
45 * @throws PoloException if the next message did not match the requested
52 * Send a normal message out on the wire.
54 * @param message the message to send
56 * @throws PoloException if the message was not well formed
58 public void sendMessage(PoloMessage message) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractCollectionTester.java71 * @param message message to use upon assertion failure
73 protected void expectNullMissingWhenNullUnsupported(String message) { argument
75 assertFalse(message, actualContents().contains(null));
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DConflictingRequirementsException.java34 String message, Set<Feature<?>> conflicts, Object source) {
35 super(message);
33 ConflictingRequirementsException( String message, Set<Feature<?>> conflicts, Object source) argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListToArrayTester.java56 private static void assertArrayEquals(String message, Object[] expected, argument
58 assertEquals(message, Arrays.asList(expected), Arrays.asList(actual));
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DListenableFutureTester.java91 public void testFailedFuture(String message) argument
104 assertEquals(message, e.getCause().getMessage());
/external/javassist/src/main/javassist/
H A DCannotCompileException.java43 private String message; field in class:CannotCompileException
46 * Gets a long message if it is available.
49 if (message != null)
50 return message;
56 * Constructs a CannotCompileException with a message.
58 * @param msg the message.
62 message = msg;
74 message = null;
79 * Constructs a CannotCompileException with a detailed message
82 * @param msg the message
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverAutoEscapingException.java26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) { argument
27 super(createMessage(message, templateName, line, column));
30 public JSilverAutoEscapingException(String message, String templateName) { argument
31 this(message, templateName, UNKNOWN_POSITION, UNKNOWN_POSITION);
37 private static String createMessage(String message, String resourceName, int line, int column) { argument
38 StringBuilder result = new StringBuilder(message);
51 public JSilverAutoEscapingException(String message) { argument
52 super(message);
55 public JSilverAutoEscapingException(String message, Throwable cause) { argument
56 super(message, caus
[all...]
/external/junit/src/junit/framework/
H A DComparisonFailure.java17 * @param message the identifying message or null
21 public ComparisonFailure (String message, String expected, String actual) { argument
22 super (message);
/external/junit/src/org/junit/internal/
H A DArrayComparisonFailure.java27 public ArrayComparisonFailure(String message, AssertionError cause, int index) { argument
28 fMessage= message;
H A DComparisonCriteria.java15 * thrown with the given message. If <code>expecteds</code> and
18 * @param message
19 * the identifying message for the {@link AssertionError} (
28 public void arrayEquals(String message, Object expecteds, Object actuals) argument
32 String header= message == null ? "" : message + ": ";
43 arrayEquals(message, expected, actual);
/external/libcxx/src/
H A Dsystem_error.cpp46 __do_message::message(int ev) const function in class:__do_message
56 virtual string message(int ev) const;
66 __generic_error_category::message(int ev) const function in class:__generic_error_category
75 return __do_message::message(ev);
90 virtual string message(int ev) const;
101 __system_error_category::message(int ev) const function in class:__system_error_category
110 return __do_message::message(ev);
136 error_condition::message() const function in class:error_condition
138 return __cat_->message(__val_);
144 error_code::message() cons function in class:error_code
[all...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DNumberParseException.java43 private String message; field in class:NumberParseException
45 public NumberParseException(ErrorType errorType, String message) { argument
46 super(message);
47 this.message = message;
60 return "Error type: " + errorType + ". " + message;

Completed in 3305 milliseconds

<<21222324252627282930>>