Lines Matching defs:start

404      * Number at which line numbers should start at
1868 * Sets what number line numbers should start at. Should
1871 * <b>Warning:</b> Using this method will add the "start"
1879 * @param int $number The number to start line numbers at
2262 if(isset($matches_rx['start']) && isset($matches_rx['end']))
2265 'next_match' => $matches_rx['start'][1],
2533 // Possibly the start of a new string ...
2579 $start = $i + $char_len;
2588 $close_pos = strpos($part, $char, $start);
2595 if (isset($this->language_data['ESCAPE_REGEXP']) && $next_escape_regexp_pos < $start) {
2600 ($escape_regexp_cache_per_key[$escape_key]['pos'] >= $start ||
2608 } elseif (preg_match($regexp, $part, $match, PREG_OFFSET_CAPTURE, $start)) {
2624 if ($match_i === $start) {
2633 $simple_escape = strpos($part, $this->language_data['ESCAPE_CHAR'], $start);
2652 $string .= $this->hsc(substr($part, $start, $es_pos - $start));
2670 $start = $es_pos + 2;
2694 $start = $es_pos + strlen($es_char_m) + 1;
2697 $start = $es_pos + 2;
2703 $string .= $this->hsc(substr($part, $start, $es_pos - $start));
2721 $start = $es_pos + $escape['length'];
2724 $string .= $this->hsc(substr($part, $start, $close_pos - $start + $char_len)) . '</span>';
2725 $start = $close_pos + $char_len;
2741 $i = $start - 1;
2745 // The start of a hard quoted string
2761 $start = $i + $hq_strlen;
2762 while ($close_pos = strpos($part, $this->language_data['HARDQUOTE'][1], $start)) {
2763 $start = $close_pos + 1;
2800 $start = 0;
2802 while ($es_pos = strpos($string, $this->language_data['ESCAPE_CHAR'], $start)) {
2804 $new_string .= $this->hsc(substr($string, $start, $es_pos - $start));
2811 $start = $es_pos + strlen($hardescape);
2827 $start = $es_pos + $c;
2831 $start = $es_pos + 1;
2834 $string = $new_string . $this->hsc(substr($string, $start));
2940 // We don't include the start of the comment if it's an
3669 $start = explode(' ', $start_time);
3671 $this->time = $end[0] + $end[1] - $start[0] - $start[1];
3904 $start = "<pre$def_attr>";
3908 $start = "<div$def_attr>";
3938 $parsed_code .= "<li$attr_string>$start{$code[$i-1]}$end</li>$ls";
4093 $ol_attributes .= ' start="' . $this->line_numbers_start . '"';