Home | History | Annotate | Download | only in language

Lines Matching refs:maxLength

1034         private int maxLength;
1036 public DoubleMetaphoneResult(int maxLength) {
1037 this.maxLength = maxLength;
1051 if (this.primary.length() < this.maxLength) {
1057 if (this.alternate.length() < this.maxLength) {
1073 int addChars = this.maxLength - this.primary.length();
1082 int addChars = this.maxLength - this.alternate.length();
1099 return this.primary.length() >= this.maxLength &&
1100 this.alternate.length() >= this.maxLength;