Home
last modified time | relevance | path

Searched refs:lines (Results 126 – 150 of 529) sorted by relevance

12345678910>>...22

/plugin/swiftmail/Swift/Message/
H A DEncoder.php197 $lines = explode($le, $string);
198 foreach ($lines as $n => $line)
199 $lines[$n] = $this->rawQPEncode(rtrim($line, $trailing_spaces));
200 $string = implode($le, $lines);
351 $lines = explode($le, $data_wrapped);
352 $first_line = array_shift($lines);
/plugin/changes/
H A Dsyntax.php231 $lines = [];
235 $lines = @file($conf['changelog']);
242 // Add a tag to identiy the media lines
248 $lines = array_merge($lines, $linesMedia);
256 for ($i = count($lines) - 1; $i >= 0; $i--) {
258 $lines[$i],
/plugin/fckg/fckeditor/editor/dialog/
H A Dget_headers.php18 $lines = file($path); variable
20 foreach ($lines as $line) {
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Driver/
H A DPHPDBG.php78 foreach ($sourceLines as $file => $lines) {
79 foreach ($lines as $lineNo => $numExecuted) {
/plugin/authyubikey/
H A Dauth.php227 $lines = file($config_cascade['plainauth.users']['default']);
228 foreach($lines as $line) {
248 $lines = file(DOKU_CONF . 'users.yubikeys.php');
249 foreach($lines as $line) {
/plugin/vcard/
H A Dvcard.php40 $lines = preg_split("/(?:\r\n|\r|\n)/", $input);
46 for ($j=0;$j<count($lines);$j++) {
47 $line = $lines[$j];
66 if ($j<count($lines)-1) $output .= $linebreak;
/plugin/snippeter/
H A Daction.php47 $lines = file($snipath.'/'.$file);
48 foreach($lines as $line){
/plugin/behave/
H A Dbehave.js133 lines: {
393 lines = toIndent.split("\n"),
397 for(i = 0; i<lines.length; i++){
398 if(lines[i].substring(0,tab.length) == tab){
399 lines[i] = lines[i].substring(tab.length);
402 toIndent = lines.join("\n");
408 for(i in lines){
409 lines[i] = tab + lines[i];
411 toIndent = lines.join("\n");
/plugin/sentry/action/
H A Dajax.php83 $lines = explode("\n", $trace);
84 foreach ($lines as $line) {
/plugin/ckgdoku/ckeditor/
H A Dget_headers.php29 $lines = file($path); variable
31 foreach ($lines as $line) {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
H A Dfunctions.php59 * @param iterable $lines Header lines array of strings in the following
63 function headers_from_lines($lines) argument
67 foreach ($lines as $line) {
/plugin/plantuml/
H A Dsyntax.php58 $lines = explode("\n", $match);
59 $conf = array_shift($lines);
60 array_pop($lines);
90 $input = join("\n", $lines);
/plugin/dokutranslate/
H A Dadmin.php90 $lines = array();
95 $lines[] = $line;
104 $lines[] = "$where\t$who\n";
108 io_saveFile(DOKUTRANSLATE_MODLIST, join('',$lines));
/plugin/translationbuddy/
H A Dsyntax.php56 $lines = explode("\n",$match);
57 array_pop($lines);
58 array_shift($lines);
62 foreach ( $lines as $line ) {
/plugin/ditaa/
H A Dsyntax.php80 $lines = explode("\n", $match);
81 $conf = array_shift($lines);
82 array_pop($lines);
100 $input = join("\n", $lines);
/plugin/aichat/vendor/vanderlee/php-sentence/src/
H A DSentence.php106 * Breaks a piece of text into lines by linebreak.
117 $lines = [];
123 $lines[] = $line;
127 $lines[] = $line;
129 return $lines;
133 * Splits an array of lines by (consecutive sequences of)
/plugin/strata/syntax/
H A Dentry.php53 $lines = explode("\n",$match);
54 $header = trim(array_shift($lines));
55 $footer = trim(array_pop($lines));
81 $tree = $this->syntax->constructTree($lines,'data entry');
86 // fetch all lines
87 $lines = $this->syntax->extractText($tree);
97 // now handle all lines
98 foreach($lines as $line) {
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshCore.js1971 var lines = splitLines(str);
1974 lines[i] = callback(lines[i], i);
1977 return lines.join('\r\n');
2139 var lines = splitLines(code),
2225 var line = lines[i];
2243 lines[i] = lines[i].substr(min);
2245 return lines.join('\n');
2419 code.push(lines[i].innerText || lines[i].textContent);
2642 var lines = [],
2651 return lines;
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DParser.php34 private $lines = []; variable in Symfony\\Component\\Yaml\\Parser
104 $this->lines = [];
121 $this->lines = explode("\n", $value);
122 $this->numberOfParsedLines = \count($this->lines);
433 if (\is_string($value) && $this->lines[0] === trim($value)) {
435 $value = Inline::parse($this->lines[0], $flags, $this->refs);
452 foreach ($this->lines as $line) {
595 // empty and comment-like lines do not influence the indentation depth
679 return (\count($this->lines) - 1) > $this->currentLineNb;
691 $this->currentLine = $this->lines[
[all...]
/plugin/fckg/action/
H A Dmeta.php496 $lines = file($safescript );
498 for($i=0; $i<count($lines); $i++) {
499 if(strpos($lines[$i],'/**')){
500 if(isset($lines[$i+1])) {
501 if(stripos($lines[$i+1], 'upgrade') !== false) {
/plugin/authg2fa/
H A DTokenHelper.php22 $lines = file($this->_g2fafile);
23 foreach($lines as $line) {
/plugin/ckgedit/ckeditor/
H A Dget_headers.php37 $lines = file($path); variable
39 foreach ($lines as $line) {
/plugin/diagramsnet/lib/js/diagramly/util/
H A DmxJsCanvas.js723 var lines = str.split('\n');
733 y -= (lines.length-1) * lineHeight / 2;
738 y -= lineHeight * (lines.length-1);
746 for (var i = 0; i < lines.length; i++)
749 lineWidth[i] = this.ctx.measureText(lines[i]).width;
767 for (var i = 1; i < lines.length; i++)
781 …t(startMostX, backgroundY, maxWidth, this.state.fontSize * mxConstants.LINE_HEIGHT * lines.length);
787 …t(startMostX, backgroundY, maxWidth, this.state.fontSize * mxConstants.LINE_HEIGHT * lines.length);
793 for (var i = 0; i < lines.length; i++)
795 this.ctx.fillText(lines[i], lineX[i], y);
/plugin/aichat/vendor/erusev/parsedown/
H A DParsedown.php35 # split text into lines
36 $lines = explode("\n", $text);
38 # iterate through lines to identify blocks
39 $markup = $this->lines($lines);
144 protected function lines(array $lines) argument
148 foreach ($lines as $line)
662 'handler' => 'lines',
1555 protected function li($lines) argument
[all...]
/plugin/owncloud/
H A Daction.php240 $lines = 0;
241 if(!empty($meta)) $lines = count($meta);
242 if($lines >= $x ){
243 $xLine = $meta[$lines-$x];

12345678910>>...22