Home
last modified time | relevance | path

Searched refs:possibleLength (Results 1 – 5 of 5) sorted by relevance

/dports/www/nextcloud/nextcloud/3rdparty/giggsey/libphonenumber-for-php/src/
H A DPhoneNumberDesc.php17 protected $possibleLength; variable in libphonenumber\\PhoneNumberDesc
46 return $this->possibleLength;
50 * @param array $possibleLength
52 public function setPossibleLength($possibleLength) argument
54 $this->possibleLength = $possibleLength;
57 public function addPossibleLength($possibleLength) argument
59 if (!in_array($possibleLength, $this->possibleLength)) {
60 $this->possibleLength[] = $possibleLength;
66 $this->possibleLength = array();
H A DPhoneNumberUtil.php725 $possibleLength = $desc->getPossibleLength();
726 return count($possibleLength) != 1 || $possibleLength[0] != -1;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libphonenumber/dist/java/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
H A DPhonePrefixMap.java156 Integer possibleLength = currentSetOfLengths.last(); in lookup() local
158 if (phonePrefixStr.length() > possibleLength) { in lookup()
159 phonePrefix = Long.parseLong(phonePrefixStr.substring(0, possibleLength)); in lookup()
169 currentSetOfLengths = currentSetOfLengths.headSet(possibleLength); in lookup()
/dports/devel/libphonenumber/libphonenumber-8.12.39/java/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
H A DPhonePrefixMap.java156 Integer possibleLength = currentSetOfLengths.last(); in lookup() local
158 if (phonePrefixStr.length() > possibleLength) { in lookup()
159 phonePrefix = Long.parseLong(phonePrefixStr.substring(0, possibleLength)); in lookup()
169 currentSetOfLengths = currentSetOfLengths.headSet(possibleLength); in lookup()
/dports/net-im/telegram-desktop/tdesktop-3.2.5-full/Telegram/lib_ui/ui/widgets/
H A Dinput_fields.cpp1893 auto possibleLength = 0; in getTextPart() local
1895 possibleLength += block.length(); in getTextPart()
1898 result.reserve(possibleLength); in getTextPart()
1900 end = possibleLength; in getTextPart()