/plugin/virtualkeyboard/vk/extensions/ |
H A D | arrayextensions.js | 34 if ( this.length > 0 ) { 35 lastItem = this[this.length - 1]; 36 this.length--; 45 var currentLength = this.length; 49 return this.length; 60 this.length--; 107 …for (var i = start + arguments.length - 2, tL = this.length - deleteCount + arguments.length - 2; … 110 this.length = this.length - dC; 122 return this.length; 137 …for (var i=(null==end||isNaN(end)||end>this.length)?this.length-1:Math.round(end), idx = -1; idx==… [all …]
|
/plugin/indexmenu2/cms/extensions/ |
H A D | arrayextensions.js | 2 …length;l<o;l++){I[I.length]=i[l]}return I}}if(isUndefined(Array.prototype.copy)){Array.prototype.c…
|
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/ |
H A D | BerEncoder.php | 232 $length = strlen($bytes); 233 $bytes = ($length < 128) ? chr($length) . $bytes : $this->encodeLongDefiniteLength($length) . $bytes; 321 * @param null|int $length 328 protected function decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null): AbstractType 342 # It's possible we only got part of the VLQ for the high tag, as there is no way to know its ending length. 353 $length = ord($this->binary[$this->pos++]); 354 if ($length === 128) { 355 throw new EncoderException('Indefinite length encodin 289 decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null) global() argument 475 decodeLongDefiniteLength(int $length) global() argument 856 decodeGeneralizedTime($length) global() argument 866 decodeUtcTime($length) global() argument 879 decodeTime(string $format, string $regex, array $matchMap, $length) global() argument 938 decodeOid($length) global() argument 969 decodeRelativeOid($length) global() argument 997 decodeBitString($length) global() argument 1025 binaryToBitString(int $length, int $unused) global() argument 1047 decodeInteger($length) global() argument 1098 decodeReal($length) global() argument 1162 decodeConstructedType($length) global() argument [all...] |
/plugin/wikistyle2html/ |
H A D | script.js | 106 for(k=0;k<PreBoxs.length;k++){ 122 for(k=0;k<DiffBoxs.length;k++){ 130 for(k=0;k<FormBoxs.length;k++){ 137 for(k=1;k<HeaderSplit.length;k++){ 170 for(i=0;i<StyleArray.length;i++){ 203 for(k=0;k<PreBoxs.length;k++){ 213 for(k=0;k<DiffBoxs.length;k++){ 218 for(k=0;k<FormBoxs.length;k++){ 234 for(j=0;j<Headers.length;j++){ 247 for(j=0;j<Headers.length;j++){ [all …]
|
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/ |
H A D | Text.php | 40 if (mb_strlen($value, $env->getCharset()) > $length) { 47 $length = $breakpoint; 50 return rtrim(mb_substr($value, 0, $length, $env->getCharset())).$separator; 67 while (!$preserve && mb_strlen($piece, $env->getCharset()) > $length) { 68 $sentences[] = mb_substr($piece, 0, $length, $env->getCharset()); 69 $piece = mb_substr($piece, $length, 2048, $env->getCharset()); 80 if (strlen($value) > $length) { 82 if (false !== ($breakpoint = strpos($value, ' ', $length))) { 83 $length = $breakpoint; 87 return rtrim(substr($value, 0, $length)).$separator; [all …]
|
/plugin/zip/pear/File/Archive/Reader/ |
H A D | Memory.php | 122 function getData($length = -1) argument 127 if ($length == -1) { 140 function skip($length = -1) argument 142 if ($length == -1) { 145 $length = min($length, strlen($this->memory) - $this->offset); 147 $this->offset += $length; 148 return $length; 154 function rewind($length = -1) argument 156 if ($length == -1) { 161 $length = min($length, $this->offset); [all …]
|
H A D | Gzip.php | 124 function getData($length = -1) argument 126 if ($length == -1) { 133 } else if ($length == 0) { 146 function skip($length = -1) argument 148 if($length == -1) { 159 return $length; 167 function rewind($length = -1) argument 169 if ($length == -1) { 178 $length = min($length, $this->filePos); 183 return $length; [all …]
|
H A D | Ar.php | 194 if ($length == -1) { 197 $length = min($length, $this->_nbBytesLeft); 199 if ($length == 0) { 217 function skip($length = -1) argument 219 if ($length == -1) { 222 $length = min($length, $this->_nbBytesLeft); 224 if ($length == 0) { 242 function rewind($length = -1) argument 244 if ($length == -1) { 247 $length = min($length, $this->_currentStat[7] - $this->_nbBytesLeft); [all …]
|
/plugin/twofactorgoogleauth/ |
H A D | QRCode.php | 187 $length = strlen($data); 188 if ($mode == 3) $length >>= 1; 200 $length = strlen($data); 203 $code[] = $length & 0x2000; 245 $length = strlen($data); 297 $length = strlen($data); 319 for ($i = 0; $i < $length; $i++) { 336 $length = strlen($data); 427 $offset += $length; 431 $offset += $length; [all …]
|
/plugin/sequencediagram/bower_components/underscore/ |
H A D | underscore.js | 100 var length = arguments.length; 152 for (i = 0, length = obj.length; i < length; i++) { 157 for (i = 0, length = keys.length; i < length; i++) { 304 for (var i = 0, length = obj.length; i < length; i++) { 329 for (var i = 0, length = obj.length; i < length; i++) { 352 var length = set.length; 951 var length = keys.length; 977 var length = keys.length; 989 for (var i = 0, length = keys.length; i < length; i++) { 1163 length = a.length; [all …]
|
/plugin/sequencediagram/bower_components/lodash/dist/ |
H A D | lodash.js | 654 length = values.length, 798 var length = array.length, 836 length = array.length; 930 var length = array.length; 951 length = array.length; 1079 var length = array.length, 1213 length = array.length, 1273 length = array.length; 5181 length = args.length; 6262 length = length == null ? MAX_SAFE_INTEGER : length; [all …]
|
/plugin/sequencediagram/bower_components/lodash/ |
H A D | lodash.js | 654 length = values.length, 798 var length = array.length, 836 length = array.length; 930 var length = array.length; 951 length = array.length; 1079 var length = array.length, 1213 length = array.length, 1273 length = array.length; 5181 length = args.length; 6262 length = length == null ? MAX_SAFE_INTEGER : length; [all …]
|
/plugin/formatplus/ |
H A D | script.js | 20 for(var i=0; i<ssheet.rules.length; i++){ 24 for(var j=0; j<quotes.length; j+=2){ 26 if(q.length < 3) continue; 29 if(j+1 < quotes.length){ 31 if(q.length >= 3){ 40 if(q_open.length==0) q_open.push('“'); 45 for(var i=0; i<qelems.length; i++){ 51 while(qstack.length > 0){ 59 var mark_before = document.createTextNode(q_open[qstack.length % q_open.length]); 60 var mark_after = document.createTextNode(q_close[qstack.length % q_open.length]); [all …]
|
/plugin/findologicxmlexport/vendor/hoa/file/ |
H A D | ReadWrite.php | 130 * @param int $length Length. 134 public function read($length) argument 136 if (0 > $length) { 140 $length 150 * @param int $length Length. 153 public function readString($length) argument 155 return $this->read($length); 181 * @param int $length Length. 186 return (int) $this->read($length); 254 if (0 > $length) { [all …]
|
H A D | Read.php | 123 * @param int $length Length. 127 public function read($length) argument 129 if (0 > $length) { 133 $length 143 * @param int $length Length. 146 public function readString($length) argument 148 return $this->read($length); 174 * @param int $length Length. 179 return (int) $this->read($length); 185 * @param int $length Length. [all …]
|
/plugin/findologicxmlexport/vendor/hoa/file/Link/ |
H A D | Read.php | 124 * @param int $length Length. 128 public function read($length) argument 130 if (0 > $length) { 134 $length 144 * @param int $length Length. 147 public function readString($length) argument 149 return $this->read($length); 175 * @param int $length Length. 180 return (int) $this->read($length); 186 * @param int $length Length. [all …]
|
H A D | ReadWrite.php | 131 * @param int $length Length. 135 public function read($length) argument 137 if (0 > $length) { 141 $length 151 * @param int $length Length. 154 public function readString($length) argument 156 return $this->read($length); 182 * @param int $length Length. 187 return (int) $this->read($length); 255 if (0 > $length) { [all …]
|
/plugin/findologicxmlexport/vendor/hoa/file/Temporary/ |
H A D | Read.php | 124 * @param int $length Length. 128 public function read($length) argument 130 if (0 > $length) { 134 $length 144 * @param int $length Length. 147 public function readString($length) argument 149 return $this->read($length); 175 * @param int $length Length. 180 return (int) $this->read($length); 186 * @param int $length Length. [all …]
|
H A D | ReadWrite.php | 131 * @param int $length Length. 135 public function read($length) argument 137 if (0 > $length) { 141 $length 151 * @param int $length Length. 154 public function readString($length) argument 156 return $this->read($length); 182 * @param int $length Length. 187 return (int) $this->read($length); 255 if (0 > $length) { [all …]
|
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/ |
H A D | underscore.js | 168 for (i = 0, length = obj.length; i < length; i++) { 173 for (i = 0, length = keys.length; i < length; i++) { 314 for (var i = 0, length = obj.length; i < length; i++) { 339 for (var i = 0, length = obj.length; i < length; i++) { 988 var length = keys.length; 1001 length = keys.length, 1013 var length = keys.length; 1025 for (var i = 0, length = keys.length; i < length; i++) { 1071 for (var i = 0, length = keys.length; i < length; i++) { 1238 length = a.length; [all …]
|
/plugin/wysiwyg/fckeditor/editor/_source/ |
H A D | fckjscoreextensions.js | 37 if ( aArgs.length == 1 && aArgs[0].pop ) 40 for ( var i = 0 ; i < aArgs.length ; i++ ) 55 if ( aArgs.length == 1 && aArgs[0].pop ) 58 for ( var i = 0 ; i < aArgs.length ; i++ ) 70 for ( var i = 0 ; i < searchArray.length ; i++ ) 86 var L1 = this.length ; 87 var L2 = value.length ; 108 if ( start + length < this.length ) 109 s += this.substring( start + length , this.length ) ; 153 var i = this.length ; [all …]
|
/plugin/aichat/vendor/vanderlee/php-sentence/src/ |
H A D | Multibyte.php | 84 foreach ($lengths as $length) { 85 if (self::isLastPart($length, $flags, $limit, $count)) { 90 if (self::isPart($length, $flags)) { 91 $parts[] = self::makePart($string, $position, $length[0], $offset_capture); 94 $position += $length[0]; 101 * @param $length 107 private static function isLastPart($length, $flags, $limit, &$count) 109 $split_empty = !($flags & PREG_SPLIT_NO_EMPTY) || $length[0]; 110 $is_delimiter = $length[1]; 119 * @param $length 105 isLastPart($length, $flags, $limit, & $count) global() argument 121 isPart($length, $flags) global() argument 140 makePart($string, $position, $length = null, $offset_capture = false) global() argument [all...] |
/plugin/sequencediagram/bower_components/lodash/fp/ |
H A D | _baseConvert.js | 45 var length = array ? array.length : 0, 49 result[length] = array[length]; 78 var length = arguments.length, 83 args[length] = arguments[length]; 109 var length = arguments.length; 115 args[length] = arguments[length]; 213 length = result.length; 352 length = path.length, 445 var length = arguments.length; 451 args[length] = arguments[length]; [all …]
|
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/ |
H A D | StreamReader.php | 76 * The buffer length. 83 * The total length of the stream. 141 * Returns the byte length of the buffer. 246 * @param int $length 250 public function readBytes($length, $position = null) argument 252 $length = (int) $length; 256 $this->reset($position, $length); 265 if (($offset + $length) > $this->bufferLength && 266 ((!$this->increaseLength($length)) || ( 283 readLine($length = 1024) global() argument 402 reset($pos = 0, $length = 200) global() argument 434 ensure($pos, $length) global() argument [all...] |
/plugin/gtime/gtlib/asn1/ |
H A D | ASN1DER.php | 60 if ($length > 127) { 63 $value = $length; 72 $byte = $length >> $i; 121 if (count($bytes) < $length) { 125 if (count($bytes) > $length) { 154 if ($length == 128) { 158 if ($length > 127) { 160 $size = $length & 0x7F; 166 $length = 0; 173 $length = ($length << 8) + array_shift($bytes); [all …]
|