Home
last modified time | relevance | path

Searched refs:temp (Results 51 – 75 of 244) sorted by relevance

12345678910

/plugin/quickstats/
H A Daction.php217 $temp = array();
221 $temp[$name]=$value;
224 if(isset($temp['do']) && $temp['do'] == 'search') {
229 else $ar = ft_queryParser(urldecode($temp['id']));
253 if(isset($temp[$t])) {
254 unset($temp[$t]);
258 if(count($temp)) {
259 $keys = array_keys($temp);
262 unset($temp[$k]);
265 if(count($temp)) $data_found = true;
[all …]
/plugin/odt/ODT/elements/
H A DODTStateElement.php21 protected $temp = NULL; variable in ODTStateElement
112 $this->temp = $value;
121 return $this->temp;
/plugin/simplemysqlclient/syntax/
H A Dsimplemysqlclient.php280 $temp = substr ( $column, $pos + 4 );
281 if ($meta [$temp]) {
284 $def = $meta [$temp];
285 $column = $temp;
350 $temp = array (
356 if (! preg_match ( '#^[a-z0-9-]+/[+a-z0-9-]+$#i', $temp ['mime'] ))
360 if (trim ( $temp ['name'] ) === '')
364 return $temp;
485 $temp = is_array ( $value ) ? trim ( implode ( '', $value ) ) : '';
/plugin/crossdbsqlclient/syntax/
H A Ddbwrapper.php256 $temp = substr ( $column, $pos + 4 );
257 if ($meta [$temp]) {
260 $def = $meta [$temp];
261 $column = $temp;
326 $temp = array (
332 if (! preg_match ( '#^[a-z0-9-]+/[+a-z0-9-]+$#i', $temp ['mime'] ))
336 if (trim ( $temp ['name'] ) === '')
340 return $temp;
430 $temp = is_array ( $value ) ? trim ( implode ( '', $value ) ) : '';
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRSA.php393 $temp = $primes[$i]->subtract(self::$one);
397 $lcm['top'] = $lcm['top']->multiply($temp);
398 $lcm['bottom'] = $lcm['bottom'] === false ? $temp : $lcm['bottom']->gcd($temp);
401 list($temp) = $lcm['top']->divide($lcm['bottom']);
402 $gcd = $temp->gcd($e);
408 $d = $e->modInverse($temp);
411 $temp = $prime->subtract(self::$one);
412 $exponents[$i] = $e->modInverse($temp);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php459 $temp = $xp->multiply($this->a);
460 $temp = $xp->multiply($xp)->multiply($xp)->add($temp);
461 $temp = $temp->add($this->b);
462 $b = $temp->squareRoot();
480 $temp = $x->multiply($this->a);
481 $temp = $x->multiply($x)->multiply($x)->add($temp);
482 $rhs = $temp->add($this->b);
598 $temp = [0, 0, 0, 0];
604 $temp[$j] = isset($naf[$j][$i]) ? $naf[$j][$i] : 0;
605 if ($temp[$j] != 0) {
[all …]
H A DKoblitzPrime.php244 $temp = $x->multiply($x)->multiply($x);
245 $rhs = $temp->add($this->b);
280 $temp = $u;
282 $v = $temp->subtract($v->multiply($q));
284 $temp = $a;
286 $c = $temp->subtract($a->multiply($q));
288 $temp = $b;
290 $d = $temp->subtract($b->multiply($q));
H A DBase.php212 $temp = [
217 $temp[] = $p[2];
219 return $temp;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/
H A DPrivateKey.php115 $temp = $h->add($this->x->multiply($r));
116 $temp = $kinv->multiply($temp);
117 list(, $s) = $temp->divide($this->q);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DXML.php70 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
71 if (!$temp->length) {
74 $value = new BigInteger(Base64::decode($temp->item(0)->nodeValue), 256);
/plugin/diagramsnet/lib/plugins/
H A Dreplay.js182 var temp = JSON.parse(newValue);
183 current = temp.current;
184 newValue = temp.edits;
197 var temp = [];
208 temp.push(newValue[i].data);
217 newValue = temp.join('');
/plugin/diagramsnet/lib/js/diagramly/
H A DNotionClient.js571 var temp = listItem.cloneNode();
572 temp.style.padding = padding;
573 temp.appendChild(link);
575 link = temp;
692 var temp = listItem.cloneNode();
693 temp.style.backgroundColor = (gray) ?
703 temp.appendChild(typeImg);
711 div.appendChild(temp);
790 var temp = listItem.cloneNode();
791 temp.style.backgroundColor = (idx % 2 == 0) ?
[all …]
H A DTrees.js430 var temp = cells.slice(0);
434 var cell = temp[i];
565 var temp = newSource;
567 if (temp == null || temp == graph.model.getParent(cells[i]))
916 var temp = style['newEdgeStyle'];
918 if (temp != null)
922 var styles = JSON.parse(temp);
1018 if (temp != null && ((!horizontal && (Math.min(temp.x + temp.width,
1020 (horizontal && (Math.min(temp.y + temp.height, state.y + state.height) >=
1021 Math.max(temp.y, state.y)))))
[all …]
H A DDrawioFileSync.js490 var temp = spans[0];
491 temp.style.opacity = '0';
789 var temp = [];
804 temp = [];
816 temp = [];
824 temp = [];
834 if (temp.length > 0)
955 var temp = [];
973 temp = [];
985 temp = [];
[all …]
/plugin/odt/renderer/
H A Dpage.php400 $temp = substr ($matches [0], 9);
401 $temp = trim ($temp, ';');
402 $data ['maxlevel'] = $temp;
414 $temp = trim ($temp, ';');
415 $data ['title'] = $temp;
423 $temp = trim ($temp, ';');
433 $temp = trim ($temp, ';');
442 $temp = trim ($temp, ';');
444 if ( $temp == '1' ) {
456 $temp = trim ($temp, '";');
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPSS.php237 $temp = ['algorithm' => 'id-' . $options['MGFHash']];
238 $temp = ASN1::encodeDER($temp, Maps\HashAlgorithm::MAP);
241 'parameters' => new ASN1\Element($temp)
H A DXML.php79 …$temp = $xpath->query("//*[translate(local-name(), 'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopq…
80 if (!$temp->length) {
83 $value = new BigInteger(Base64::decode($temp->item(0)->nodeValue), 256);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BinaryField/
H A DInteger.php220 $temp = $precomputed[$i & 7] . str_repeat("\0", $i >> 3);
221 $result ^= str_pad($temp, $size, "\0", STR_PAD_LEFT);
412 $temp = static::polynomialMultiply($aux1, $q);
413 $aux = str_pad($aux0, strlen($temp), "\0", STR_PAD_LEFT) ^
414 str_pad($temp, strlen($aux0), "\0", STR_PAD_LEFT);
419 $temp = new static($this->instanceID);
420 $temp->value = ltrim($aux1, "\0");
421 return $temp;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DForm.php1410 $temp = '';
1411 $temp .= '/BC [ ' . $form['BC_C'] . ' ] ';
1412 $temp .= '/BG [ ' . $form['BG_C'] . ' ] ';
1424 $temp = '';
1425 $temp .= '/BC [ ' . $radio_color . ' ] ';
1426 $temp .= '/BG [ ' . $radio_background_color . ' ] ';
1428 $this->writer->write("/MK << $temp >>");
1462 $temp = '';
1463 $temp .= '/BC [ ' . $radio_color . ' ] ';
1464 $temp
[all...]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Recur/EventIterator/
H A DMaxInstancesTest.php28 $temp = Settings::$maxRecurrences;
36 Settings::$maxRecurrences = $temp;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/
H A DClassic.php43 list(, $temp) = $lhs->divide($rhs);
44 return $temp->value;
/plugin/pot/
H A Dhelper.php41 $temp = explode('=', $potsets);
42 $key = trim($temp[0]);
43 $value = trim($temp[1]);
/plugin/database2/
H A Dsyntax.php66 $temp = trim(substr($match, strlen('database2')+1, -1)); # isolate options (if any)
78 while($pos < strlen($temp)) {
79 $arg = Database2::parseAssignment($temp, $pos);
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWK.php179 $temp = \ltrim(\pack('N', $length), \chr(0));
181 return \pack('Ca*', 0x80 | \strlen($temp), $temp);
/plugin/simpleindex/
H A Dsyntax.php63 $temp=$result;
65 foreach ($temp as $value)

12345678910