Home
last modified time | relevance | path

Searched refs:start (Results 1 – 23 of 23) sorted by relevance

/web-bugs/tests/fixtures/templates/pages/
H A Dview.php3 <?php $this->start('content'); ?>
7 <?php $this->start('sidebar'); ?>
H A Dextends.php3 <?php $this->start('content') ?>
H A Dassignments.php3 <?php $this->start('content'); ?>
H A Doverrides.php3 <?php $this->start('content'); ?>
H A Dadd_function.php3 <?php $this->start('content'); ?>
H A Dincluding.php3 <?php $this->start('content') ?>
/web-bugs/templates/pages/
H A Dindex.php3 <?php $this->start('content') ?>
74 <?php $this->start('scripts') ?>
H A Dbugs_getting_valgrind_log.php3 <?php $this->start('content') ?>
H A Dhow_to_report.php3 <?php $this->start('content') ?>
H A Dbugs_generating_backtrace_win32.php3 <?php $this->start('content') ?>
H A Dbugs_generating_backtrace.php3 <?php $this->start('content') ?>
H A Dsearch_how_to.php3 <?php $this->start('content') ?>
H A Dquick_fix_desc.php3 <?php $this->start('content') ?>
/web-bugs/tests/fixtures/templates/includes/
H A Dextends.php3 <?php $this->start('item') ?>
/web-bugs/templates/pages/admin/
H A Dphpinfo.php3 <?php $this->start('content') ?>
H A Dmailing_lists.php3 <?php $this->start('content') ?>
H A Dquick_responses.php3 <?php $this->start('content') ?>
H A Ddatabase_status.php3 <?php $this->start('content') ?>
/web-bugs/src/Horde/Text/Diff/Engine/
H A DNative.php355 $start = $i;
365 $runlength = $i - $start;
370 while ($start > 0 && $lines[$start - 1] == $lines[$i - 1]) {
371 $changed[--$start] = 1;
373 while ($start > 0 && $changed[$start - 1]) {
374 $start--;
394 while ($i < $len && $lines[$start] == $lines[$i]) {
395 $changed[$start++] = false;
410 } while ($runlength != $i - $start);
415 $changed[--$start] = 1;
/web-bugs/tests/fixtures/templates/
H A Dlayout.php3 <?php $this->start('body') ?>
/web-bugs/tests/Unit/Template/
H A DContextTest.php20 $this->context->start('foo');
32 $this->context->start('foo');
/web-bugs/docs/
H A Dtemplates.md36 <?php $this->start('main_content') ?>
42 <?php $this->start('scripts') ?>
89 Block is started with the `$this->start('block_name')` call and ends with
93 <?php $this->start('block_name') ?>
123 <?php $this->start('scripts'); ?>
127 <?php $this->start('content') ?>
/web-bugs/src/Template/
H A DContext.php99 public function start(string $name): void function in App\\Template\\Context

Completed in 27 milliseconds