Home | History | Annotate | Download | only in geshi

Lines Matching full:match_i

2336                             $match_i = false;
2345 $match_i = $comment_regexp_cache_per_key[$comment_key]['pos'];
2351 $match_i = $match[0][1];
2353 $match_i += $i;
2359 'pos' => $match_i
2366 if ($match_i !== false && $match_i < $next_comment_regexp_pos) {
2367 $next_comment_regexp_pos = $match_i;
2369 if ($match_i === $i) {
2444 $match_i = false;
2453 $match_i = $escape_regexp_cache_per_key[$escape_key]['pos'];
2459 $match_i = $match[0][1];
2461 $match_i += $start;
2467 'pos' => $match_i
2474 if ($match_i !== false && $match_i < $next_escape_regexp_pos) {
2475 $next_escape_regexp_pos = $match_i;
2477 if ($match_i === $start) {
2743 $match_i = false;
2752 $match_i = $comment_multi_cache_per_key[$open];
2753 } else if (($match_i = stripos($part, $open, $i)) !== false) {
2754 $comment_multi_cache_per_key[$open] = $match_i;
2759 if ($match_i !== false && $match_i < $next_comment_multi_pos) {
2760 $next_comment_multi_pos = $match_i;
2762 if ($match_i === $i) {
2840 $match_i = false;
2849 $match_i = $comment_single_cache_per_key[$comment_key];
2853 ($match_i = stripos($part, $comment_mark, $i)) !== false) ||
2856 (($match_i = strpos($part, $comment_mark, $i)) !== false))) {
2857 $comment_single_cache_per_key[$comment_key] = $match_i;
2862 if ($match_i !== false && $match_i < $next_comment_single_pos) {
2863 $next_comment_single_pos = $match_i;
2865 if ($match_i === $i) {