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()
171 int digitCount = 0;175 digitCount++;176 if (digitCount >= PHONE_NUMBER_MINIMUM_DIGITS) {
1225 int digitCount = 0; in numberToCalledPartyBCDHelper() local1229 int shift = ((digitCount & 0x01) == 1) ? 4 : 0; in numberToCalledPartyBCDHelper()1230 result[extraBytes + (digitCount >> 1)] |= in numberToCalledPartyBCDHelper()1232 digitCount++; in numberToCalledPartyBCDHelper()1236 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()