Home | History | Annotate | Download | only in navigation

Lines Matching refs:totalLen

33      * @param totalLen the total length of the padded string

36 public String padNum(long num, int totalLen) {
38 int len = totalLen - numStr.length();
50 * @param totalLen the total length of the padded string
53 public String padNumZero(long num, int totalLen) {
55 int len = totalLen - numStr.length();
67 * @param totalLen the total length of the padded string
70 public String padNum(int num, int totalLen) {
72 int len = totalLen - numStr.length();
84 * @param totalLen the total length of the padded string
87 public String padNumZero(int num, int totalLen) {
89 int len = totalLen - numStr.length();