/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
AbstractStaticReplyCommandHandler.java | 26 * the <code>replyMessageKey</code> or <code>replyText</code> property.
42 protected String replyText = null;
63 * @param replyText - the replyText
65 public void setReplyText(String replyText) {
66 this.replyText = replyText;
101 sendReply(session, replyCode, replyMessageKey, replyText, parameters);
|
StaticReplyCommandHandler.java | 26 * the <code>replyMessageKey</code> or <code>replyText</code> property.
52 * Create a new instance with the specified replyCode and replyText
54 * @param replyText - the replyText
57 public StaticReplyCommandHandler(int replyCode, String replyText) {
59 setReplyText(replyText);
|
AbstractTrackingCommandHandler.java | 93 * <li>If the <code>replyText</code> property is non-null, then use that.</li>
95 * localized message from the <code>replyText</code> ResourceBundle.</li>
96 * <li>Otherwise, retrieve the reply text from the <code>replyText</code> ResourceBundle,
104 * @param replyMessageKey - if not null (and replyText is null), this is used as the ResourceBundle
106 * @param replyText - if non-null, this is used as the reply text
112 protected void sendReply(Session session, int replyCode, String replyMessageKey, String replyText,
119 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
168 * the code from the replyText ResourceBundle. If the ResourceBundle contains no mapping, then
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
AbstractStubCommandHandler.java | 40 protected String replyText = null;
61 * @param replyText - the replyText
63 public void setReplyText(String replyText) {
64 this.replyText = replyText;
99 sendReply(session, replyCode, replyMessageKey, replyText, parameters);
|
StatCommandHandler.java | 65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
|
UserCommandHandler.java | 65 sendReply(session, code, replyMessageKey, replyText, null);
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
StaticReplyCommandHandler.java | 27 * the <code>replyMessageKey</code> or <code>replyText</code> property.
53 * Create a new instance with the specified replyCode and replyText
55 * @param replyText - the replyText
58 public StaticReplyCommandHandler(int replyCode, String replyText) {
60 setReplyText(replyText);
|
AbstractCommandHandler.java | 120 * <li>If the <code>replyText</code> property is non-null, then use that.</li>
122 * localized message from the <code>replyText</code> ResourceBundle.</li>
123 * <li>Otherwise, retrieve the reply text from the <code>replyText</code> ResourceBundle,
131 * @param replyMessageKey - if not null (and replyText is null), this is used as the ResourceBundle
133 * @param replyText - if non-null, this is used as the reply text
141 protected void sendReply(Session session, int replyCode, String replyMessageKey, String replyText,
149 String text = getTextForReplyCode(replyCode, key, replyText, arguments);
225 * the code from the replyText ResourceBundle. If the ResourceBundle contains no mapping, then
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/ |
Session.java | 39 * @param replyText - the reply text to send; may be null
41 public void sendReply(int replyCode, String replyText);
|
DefaultSession.java | 128 String replyText = text.trim();
129 if (replyText.indexOf("\n") != -1) {
130 int lastIndex = replyText.lastIndexOf("\n");
132 for (int i = 0; i < replyText.length(); i++) {
133 char c = replyText.charAt(i);
142 buffer.append(replyText);
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/ |
StubSession.groovy | 123 public void sendReply(int replyCode, String replyText) {
124 sentReplies << [replyCode, replyText]
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/session/ |
Session.java | 39 * @param replyText - the reply text to send; may be null
41 public void sendReply(int replyCode, String replyText);
|
DefaultSession.java | 130 String replyText = text.trim();
131 if (replyText.indexOf("\n") != -1) {
132 int lastIndex = replyText.lastIndexOf("\n");
134 for (int i = 0; i < replyText.length(); i++) {
135 char c = replyText.charAt(i);
144 buffer.append(replyText);
|
/developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
MainActivity.java | 52 CharSequence replyText = inputResults.getCharSequence(KEY_REPLY); 53 if (replyText != null) { 54 Toast.makeText(this, TextUtils.concat(getString(R.string.reply_was), replyText),
|
/developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
MainActivity.java | 52 CharSequence replyText = inputResults.getCharSequence(KEY_REPLY); 53 if (replyText != null) { 54 Toast.makeText(this, TextUtils.concat(getString(R.string.reply_was), replyText),
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
MainActivity.java | 52 CharSequence replyText = inputResults.getCharSequence(KEY_REPLY); 53 if (replyText != null) { 54 Toast.makeText(this, TextUtils.concat(getString(R.string.reply_was), replyText),
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
StatCommandHandler.java | 60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
|
UserCommandHandler.java | 59 sendReply(session, code, replyMessageKey, replyText, null);
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/ |
StubFtpServer_MultipleClientsIntegrationTest.java | 47 String replyText = quotes(Integer.toString(session.hashCode()));
48 sendReply(session, 257, null, replyText, null);
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/ |
StubFtpServer_MultipleClientsIntegrationTest.java | 47 String replyText = quotes(Integer.toString(session.hashCode()));
48 sendReply(session, 257, null, replyText, null);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
AbstractFakeCommandHandler.java | 121 * is retrieved from the <code>replyText</code> ResourceBundle, using the specified messageKey.
137 * is retrieved from the <code>replyText</code> ResourceBundle, using the specified messageKey.
151 String replyText = (args != null && !args.isEmpty()) ? MessageFormat.format(text, args.toArray()) : text;
153 String replyTextToLog = (replyText == null) ? "" : " " + replyText;
156 session.sendReply(replyCode, replyText);
163 * is retrieved from the <code>replyText</code> ResourceBundle, using the reply code as the key.
178 * is retrieved from the <code>replyText</code> ResourceBundle, using the reply code as the key.
|
/platform_testing/tests/jank/ime_wear/src/com/android/wearable/ime/janktests/ |
IMEJankTestsHelper.java | 139 UiObject2 replyText = mDevice 141 Assert.assertNotNull(replyText);
|
/frameworks/base/core/java/android/app/ |
Notification.java | [all...] |