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()
163 int digitCount = 0;167 digitCount++;168 if (digitCount >= PHONE_NUMBER_MINIMUM_DIGITS) {
1211 int digitCount = 0; in numberToCalledPartyBCDHelper() local1215 int shift = ((digitCount & 0x01) == 1) ? 4 : 0; in numberToCalledPartyBCDHelper()1216 result[extraBytes + (digitCount >> 1)] |= in numberToCalledPartyBCDHelper()1218 digitCount++; in numberToCalledPartyBCDHelper()1222 if ((digitCount & 0x01) == 1) result[extraBytes + (digitCount >> 1)] |= 0xF0; in numberToCalledPartyBCDHelper()