Home
last modified time | relevance | path

Searched refs:lines (Results 26 – 28 of 28) sorted by last modified time

12

/dokuwiki/inc/ChangeLog/
H A DChangeLogTrait.php105 * Returns lines from changelog.
109 * lines in first or last chunk, but they obviously does not contain $rev.
132 $lines = file($file);
133 if ($lines === false) {
170 $lines = $this->readChunk($fp, $head, $tail);
172 return [$fp, $lines, $head, $tail, $eof];
176 * Read chunk and return array with lines of given chunk.
182 * @return array lines read from chunk
198 $lines = explode("\n", $chunk);
199 array_pop($lines); // remov
[all...]
/dokuwiki/inc/
H A DDifferenceEngine.php51 function __construct($lines) { argument
52 $this->orig = $lines;
64 function __construct($lines) { argument
65 $this->closing = $lines;
136 // Skip leading common lines.
142 // Skip trailing common lines.
151 // Ignore lines which do not exist in both files.
225 * This function assumes that the first lines of the specified portions
226 * of the two files do not match, and likewise that the last lines do not
227 * match. The caller must trim matching lines fro
407 _shift_boundaries($lines, & $changed, $other_changed) global() argument
849 _lines($lines, $prefix = ' ') global() argument
854 _context($lines) global() argument
858 _added($lines) global() argument
861 _deleted($lines) global() argument
1013 _split($lines) global() argument
1055 _split($lines) global() argument
1104 _added($lines) global() argument
1107 _deleted($lines) global() argument
1163 _lines($lines, $prefix = ' ', $color = 'white') global() argument
1191 _added($lines) global() argument
1195 _addedLines($lines, $escaped = false) global() argument
1201 _deleted($lines) global() argument
1207 _context($lines) global() argument
1280 _lines($lines, $prefix = ' ', $color = 'white') global() argument
1283 _added($lines) global() argument
1289 _deleted($lines) global() argument
1295 _context($lines) global() argument
1501 __construct($lines = false) global() argument
1527 input($lines) global() argument
1533 out1($lines) global() argument
1539 out2($lines) global() argument
1563 _append(& $array, $lines) global() argument
[all...]
/dokuwiki/inc/HTTP/
H A DHTTPClient.php778 $lines = explode("\n", $string);
779 array_shift($lines); //skip first line (status)
780 foreach ($lines as $line) {

12