/plugin/authgoogle/google/external/ |
H A D | URITemplateParser.php | 73 $exp = new StdClass(); 77 $exp->varspecs = explode(',', $exp->variable_list); 78 $exp->vars = array(); 86 $exp->vars[] = $var; 90 $exp->reserved = false; 91 $exp->prefix = ''; 92 $exp->delimiter = ','; 98 $exp->prefix = ';'; 102 $exp->prefix = '?'; 114 $expressions[] = $exp; [all …]
|
/plugin/dokusioc/lib/ |
H A D | sioc_dokuwiki.php | 109 public function getContent(&$exp): string argument 125 $exp->siocURL('user', $cont_id) 141 $exp->siocURL('user', $this->creator['sioc:modifier']) 146 $exp->siocURL('user', $this->creator['sioc:modifier']) 167 $exp->siocURL('container', $this->has_container) 199 $exp->siocURL('post', $link_id) 210 $exp->siocURL('post', $link_id) 227 $exp->siocURL( 229 $this->id . $exp->_urlseparator . 'rev' . $exp 341 getContent(& $exp) global() argument 428 getContent(& $exp) global() argument [all...] |
H A D | sioc_inc.php | 197 public function getContent(&$exp): string argument 262 public function getContent(&$exp): string argument 274 $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('site', "", $this->page + 1) . "\"/>\n"; 288 $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('forum', $id) . "\"/>\n"; 304 $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('user', $id) . "\"/>\n"; 309 $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp->siocURL('site', "", $this->page + 1) . "\"/>\n"; 376 public function getContent(&$exp): string argument 394 if ($exp->_export_email) { 479 public function getContent(&$exp): string argument 499 $rdf .= " <rdfs:seeAlso rdf:resource=\"" . $exp 640 getContent(& $exp) global() argument 823 getContent(& $exp) global() argument 984 getContent(& $exp) global() argument 1209 getContent(& $exp) global() argument 1233 getContent(& $exp) global() argument [all...] |
/plugin/serverinfos/serverinfos/lib/ |
H A D | InfosServer.class.php | 90 $exp = explode(' ', $cpu_tmp64[0],3); 91 $systeme = $exp[2]; 186 $exp = explode(':', $tmpWin[7]); 187 $ram = $exp[1]; 202 $exp = explode(':', $tmp[13]); 203 $cpu_tmp = $exp[1]; 251 if ($os == "Darwin") {$mark = $exp[0];} 252 if ($os == "FreeBSD") {$mark = $exp[0];} 257 $int = explode(':', $exp[0]); 263 $int = explode(':', $exp[0]); [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSecurityToken/ |
H A D | GoogleIdentityStsV1IntrospectTokenResponse.php | 36 public $exp; variable in Google\\Service\\CloudSecurityToken\\GoogleIdentityStsV1IntrospectTokenResponse 89 public function setExp($exp) argument 91 $this->exp = $exp; 98 return $this->exp;
|
/plugin/struct/types/ |
H A D | Decimal.php | 45 $exp = floor(log10($value) / 3); 47 if ($exp < 0) { 49 $pfkey = -1 * $exp; 52 $pfkey = $exp; 57 $exp = $pfkey * $exp / abs($exp); 62 $value / 10 ** ($exp * 3) . "\xE2\x80\xAF" . $units[$pfkey] .
|
/plugin/diagramsnet/lib/plugins/ |
H A D | svgdata.js | 13 var exp = graphCreateSvgImageExport.apply(this, arguments); 16 var expDrawCellState = exp.drawCellState; 18 exp.drawCellState = function(state, canvas) 52 return exp;
|
/plugin/mathpublish/phpmathpublisher/ |
H A D | TextExpression.php | 28 * @param string $exp 31 public function __construct($exp, Helper $helper) argument 34 $this->text = $exp;
|
/plugin/combo/resources/webcode/ |
H A D | webcode-console.js | 12 let exp = {}; 162 exp.addLogEntry = function (input) { 168 exp.addTableEntry = function (input) { 174 exp.flushLogs = function () { 186 return exp;
|
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/ |
H A D | JWK.php | 132 $exp = JWT::urlsafeB64Decode($e); 135 $publicExponent = \pack('Ca*a*', 2, self::encodeLength(\strlen($exp)), $exp);
|
/plugin/farm/install/ |
H A D | preload.php | 94 …$exp = !$farmconf['userewrite'] ? $farmconf['farmer'] : (!$farmconf['farmrewrite'] ? $farmconf['ba… variable 96 if(!defined('DOKU_BASE')) define('DOKU_BASE', '/'.$wr.$exp); 98 if(!defined('DOKU_URL')) define('DOKU_URL', '/'.$farmconf['farmwebroot'].$exp);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/ |
H A D | Ed448.php | 80 $exp = $this->getModulo()->add(new BigInteger(1)); 81 $exp = $exp->bitwise_rightShift(2); 82 $x = $x2->pow($exp);
|
H A D | Ed25519.php | 132 $exp = $this->getModulo()->add(new BigInteger(3)); 133 $exp = $exp->bitwise_rightShift(3); 134 $x = $x2->pow($exp);
|
/plugin/authgoogle/google/auth/ |
H A D | Google_OAuth2.php | 420 $exp = 0; 422 $exp = $payload["exp"]; 424 if (!$exp) { 427 if ($exp >= $now + self::MAX_TOKEN_LIFETIME_SECS) { 432 $latest = $exp + self::CLOCK_SKEW_SECS;
|
H A D | Google_AssertionCredentials.php | 70 'exp' => $now + self::MAX_TOKEN_LIFETIME_SECS,
|
/plugin/zip/pear/ |
H A D | PEAR.php | 535 …$this->_expected_errors) && sizeof($this->_expected_errors) > 0 && sizeof($exp = end($this->_expec… 536 if ($exp[0] == "*" || 537 (is_int(reset($exp)) && in_array($code, $exp)) || 538 (is_string(reset($exp)) && in_array($message, $exp))) {
|
/plugin/publist/bib2tpl/lib/ |
H A D | PEAR.php | 497 count($exp = end($this->_expected_errors)) 499 if ($exp[0] == "*" || 500 (is_int(reset($exp)) && in_array($code, $exp)) || 501 (is_string(reset($exp)) && in_array($message, $exp))
|
/plugin/publistf/bib2tpl/lib/ |
H A D | PEAR.php | 497 count($exp = end($this->_expected_errors)) 499 if ($exp[0] == "*" || 500 (is_int(reset($exp)) && in_array($code, $exp)) || 501 (is_string(reset($exp)) && in_array($message, $exp))
|
/plugin/publistx/bib2tpl/lib/ |
H A D | PEAR.php | 497 count($exp = end($this->_expected_errors)) 499 if ($exp[0] == "*" || 500 (is_int(reset($exp)) && in_array($code, $exp)) || 501 (is_string(reset($exp)) && in_array($message, $exp))
|
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/yml/ |
H A D | ObjectWithExpressionVirtualPropertiesAndExcludeAll.yml | 5 exp: object.getVirtualValue()
|
H A D | ObjectWithInvalidExpression.yml | 9 exp: invalid
|
H A D | AuthorExpressionAccess.yml | 8 exp: object.getFirstName()
|
/plugin/ahrefmenu/ |
H A D | generate_map.py | 285 for exp in self.exp_branches: 287 if exp.full_url == i_place.full_url: 292 …"<branchLink id=\"" + self.network.escape_html(exp.full_url) + "\" link=\"" + self.network.escape_…
|
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/ |
H A D | VirtualProperty.php | 20 public $exp; variable in JMS\\Serializer\\Annotation\\VirtualProperty
|
/plugin/sqlraw/ |
H A D | simple_html_dom.php | 558 list($tag, $key, $val, $exp, $no_key) = $selector; 617 …->debugLog(2, "testing node: " . $node->tag . " for attribute: " . $key . $exp . $val . " where no… 621 $check = $this->match($exp, strtolower($val), strtolower($nodeKeyValue)); 623 $check = $this->match($exp, $val, $nodeKeyValue); 633 $check = $this->match($exp, strtolower($val), strtolower($k)); 635 $check = $this->match($exp, $val, $k); 650 protected function match($exp, $pattern, $value) { argument 654 switch ($exp) { 697 list($tag, $key, $val, $exp, $no_key) = array($m[1], null, null, '=', false); 701 if (!empty($m[5])) {$exp=$m[5];} [all …]
|