Searched defs:string (Results 201 - 225 of 1194) sorted by relevance

1234567891011>>

/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 throw new CommandSyntaxException("The parameter string must not be empty or null");
76 * as a separate parameter whose value is a decimal number (in character string
149 * Byte.parseByte(string) because that parses the string as a signed byte.
151 * @param string - the String containing the decimal byte representation to be parsed
154 private static byte parseByte(String string) { argument
155 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 * as a separate parameter whose value is a decimal number (in character string
82 * as a separate parameter whose value is a decimal number (in character string
141 * Byte.parseByte(string) because that parses the string as a signed byte.
143 * @param string - the String containing the decimal byte representation to be parsed
146 private static byte parseByte(String string) { argument
147 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DUnixDirectoryListingFormatter.java65 private String stringOrNone(String string) { argument
66 return (string == null) ? NONE : string;
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 * as a separate parameter whose value is a decimal number (in character string
82 * as a separate parameter whose value is a decimal number (in character string
141 * Byte.parseByte(string) because that parses the string as a signed byte.
143 * @param string - the String containing the decimal byte representation to be parsed
146 private static byte parseByte(String string) { argument
147 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DUnixDirectoryListingFormatter.java65 private String stringOrNone(String string) { argument
66 return (string == null) ? NONE : string;
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 * as a separate parameter whose value is a decimal number (in character string
82 * as a separate parameter whose value is a decimal number (in character string
141 * Byte.parseByte(string) because that parses the string as a signed byte.
143 * @param string - the String containing the decimal byte representation to be parsed
146 private static byte parseByte(String string) { argument
147 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java29 public static String padRight(String string, int width) { argument
30 int numSpaces = width - string.length();
31 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
34 public static String padLeft(String string, int width) { argument
35 int numSpaces = width - string.length();
36 return (numSpaces > 0) ? spaces(numSpaces) + string : string;
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DUnixDirectoryListingFormatter.java65 private String stringOrNone(String string) { argument
66 return (string == null) ? NONE : string;
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 * as a separate parameter whose value is a decimal number (in character string
82 * as a separate parameter whose value is a decimal number (in character string
141 * Byte.parseByte(string) because that parses the string as a signed byte.
143 * @param string - the String containing the decimal byte representation to be parsed
146 private static byte parseByte(String string) { argument
147 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DUnixDirectoryListingFormatter.java65 private String stringOrNone(String string) { argument
66 return (string == null) ? NONE : string;
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 * as a separate parameter whose value is a decimal number (in character string
82 * as a separate parameter whose value is a decimal number (in character string
141 * Byte.parseByte(string) because that parses the string as a signed byte.
143 * @param string - the String containing the decimal byte representation to be parsed
146 private static byte parseByte(String string) { argument
147 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DUnixDirectoryListingFormatter.java65 private String stringOrNone(String string) { argument
66 return (string == null) ? NONE : string;
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 * as a separate parameter whose value is a decimal number (in character string
82 * as a separate parameter whose value is a decimal number (in character string
141 * Byte.parseByte(string) because that parses the string as a signed byte.
143 * @param string - the String containing the decimal byte representation to be parsed
146 private static byte parseByte(String string) { argument
147 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 throw new CommandSyntaxException("The parameter string must not be empty or null");
76 * as a separate parameter whose value is a decimal number (in character string
149 * Byte.parseByte(string) because that parses the string as a signed byte.
151 * @param string - the String containing the decimal byte representation to be parsed
154 private static byte parseByte(String string) { argument
155 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 throw new CommandSyntaxException("The parameter string must not be empty or null");
76 * as a separate parameter whose value is a decimal number (in character string
149 * Byte.parseByte(string) because that parses the string as a signed byte.
151 * @param string - the String containing the decimal byte representation to be parsed
154 private static byte parseByte(String string) { argument
155 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/util/
H A DPortParser.java46 throw new CommandSyntaxException("The parameter string must not be empty or null");
76 * as a separate parameter whose value is a decimal number (in character string
149 * Byte.parseByte(string) because that parses the string as a signed byte.
151 * @param string - the String containing the decimal byte representation to be parsed
154 private static byte parseByte(String string) { argument
155 return (byte) (0xFF & Short.parseShort(string));
H A DStringUtil.java31 * of string is already equal to or greater than width, then just return string.
33 * @param string - the String to pad
37 public static String padRight(String string, int width) { argument
38 int numSpaces = width - string.length();
39 return (numSpaces > 0) ? string + spaces(numSpaces) : string;
44 * of string is already equal to or greater than width, then just return string.
46 * @param string
50 padLeft(String string, int width) argument
[all...]

Completed in 530 milliseconds

1234567891011>>