Home
last modified time | relevance | path

Searched refs:length (Results 26 – 50 of 1975) sorted by relevance

12345678910>>...79

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dlength.test2 "length" filter
4 {{ array|length }}
5 {{ string|length }}
6 {{ number|length }}
7 {{ to_string_able|length }}
8 {{ countable|length }}
9 {{ iterator_aggregate|length }}
10 {{ null|length }}
11 {{ magic|length }}
12 {{ non_countable|length }}
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.core.js106 var length = array.length,
490 length = array.length;
538 length = array.length;
803 var length = props.length;
862 length = array.length;
982 length = props.length;
1013 length = sources.length,
1072 length = props.length;
1362 length = length == null ? MAX_SAFE_INTEGER : length;
1508 var length = arguments.length;
[all …]
H A Dlodash.fp.js125 var length = array ? array.length : 0,
129 result[length] = array[length];
158 var length = arguments.length,
163 args[length] = arguments[length];
189 var length = arguments.length;
195 args[length] = arguments[length];
293 length = result.length;
432 length = path.length,
525 var length = arguments.length;
531 args[length] = arguments[length];
[all …]
/plugin/quizlib/scripts/
H A Dquizlib.js84 if (this.answers.length != this.questions.length) {
110 for (var k=0; k < answerInputs.length; k++) {
121 } else if (userAnswer.length === 0) {
134 for (i=0; i < unansweredQs.length; i++) {
153 while (questionWarnings.length > 0) {
161 while (highlightedQuestions[i].length > 0) {
170 while (tempElements.length > 0) {
262 this.totalQuestions = this.results.length;
264 for (var i=0; i < this.results.length; i++) {
287 if (obj1.length != obj2.length) return false;
[all …]
/plugin/formatplus2/
H A Dscript.js52 for(var j=0; j<quotes.length; j+=2){
54 if(q.length < 3) continue;
57 if(j+1 < quotes.length){
59 if(q.length >= 3){
68 if(q_open.length==0) q_open.push('“');
69 if(q_close.length==0) q_close.push('”');
73 for(var i=0; i<qelems.length; i++){
79 while(qstack.length > 0){
87 var mark_before = document.createTextNode(q_open[qstack.length % q_open.length]);
88 var mark_after = document.createTextNode(q_close[qstack.length % q_open.length]);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php135 $length = max(strlen($a), strlen($b));
178 $length = max(strlen($s), strlen($q));
183 $length = max(strlen($r), strlen($s));
203 $length = strlen($x);
205 $length = max(strlen($x), strlen($y));
206 $x = str_pad($x, $length, '0');
207 $y = str_pad($y, $length, '0');
239 $length = strlen($x);
248 return $length != 4 ?
255 $m = $length >> 1;
[all …]
/plugin/filelist/_test/
H A Dfilelist.test.php
/plugin/prettytables/
H A Dscript.js77 for (var i=0;i<lines.length;i++){
84 while (t.length != '0'){
87 t = t.substr(s[0].length);
89 if (t.length != 0){
91 t = t.substr(s[1].length);
102 while (t.length != '0'){
104 t = t.substr(s[0].length);
106 if (t.length != 0){
108 t = t.substr(s[1].length);
158 for (i=0;i<colsize.length;i++){
[all …]
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DIn.php59 * @param int $length Length.
62 public function read($length); argument
67 * @param int $length Length.
70 public function readString($length); argument
90 * @param int $length Length.
93 public function readInteger($length = 1); argument
98 * @param int $length Length.
101 public function readFloat($length = 1); argument
/plugin/gtime/gtlib/util/
H A DGTBase16.php42 * @param int $length the number of bytes to encode
45 public static function encode(array $bytes, $offset = null, $length = null) { argument
46 return self::getInstance()->encode($bytes, $offset, $length);
55 * @param int $length the number of bytes to encode
58 public static function encodeWithColons(array $bytes, $offset = null, $length = null) { argument
59 return self::getInstance()->encode($bytes, $offset, $length, ':', 2);
68 * @param int $length the number of bytes to encode
71 public static function encodeWithSpaces(array $bytes, $offset = null, $length = null) { argument
72 return self::getInstance()->encode($bytes, $offset, $length, ' ', 2);
H A DGTBigInteger.php62 $length = count($bytes);
64 if ($length <= 0) {
77 for ($i = 0; $i < $length; $i++) {
218 GTUtil::lpad($bytes1, $length, 0x0);
219 GTUtil::lpad($bytes2, $length, 0x0);
223 for ($i = 0; $i < $length; $i++) {
243 GTUtil::lpad($bytes1, $length, 0x0);
244 GTUtil::lpad($bytes2, $length, 0x0);
248 for ($i = 0; $i < $length; $i++) {
268 GTUtil::lpad($bytes1, $length, 0x0);
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
H A DEanExt.php15 * @param int $length
22 public function __construct($code, $length, $leftMargin, $rightMargin, $xDim, $barHeight, $separatorMargin) argument
24 $this->init($code, $length);
35 * @param int $length
37 private function init($code, $length = 5) argument
40 $code = str_pad($code, $length, '0', STR_PAD_LEFT);
43 if ($length == 2) {
45 } elseif ($length == 5) {
96 $p = $parities[$length][$r];
99 for ($i = 1; $i < $length;
[all...]
H A DEanUpc.php16 * @param int $length
22 public function __construct($code, $length, $leftMargin, $rightMargin, $xDim, $barHeight) argument
24 $this->init($code, $length);
34 * @param int $length
36 private function init($code, $length) argument
45 if ($length == 6) {
46 $length = 12; // UPC-A
49 $dataLength = $length - 1;
61 if ($length > 12) {
69 if ($length < 1
[all...]
/plugin/indexmenu2/cms/extensions/dom/
H A Dselectbox.js13length;W<s;W++){if(z&&O[W][x]==X)continue;if(i.test(O[W].text)){w++;O[W][x]=X}else{if(O[W][x]!=X||…
/plugin/authfacebook/lib/PseudoRandomString/
H A DPseudoRandomStringGeneratorTrait.php31 * @param int $length The length to validate.
35 public function validateLength($length) argument
37 if (!is_int($length)) {
41 if ($length < 1) {
50 * @param int $length The length of the string to return.
54 public function binToHex($binaryData, $length) argument
56 return \substr(\bin2hex($binaryData), 0, $length);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DAES.php68 * @param int $length
71 public function setBlockLength($length) argument
83 * @param int $length
86 public function setKeyLength($length) argument
88 switch ($length) {
94 …throw new \LengthException('Key of size ' . $length . ' not supported by this algorithm. Only keys…
96 parent::setKeyLength($length);
/plugin/virtualkeyboard/vk/extensions/dom/
H A Dselectbox.js216 0 == trackers[i][trackers[i].length-1].length) continue;
231 return options.length;
274 for (var i=0; i<options.length; i++) {
488 return node.options.length;
583 res[res.length] = tmp;
599 res[res.length] = tmp;
662 __saveOptionsTrack ('added', options[options.length-1].text, options[options.length-1].value);
678 if (isUndefined(list) || !isNumeric(list.length) || list.length<1) return false;
792 for (var i=opts.length-1; i>=0; i--) {
886 if (id >= node.options.length) {
[all …]
/plugin/passwords/
H A Dsyntax.php27 private $length = 8; variable in syntax_plugin_passwords
124 * @param int $length lengte
128 private function generatePassword($length) { argument
130 for($j=0; $j < $length; $j++) {
207 return $this->length;
213 * @param int $length
215 private function setLength($length) { argument
216 $length = (int) $length;
217 if($length > 0) {
218 $this->length = $length;
/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiGeometry.php80 * Returns the length of this Collection in its associated spatial reference.
81 * Eg. if Geometry is in geographical coordinate system it returns the length in degrees
84 public function length() function in geoPHP\\Geometry\\MultiGeometry
86 $length = 0;
88 $length += $component->length();
90 return $length;
95 $length = 0;
97 $length += $component->length3D();
99 return $length;
[all...]
/plugin/xlsx2dw/packages/xlsx/
H A Dcpexcel.full.mjs1028 var len = data.length;
1060 for(d=0;d<D.length;++d) {
1066 var len = data.length, i=0, j=0;
1092 for(var ee = 0, e = keys[ee]; ee < keys.length; ++ee) {
1134 for(d = 0; d < D.length; ++d) {
1166 var len = data.length, w = 0, ww = 0;
1194 var len = data.length, w = 0, ww = 0, j = 0;
1226 for(i = 0; i < sbcs_cache.length; ++i) {
1233 for(i = 0; i < dbcs_cache.length; ++i) {
1240 for(i = 0; i < magic_cache.length; ++i) {
[all …]
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfcktablehandler.js70 if ( oTable.rows.length == 1 )
110 if ( nodes && nodes.length )
197 if ( nodes && nodes.length )
296 if ( cells.length < 1 )
354 if ( cells.length < 2 )
449 if ( cells.length != 1 )
513 if ( cells.length != 1 )
619 if ( oCell && ( aCollCells.length == 0 || aCollCells[ aCollCells.length - 1 ] != oCell ) )
681 while ( table.rows.length > 0 )
804 if ( cells.length != 1 )
[all …]
/plugin/diagramsnet/lib/plugins/
H A Drandom.js18 if (cells.length > 0)
30 for (var i = 0; i < cells.length; i++)
70 if (cells.length > 1)
89 var numberA = childrenA.length;
90 var numberB = childrenB.length;
92 if (childrenA != null && childrenA.length > 1 || childrenB != null && childrenB.length > 1)
169 if (cells.length > 1)
195 if (childrenA != null && childrenA.length > 1 || childrenB != null && childrenB.length > 1)
393 if (cells.length > 0)
409 if (children != null && children.length > 1)
[all …]
H A Dvoice.js281 if (voices.length == 0)
352 if (results.length > 0)
379 var n = s.length;
380 var m = t.length;
467 str1.length > bestWord.length &&
468 bestWord.length < words[i].length))
1448 var min = Math.min(searchToken.length, lab.length);
1482 var min = Math.min(wrd.length, searchToken.length);
1952 if (lab != null && lab.length > 0 && lab.length < 20)
2160 if (cells.length > 1)
[all …]
/plugin/highlightjs/highlight/
H A Dhighlight.js17 for (var i = 0; i < array.length; i++)
80 var index = modes.length - 1;
179 modes[modes.length] = mode;
211 modes.length--;
213 modes.length--;
246 if(modes.length > 1)
325 if (stream1.length && stream2.length) {
347 while (stream1.length || stream2.length) {
355 var i = nodeStack.length;
409 if (original.length) {
[all …]
/plugin/code3/
H A Dscript.js8length;o<O;o++){var Q=String(I[o].src).match(l);if(Q){if(Q[1].match(/^((https?|file)\:\/{2,}|\w:[\…
11length;e++){var v=C[e].split(' ');for(var V=0;V<v.length;V++){if(v[V]){PR_keywords[v[V]]=true}}}})…

12345678910>>...79