Searched refs:digitCount (Results 1 – 3 of 3) sorted by relevance
263 int digitCount = 0; in checkHouseNumber() local265 if (Character.isDigit(houseNumber.charAt(i))) ++digitCount; in checkHouseNumber()267 if (digitCount > 5) return false; in checkHouseNumber()
170 int digitCount = 0;174 digitCount++;175 if (digitCount >= PHONE_NUMBER_MINIMUM_DIGITS) {
1215 int digitCount = 0; in numberToCalledPartyBCDHelper() local1219 int shift = ((digitCount & 0x01) == 1) ? 4 : 0; in numberToCalledPartyBCDHelper()1220 result[extraBytes + (digitCount >> 1)] |= in numberToCalledPartyBCDHelper()1222 digitCount++; in numberToCalledPartyBCDHelper()1226 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()