Home
last modified time | relevance | path

Searched refs:strlen (Results 26 – 50 of 1362) sorted by relevance

12345678910>>...55

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DGetopt.php50 if ($arg[0] != '-' || (strlen($arg) > 1 && $arg[1] == '-' && !$long_options)) {
54 } elseif (strlen($arg) > 1 && $arg[1] == '-') {
76 $argLen = strlen($arg);
88 if (strlen($spec) > 1 && $spec[1] == ':') {
94 if (!(strlen($spec) > 2 && $spec[2] == ':')) {
119 $opt_len = strlen($opt);
140 if (!strlen($opt_arg)) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DNamePrettifier.php43 $this->suffix == substr($name, -1 * strlen($this->suffix))) {
48 $this->prefix == substr($name, 0, strlen($this->prefix))) {
49 $title = substr($title, strlen($this->prefix));
70 if (!is_string($name) || strlen($name) == 0) {
86 if (strlen($name) == 0) {
96 $max = strlen($name);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/ControlStructures/
H A DForEachLoopDeclarationSniff.php100 $spaceAfterOpen = strlen($tokens[($openingBracket + 1)]['content']);
130 $spaceBeforeClose = strlen($tokens[($closingBracket - 1)]['content']);
183 if (strlen($tokens[($doubleArrow - 1)]['content']) !== 1) {
184 $spaces = strlen($tokens[($doubleArrow - 1)]['content']);
201 if (strlen($tokens[($doubleArrow + 1)]['content']) !== 1) {
202 $spaces = strlen($tokens[($doubleArrow + 1)]['content']);
220 if (strlen($tokens[($asToken - 1)]['content']) !== 1) {
221 $spaces = strlen($tokens[($asToken - 1)]['content']);
238 if (strlen($tokens[($asToken + 1)]['content']) !== 1) {
239 $spaces = strlen($tokens[($asToken + 1)]['content']);
/plugin/html2pdf/html2pdf/html2ps/
H A Dxhtml.p.inc.php27 $cutpos = $offset + strlen($matches[1]) + strlen($matches[2]) + strlen($matches[4]);
31 $offset += strlen($matches[1])+1;
/plugin/gcalendar/inc/
H A Dgcal_read.php131 if ( strlen($end_date)==0 ) $end_date = $start_date;
209 if(strlen($d)==1) $d='0'.$d;
210 if(strlen($m)==1) $m='0'.$m;
211 if(strlen($y)==0) $y=date('Y',$default_date);
212 if(strlen($y)==2) $y='20'.$y;
214 $text=trim(substr($text,strlen($match[0])));
233 $text=trim(substr($text,strlen($match[0])));
236 if(strlen($match[1])==1) $match[1] = '0'.$match[1];
256 $text=trim($match[1].substr($text,strlen($match[0])));
262 $text=trim(substr($text,strlen($match[0])));
[all …]
/plugin/groupmail/
H A Drecaptchalib.php53 $req=substr($req,0,strlen($req)-1);
74 $http_request .= "Content-Length: " . strlen($req) . "\r\n";
165 …if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
208 $numpad = $block_size - (strlen ($val) % $block_size);
209 return str_pad($val, strlen ($val) + $numpad, chr($numpad));
251 if (strlen ($arr[0]) <= 4) {
253 } else if (strlen ($arr[0]) <= 6) {
/plugin/recaptcha/lib/
H A Drecaptchalib.php55 $req=substr($req,0,strlen($req)-1);
76 $http_request .= "Content-Length: " . strlen($req) . "\r\n";
165 …if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
208 $numpad = $block_size - (strlen ($val) % $block_size);
209 return str_pad($val, strlen ($val) + $numpad, chr($numpad));
251 if (strlen ($arr[0]) <= 4) {
253 } else if (strlen ($arr[0]) <= 6) {
/plugin/contactmodern/
H A Drecaptchalib.php53 $req=substr($req,0,strlen($req)-1);
74 $http_request .= "Content-Length: " . strlen($req) . "\r\n";
165 …if ($challenge == null || strlen($challenge) == 0 || $response == null || strlen($response) == 0) {
208 $numpad = $block_size - (strlen ($val) % $block_size);
209 return str_pad($val, strlen ($val) + $numpad, chr($numpad));
251 if (strlen ($arr[0]) <= 4) {
253 } else if (strlen ($arr[0]) <= 6) {
/plugin/passpolicy/_test/
H A DHelperTest.php153 $this->assertTrue(strlen($pw1) >= 6, 'pw too short');
154 $this->assertTrue(strlen($pw2) >= 6, 'pw too short');
164 $this->assertTrue(strlen($pw1) >= 18, 'pw too short');
165 $this->assertTrue(strlen($pw2) >= 18, 'pw too short');
175 $this->assertTrue(strlen($pw1) >= 6, 'pw too short');
176 $this->assertTrue(strlen($pw2) >= 6, 'pw too short');
186 $this->assertTrue(strlen($pw1) >= 18, 'pw too short');
187 $this->assertTrue(strlen($pw2) >= 18, 'pw too short');
197 $this->assertTrue(strlen($pw1) >= 18, 'pw too short');
198 $this->assertTrue(strlen($pw2) >= 18, 'pw too short');
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DBufferStream.php61 return strlen($this->buffer);
91 return strlen($this->buffer) === 0;
104 $currentLength = strlen($this->buffer);
127 if (strlen($this->buffer) >= $this->hwm) {
131 return strlen($string);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DBufferStream.php63 return strlen($this->buffer);
88 return strlen($this->buffer) === 0;
101 $currentLength = strlen($this->buffer);
123 if (strlen($this->buffer) >= $this->hwm) {
127 return strlen($string);
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DSimpleTokenParser.php108 while ($cursor < strlen($str)) {
110 $cursor += strlen($match[0]);
117 $cursor += strlen($match[0]);
120 $cursor += strlen($match[0]);
123 $cursor += strlen($match[0]);
125 $cursor += strlen($match[0]);
128 $cursor += strlen($match[0]);
/plugin/zip/pear/File/Archive/Reader/
H A DMemory.php85 $this->stat[7] = $this->stat['size'] = strlen($this->memory);
124 if ($this->offset == strlen($this->memory)) {
128 $actualLength = strlen($this->memory) - $this->offset;
130 $actualLength = min($length, strlen($this->memory) - $this->offset);
143 $length = strlen($this->memory) - $this->offset;
145 $length = min($length, strlen($this->memory) - $this->offset);
223 return new File_Archive_Writer_Memory($this->memory, strlen($this->memory));
/plugin/mantis/lib/
H A Dclass.soap_transport_http.php645 $chunkstart = $chunkend + strlen($lb);
656 $length += strlen($chunk);
665 $length += strlen($chunk);
810 $tmplen = strlen($tmp);
884 $tmplen = strlen($tmp);
896 $strlen = 0;
900 $tmplen = strlen($tmp);
909 $strlen += $tmplen;
914 $tmplen = strlen($tmp);
1104 $datalen = strlen($data);
[all …]
/plugin/deflist/
H A Dsyntax.php359 0, -strlen($hits[0])) . '<dl>';
374 0, -strlen($hits[0])) . '<dd><dl>';
394 0, -strlen($hits[0]));
411 if (strlen($dd)) {
416 $aRenderer->doc .= (strlen($dd))
423 if (strlen($dd)) {
428 $aRenderer->doc .= (strlen($dd))
435 if (strlen($dd)) {
443 -strlen($hits[0])) . '</dd>';
/plugin/authwordpress/
H A Dclass-phpass.php74 if (strlen($output) < $count) {
139 if (strlen($salt) != 8)
227 if ( strlen( $password ) > 4096 ) {
237 if (strlen($hash) == 60)
242 if (strlen($random) < 3)
246 if (strlen($hash) == 20)
250 if (strlen($random) < 6)
255 if (strlen($hash) == 34)
266 if ( strlen( $password ) > 4096 ) {
/plugin/statdisplay/pchart/
H A DConversionHelpers.php36 if (strlen ( $Hour ) == 1) {
39 if (strlen ( $Minute ) == 1) {
42 if (strlen ( $Second ) == 1) {
79 if (strlen ( $o ) == 1) {
82 if (strlen ( $o ) == 2) {
/plugin/statistics/inc/pchart/
H A DConversionHelpers.php36 if(strlen($Hour) == 1) {
39 if(strlen($Minute) == 1) {
42 if(strlen($Second) == 1) {
82 if(strlen($o) == 1) {
85 if(strlen($o) == 2) {
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
H A DFunctionCommentSniff.php232 $typeLen = strlen($matches[1]);
234 $typeSpace = ($typeLen - strlen($type));
235 $typeLen = strlen($type);
243 $varLen = strlen($var);
249 $varSpace = strlen($matches[3]);
308 $spaces = ($maxType - strlen($param['type']) + 1);
325 …en]['length'] - $param['type_space'] - $param['var_space'] - strlen($param['type']) - strlen($para…
329 …$spaceLength = (strlen($content) + $tokens[($commentToken - 1)]['length'] + $tokens[($commentToken…
380 $spaces = ($maxVar - strlen($param['var']) + 1);
397 …en]['length'] - $param['type_space'] - $param['var_space'] - strlen($param['type']) - strlen($para…
[all …]
/plugin/interwikipaste/
H A Daction.php36 if (strlen($a) === strlen($b)) {
39 return (strlen($a) > strlen($b)) ? -1 : 1;
/plugin/findologicxmlexport/vendor/hoa/file/Temporary/
H A DWrite.php144 return $this->write($string, strlen($string));
179 return $this->write($integer, strlen($integer));
192 return $this->write($float, strlen($float));
205 return $this->write($array, strlen($array));
217 return $this->write($line . "\n", strlen($line) + 1);
233 return $this->write($string, strlen($string));
/plugin/zip/pear/File/Archive/Writer/
H A DAr.php90 if (strlen($filename) > 16) {
91 $currentSize += strlen($filename);
92 $struct .= sprintf("#1/%-13d", strlen($filename));
115 $size = (strlen ($filename) > 16) ? $size + strlen($filename) : $size;
134 $this->_currentStat[7] = strlen($this->_buffer);
/plugin/findologicxmlexport/vendor/hoa/file/Link/
H A DWrite.php143 return $this->write($string, strlen($string));
178 return $this->write($integer, strlen($integer));
191 return $this->write($float, strlen($float));
204 return $this->write($array, strlen($array));
216 return $this->write($line . "\n", strlen($line) + 1);
232 return $this->write($string, strlen($string));
/plugin/findologicxmlexport/vendor/hoa/file/
H A DWrite.php144 return $this->write($string, strlen($string));
179 return $this->write($integer, strlen($integer));
192 return $this->write($float, strlen($float));
205 return $this->write($array, strlen($array));
217 return $this->write($line . "\n", strlen($line) + 1);
233 return $this->write($string, strlen($string));
/plugin/avtaskbox/
H A Dsyntax.php93 … $title = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? trim($matches[1]) : '&nbsp;';
96 …$priority =(!empty($matches[1]) && strlen(trim($matches[1]))>0) ? 'Priority: '.trim($matches[1]) :…
99 …$estimate = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? ' of '.trim($matches[1]) : '&nb…
102 …$assigned = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? '('.trim($matches[1]).')' : '&n…
105 …$progress = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? intval(preg_replace('[^0-9]', '…
108 …$description = (!empty($matches[1]) && strlen(trim($matches[1]))>0) ? trim($matches[1]) : '&nbsp;';

12345678910>>...55