/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
FileSystemException.java | 36 private String messageKey;
42 * @param messageKey - the exception message key
44 public FileSystemException(String path, String messageKey) {
47 this.messageKey = messageKey;
52 * @param messageKey - the exception message key
55 public FileSystemException(String path, String messageKey, Throwable cause) {
58 this.messageKey = messageKey;
70 return messageKey;
[all...] |
/external/proguard/src/proguard/gui/ |
GUIResources.java | 41 public static String getMessage(String messageKey) 43 return messages.getString(messageKey); 51 public static String getMessage(String messageKey, Object[] messageArguments) 53 formatter.applyPattern(messages.getString(messageKey));
|
ProGuardRunnable.java | 139 private String msg(String messageKey) 141 return GUIResources.getMessage(messageKey); 149 private String msg(String messageKey, 152 return GUIResources.getMessage(messageKey, new Object[] {messageArgument});
|
ClassSpecificationsPanel.java | 172 private static JComponent tip(JComponent component, String messageKey) 174 component.setToolTipText(msg(messageKey)); 184 private static String msg(String messageKey) 186 return GUIResources.getMessage(messageKey);
|
MemberSpecificationsPanel.java | 270 private static JComponent tip(JComponent component, String messageKey) 272 component.setToolTipText(msg(messageKey)); 282 private static String msg(String messageKey) 284 return GUIResources.getMessage(messageKey);
|
ReTraceRunnable.java | 145 private String msg(String messageKey) 147 return GUIResources.getMessage(messageKey);
|
ListPanel.java | 324 private static JComponent tip(JComponent component, String messageKey) 326 component.setToolTipText(msg(messageKey)); 336 private static String msg(String messageKey) 338 return GUIResources.getMessage(messageKey);
|
OptimizationsDialog.java | 235 private static JComponent tip(JComponent component, String messageKey) 237 component.setToolTipText(msg(messageKey)); 247 private static String msg(String messageKey) 249 return GUIResources.getMessage(messageKey);
|
ClassPathPanel.java | 306 private static JComponent tip(JComponent component, String messageKey) 308 component.setToolTipText(msg(messageKey)); 318 private static String msg(String messageKey) 320 return GUIResources.getMessage(messageKey);
|
FilterDialog.java | 357 private static JComponent tip(JComponent component, String messageKey) 359 component.setToolTipText(msg(messageKey)); 369 private static String msg(String messageKey) 371 return GUIResources.getMessage(messageKey);
|
MemberSpecificationDialog.java | 493 private static JComponent tip(JComponent component, String messageKey) 495 component.setToolTipText(msg(messageKey)); 505 private static String msg(String messageKey) 507 return GUIResources.getMessage(messageKey);
|
ClassSpecificationDialog.java | 546 private static JComponent tip(JComponent component, String messageKey) 548 component.setToolTipText(msg(messageKey)); 558 private static String msg(String messageKey) 560 return GUIResources.getMessage(messageKey);
|
ProGuardGUI.java | [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/exchange/ |
ExchangeAttachment.java | 24 public long messageKey; 34 messageKey = in.readLong(); 51 dest.writeLong(messageKey);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
MessageStateChange.java | 69 private MessageStateChange(final long messageKey,final String serverId, final long id, 73 super(messageKey, serverId, id); 126 final long messageKey = c.getLong(ProjectionChangeQuery.COLUMN_MESSAGE_KEY); 139 final MessageStateChange existingChange = changesMap.get(messageKey); 153 messageKey); 155 LogUtils.e(LOG_TAG, "No mailbox id for message %d", messageKey); 157 changesMap.put(messageKey, new MessageStateChange(messageKey, serverId, id,
|
MessageMove.java | 80 private MessageMove(final long messageKey,final String serverId, final long id, 83 super(messageKey, serverId, id); 133 final long messageKey = c.getLong(ProjectionMoveQuery.COLUMN_MESSAGE_KEY); 141 final MessageMove existingMove = movesMap.get(messageKey); 154 movesMap.put(messageKey, new MessageMove(messageKey, serverId, id,
|
MessageChangeLogTable.java | 23 public static final String MESSAGE_KEY = "messageKey"; 24 /** Column name for the server-side id for messageKey. */ 53 protected MessageChangeLogTable(final long messageKey, final String serverId, final long id) { 54 mMessageKey = messageKey;
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/ |
AbstractStoreFileCommandHandlerTestCase.groovy | 86 protected void testHandleCommand(List parameters, String messageKey, String contents) { 90 assertSessionReply(1, ReplyCodes.TRANSFER_DATA_FINAL_OK, messageKey)
|
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
AbstractCommandHandlerTestCase.java | 199 * Return the test-specific parameterized reply text for the specified messageKey
201 * @param messageKey - the messageKey
202 * @return the reply text for the specified messageKey
204 protected String replyTextWithParameterFor(String messageKey) {
205 return "Reply for " + messageKey + ":{0}";
222 * @param messageKey - the messageKey
226 protected String formattedReplyTextFor(String messageKey, Object parameter) {
227 return MessageFormat.format(replyTextWithParameterFor(messageKey), objArray(parameter)); [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
AbstractCommandHandlerTest.java | 203 * Return the test-specific parameterized reply text for the specified messageKey
204 * @param messageKey - the messageKey
205 * @return the reply text for the specified messageKey
207 protected String replyTextWithParameterFor(String messageKey) {
208 return "Reply for " + messageKey + ":{0}";
223 * @param messageKey - the messageKey
227 protected String formattedReplyTextFor(String messageKey, Object parameter) {
228 return MessageFormat.format(replyTextWithParameterFor(messageKey), objArray(parameter)); [all...] |
/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.
125 * @param messageKey - the resource bundle key for the reply text
129 protected void sendReply(Session session, int replyCode, String messageKey) {
130 sendReply(session, replyCode, messageKey, Collections.EMPTY_LIST);
137 * is retrieved from the <code>replyText</code> ResourceBundle, using the specified messageKey.
141 * @param messageKey - the resource bundle key for the reply text
146 protected void sendReply(Session session, int replyCode, String messageKey, List args) {
150 String text = getTextForKey(messageKey);
259 * @param messageKey - the message key for the exception message
262 protected void verifyFileSystemCondition(boolean condition, String path, String messageKey) {
[all...] |
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
AbstractTrackingCommandHandler.java | 175 * @param messageKey - the key used to retrieve the reply text from the replyTextBundle
181 private String getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) {
183 String t = (overrideText == null) ? getReplyTextBundle().getString(messageKey) : overrideText;
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/ |
AbstractCommandHandler.java | 232 * @param messageKey - the key used to retrieve the reply text from the replyTextBundle
238 private String getTextForReplyCode(int code, String messageKey, String overrideText, Object[] arguments) {
240 String t = (overrideText == null) ? replyTextBundle.getString(messageKey) : overrideText;
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
AbstractFileSystemTestCase.groovy | 338 protected void shouldThrowFileSystemExceptionWithMessageKey(String messageKey, Closure closure) { 340 assert e.messageKey == messageKey, "Expected message key [$messageKey], but was [${e.messageKey}]"
|
/prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/ |
cssparser-0.9.13.jar | |