Home
last modified time | relevance | path

Searched refs:length (Results 176 – 200 of 2103) sorted by path

12345678910>>...85

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php175 $length = current(unpack('N', $this->readBytes(4)));
176 $packet = $this->readBytes($length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php297 $length = current(unpack('N', $this->readBytes(4)));
298 $packet = $this->readBytes($length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Common/Traits/
H A DReadBytes.php30 * @param int $length
34 public function readBytes($length) argument
36 $temp = fread($this->fsock, $length);
37 if (strlen($temp) != $length) {
38 throw new \RuntimeException("Expected $length bytes; got " . strlen($temp));
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DStreamInterface.php127 * @param int $length Read up to $length bytes from the object and return
134 public function read($length); argument
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
H A DIdn.php453 $length = \count($labels);
456 $domainLength = $length - 1;
462 if ($length > 1 && '' === $labels[$length - 1]) {
464 --$length;
467 for ($i = 0; $i < $length; ++$i) {
799 $length = \strlen($input);
801 for ($i = 0; $i < $length; ++$i) {
/plugin/authucenter/lib/uc_client/control/
H A Dapp.php40 function _random($length, $numeric = 0) { argument
/plugin/authucenter/lib/uc_client/lib/
H A Duccode.class.php88 $length = 65;
89 if(strlen($url) > $length) {
90 $text = substr($url, 0, intval($length * 0.5)).' ... '.substr($url, - intval($length * 0.3));
/plugin/authucenter/lib/uc_client/model/
H A Dbase.php146 function cutstr($string, $length, $dot = ' ...') { argument
147 if(strlen($string) <= $length) {
176 if($noc >= $length) {
181 if($noc > $length) {
188 for($i = 0; $i < $length; $i++) {
H A Dpm.php805 function removecode($str, $length) { argument
812 return trim($this->base->cutstr(strip_tags($str), $length));
/plugin/autlogin/
H A Dscript.js19 for(var i=0; i<all.length; i++){
51 if(sublists.length){
90 for(var i=0; i<obj.length; i++){
/plugin/autoindentcontrol/
H A Dscript.js36 if (!$editor.length || $editor.attr('readOnly')) {
/plugin/autolink3/
H A Dscript.js64 pl_si.count = pl_si.pages.length;
65 plugin_tagindex_status(pl_si.pages.length+" pages found");
/plugin/autolink4/
H A Dscript.js27 if (flags.length == 0) {
28 parts.length = 3;
/plugin/autotabber/
H A Dtaboverride.escape.js62 if (arguments.length) {
H A Dtaboverride.js157 if (arguments.length) {
268 tabLen = tab.length;
424 endLine = text.length;
498 len = extensions.length;
532 len = handlerList.length,
619 newlineLen = newline.length;
697 numElems = elemsArr.length;
735 if (arguments.length) {
760 if (arguments.length) {
780 if (!arguments.length) {
[all …]
/plugin/autotooltip/
H A Dscript.js27 if (!container.length) {
31 if (!container.length) {
/plugin/autotranslation/
H A Dscript.js6 if(!$frm.length) return;
13 if(action.substr(action.length-1) == '/'){
/plugin/backlinks2/_test/
H A Dsyntax.test.php128 pq('#plugin__backlinks', $doc)->length,
136 $wikilinks->contents()->length,
H A Dsyntax_exclude.test.php97 pq('#plugin__backlinks', $doc)->length,
105 $wikilinks->contents()->length,
H A Dsyntax_include.test.php89 pq('#plugin__backlinks', $doc)->length,
97 $wikilinks->contents()->length,
H A Dsyntax_include_deep.test.php96 pq('#plugin__backlinks', $doc)->length,
104 $wikilinks->contents()->length,
/plugin/backup/
H A Dscript.js2 for (var btIter = 0; btIter < btColl.length; i++) {
/plugin/barcodes/
H A DLICENSE.md72 (ten or fewer lines in length), you do both of the following:
/plugin/barcodes/vendor/composer/
H A DClassLoader.php254 $length = strlen($prefix);
255 if ('\\' !== $prefix[$length - 1]) {
258 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
309 $length = strlen($prefix);
310 if ('\\' !== $prefix[$length - 1]) {
313 $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
H A DQRcode.php1085 protected function calcN1N3($length) { argument
1087 for ($i=0; $i<$length; ++$i) {
1092 if (($i >= 3) AND ($i < ($length-2)) AND ($this->runLength[$i] % 3 == 0)) {
1408 $length = $this->eatNum();
1412 $length = $this->eatAn();
1417 $length = $this->eatKanji();
1419 $length = $this->eat8();
1424 $length = $this->eat8();
1428 if ($length == 0) {
1431 if ($length < 0) {
[all …]

12345678910>>...85