Home
last modified time | relevance | path

Searched refs:is_null (Results 1 – 25 of 698) sorted by relevance

12345678910>>...28

/plugin/html2pdf/html2pdf/html2ps/
Dheight.php16 if (!is_null($hc1->constant)) { return $hc1; };
20 if (!is_null($hc2->constant)) { return $hc2; };
28 if (is_null($hc2->min) && is_null($hc2->max)) { return $hc1; };
31 if (is_null($hc1->min) && is_null($hc1->max)) { return $hc2; };
52 if (!is_null($this->constant)) {
57 if (!is_null($this->min)) {
62 if (!is_null($this->max)) {
113 is_null($box->parent->_height_constraint->constant) &&
114 is_null($box->parent->_height_constraint->min) &&
115 is_null($box->parent->_height_constraint->max)) {
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/Property/VCard/
DDateAndOrTime.php143 if (is_null($v)) {
165 if (!is_null($parts['year'])) {
168 if (!is_null($parts['month'])) {
176 if (!is_null($parts['month']) || !is_null($parts['date'])) {
185 if (!is_null($parts['month'])) {
201 if (!is_null($parts['date'])) {
207 if (is_null($parts['hour']) && is_null($parts['minute']) && is_null($parts['second'])) {
214 if (!is_null($parts['hour'])) {
217 if (!is_null($parts['minute'])) {
227 if (!is_null($parts['minute'])) {
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/VCard/
DDateAndOrTime.php143 if (is_null($v)) {
165 if (!is_null($parts['year'])) {
168 if (!is_null($parts['month'])) {
176 if (!is_null($parts['month']) || !is_null($parts['date'])) {
185 if (!is_null($parts['month'])) {
201 if (!is_null($parts['date'])) {
207 if (is_null($parts['hour']) && is_null($parts['minute']) && is_null($parts['second'])) {
214 if (!is_null($parts['hour'])) {
217 if (!is_null($parts['minute'])) {
227 if (!is_null($parts['minute'])) {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/Property/VCard/
H A DDateAndOrTime.php143 if (is_null($v)) {
165 if (!is_null($parts['year'])) {
168 if (!is_null($parts['month'])) {
176 if (!is_null($parts['month']) || !is_null($parts['date'])) {
185 if (!is_null($parts['month'])) {
201 if (!is_null($parts['date'])) {
207 if (is_null($parts['hour']) && is_null($parts['minute']) && is_null($parts['second'])) {
214 if (!is_null($parts['hour'])) {
217 if (!is_null($parts['minute'])) {
227 if (!is_null($parts['minute'])) {
[all …]
/plugin/authchained/
H A Dauth.php47 if ( is_null($this->chained_auth) || !$this->chained_auth->success ) {
57 if ( !is_null($tmp_class) || $tmp_class->success ) {
74 if(is_null($this->usermanager_auth) || !$this->usermanager_auth->success ) {
99 if(is_null($this->chained_auth)) {
103 if (!is_null($this->usermanager_auth)) {
154 if(!is_null($this->chained_auth))
207 if(!is_null($this->chained_auth))
246 if(!is_null($this->usermanager_auth))
250 …if(is_null($this->chained_auth)||(!is_null($INPUT->server) && $user != $INPUT->server->str('REMOTE…
278 if(!is_null($this->usermanager_auth) && $this->canDo('addUser')) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Property/VCard/
DDateAndOrTime.php130 if (is_null($v)) {
152 if (!is_null($parts['year'])) {
155 if (!is_null($parts['month'])) {
161 if (!is_null($parts['month']) || !is_null($parts['date'])) {
168 if (!is_null($parts['month'])) {
182 if (!is_null($parts['date'])) {
187 if (is_null($parts['hour']) && is_null($parts['minute']) && is_null($parts['second'])) {
194 if (!is_null($parts['hour'])) {
197 if (!is_null($parts['minute'])) {
207 if (!is_null($parts['minute'])) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Property/VCard/
DDateAndOrTime.php140 if (is_null($v)) {
162 if (!is_null($parts['year'])) {
166 if (!is_null($parts['month'])) {
174 if (!is_null($parts['month']) || !is_null($parts['date'])) {
182 if (!is_null($parts['month'])) {
198 if (!is_null($parts['date'])) {
204 if (is_null($parts['hour']) && is_null($parts['minute']) && is_null($parts['second'])) {
211 if (!is_null($parts['hour'])) {
215 if (!is_null($parts['minute'])) {
226 if (!is_null($parts['minute'])) {
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DURI.php60 $this->scheme = is_null($scheme) || ctype_lower($scheme) ? $scheme : strtolower($scheme);
63 $this->port = is_null($port) ? $port : (int)$port;
116 if (!is_null($this->host)) {
130 if (!is_null($this->scheme) && is_null($this->host) || $this->host === '') {
140 if (!is_null($this->userinfo)) {
146 if (!is_null($this->port)) {
154 if (!is_null($this->host)) { // this catches $this->host === ''
178 } elseif (!is_null($this->scheme)) {
205 if (!is_null($this->query)) {
209 if (!is_null($this->fragment)) {
[all …]
DURIScheme.php72 (!is_null($uri->scheme) && ($uri->host === '' || is_null($uri->host))) ||
76 (is_null($uri->scheme) && $uri->host === '')
79 if (is_null($uri->scheme)) {
90 if (!is_null($host)) {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIFilter/
DMakeAbsolute.php30 if (is_null($this->base)) {
54 if (is_null($this->base)) {
57 if ($uri->path === '' && is_null($uri->scheme) &&
58 is_null($uri->host) && is_null($uri->query) && is_null($uri->fragment)) {
63 if (!is_null($uri->scheme)) {
65 if (!is_null($uri->host)) {
79 if (!is_null($uri->host)) {
89 if ($new_stack[0] !== '' && !is_null($this->base->host)) {
100 if (is_null($uri->userinfo)) {
103 if (is_null($uri->host)) {
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/
DOAuth2.php404 if (is_null($idToken)) {
427 if (is_null($this->getSigningKey())) {
430 if (is_null($this->getSigningAlgorithm())) {
445 if (is_null($v)) {
449 if (!(is_null($this->getAudience()))) {
453 if (!(is_null($this->getScope()))) {
461 if (!(is_null($this->getSub()))) {
482 if (is_null($uri)) {
507 if (!is_null($this->getRedirectUri())) {
513 if (!is_null($grantType)) {
[all …]
DCacheTrait.php49 if (is_null($this->cache)) {
54 if (is_null($key)) {
73 if (is_null($this->cache)) {
78 if (is_null($key)) {
94 if (is_null($key)) {
/plugin/webdavclient/vendor/sabre/vobject/lib/Property/
DTime.php54 if (!is_null($parts['hour'])) {
57 if (!is_null($parts['minute'])) {
67 if (!is_null($parts['minute'])) {
70 if (!is_null($parts['second'])) {
81 if (!is_null($parts['second'])) {
86 if (!is_null($parts['timezone'])) {
/plugin/davcard/vendor/sabre/vobject/lib/Property/
DTime.php54 if (!is_null($parts['hour'])) {
57 if (!is_null($parts['minute'])) {
67 if (!is_null($parts['minute'])) {
70 if (!is_null($parts['second'])) {
81 if (!is_null($parts['second'])) {
86 if (!is_null($parts['timezone'])) {
/plugin/davcal/vendor/sabre/vobject/lib/Property/
H A DTime.php54 if (!is_null($parts['hour'])) {
57 if (!is_null($parts['minute'])) {
67 if (!is_null($parts['minute'])) {
70 if (!is_null($parts['second'])) {
81 if (!is_null($parts['second'])) {
86 if (!is_null($parts['timezone'])) {
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
DTime.php79 if (!is_null($parts['hour'])) {
82 if (!is_null($parts['minute'])) {
92 if (!is_null($parts['minute'])) {
95 if (!is_null($parts['second'])) {
106 if (!is_null($parts['second'])) {
111 if (!is_null($parts['timezone'])) {
/plugin/webdav/vendor/sabre/vobject/lib/Property/
DTime.php75 if (!is_null($parts['hour'])) {
78 if (!is_null($parts['minute'])) {
88 if (!is_null($parts['minute'])) {
91 if (!is_null($parts['second'])) {
102 if (!is_null($parts['second'])) {
107 if (!is_null($parts['timezone'])) {
/plugin/netlogo/syntax/
Dapplet.php197 …if (is_null($data['width']) || is_null($data['height']) || $data['do']==='code' || $data['do']==='…
234 if (is_null($data['width']) || is_null($data['height'])) {
237 if (is_null($data['width'])) $data['width'] = max($rightbottom[2])+50;
238 if (is_null($data['height'])) $data['height'] = max($rightbottom[3])+300;
278 if (!is_null($data['align']) && $data['align']==='center') {
/plugin/gtime/gtlib/asn1/tsp/
DTSPAccuracy.php76 if (!is_null($this->seconds)) {
94 if (!is_null($this->millis)) {
120 if (!is_null($this->micros)) {
202 if (!is_null($this->seconds)) {
208 if (!is_null($this->millis)) {
214 if (!is_null($this->micros)) {
/plugin/davcard/vendor/sabre/vobject/lib/
DParameter.php57 if (is_null($name)) {
228 } elseif (is_null($this->value)) {
247 if (is_null($this->value)) {
297 if (!is_null($out)) $out.=',';
366 if (!is_null($this->iterator))
/plugin/webdavclient/vendor/sabre/vobject/lib/
DParameter.php57 if (is_null($name)) {
228 } elseif (is_null($this->value)) {
247 if (is_null($this->value)) {
297 if (!is_null($out)) $out.=',';
366 if (!is_null($this->iterator))
/plugin/davcal/vendor/sabre/vobject/lib/
H A DParameter.php57 if (is_null($name)) {
228 } elseif (is_null($this->value)) {
247 if (is_null($this->value)) {
297 if (!is_null($out)) $out.=',';
366 if (!is_null($this->iterator))
/plugin/bibtex/
Dsyntax.php463 if ( is_null($title) ) {
513 if (!is_null($title)) {
529 if ( !is_null($width) )
532 if ( !is_null($height) )
540 if ( !is_null($width) ) $ret .= ' width="'.$this->_xmlEntities($width).'"';
541 if ( !is_null($height) ) $ret .= ' height="'.$this->_xmlEntities($height).'"';
547 if ( !is_null($width) ) $ret .= ' width="'.$this->_xmlEntities($width).'"';
548 if ( !is_null($height) ) $ret .= ' height="'.$this->_xmlEntities($height).'"';
553 }elseif(!is_null($title)){
/plugin/icalevents/vendor/sabre/vobject/lib/
DParameter.php57 if (is_null($name)) {
231 } elseif (is_null($this->value)) {
251 if (is_null($this->value)) {
302 if (!is_null($out)) $out .= ',';
387 if (!is_null($this->iterator))
/plugin/webdav/vendor/sabre/vobject/lib/
DParameter.php57 if (is_null($name)) {
223 } elseif (is_null($this->value)) {
240 if (is_null($this->value)) {
286 if (!is_null($out)) {
367 if (!is_null($this->iterator)) {

12345678910>>...28