Home | History | Annotate | Download | only in geshi

Lines Matching refs:hsc

1854                         $sym = $this->hsc($sym);
1870 $symbols = $this->hsc($symbols);
2018 $result = $this->hsc($this->source);
2237 $escaped_escape_char = $this->hsc($this->language_data['ESCAPE_CHAR']);
2279 $endresult .= $this->hsc($parts[$key][1]);
2424 $string = "<span$string_attributes>" . GeSHi::hsc($char);
2505 $string .= $this->hsc(substr($part, $start, $es_pos - $start));
2516 GeSHi::hsc($this->language_data['ESCAPE_CHAR']);
2543 $string .= $this->hsc($es_char_m) . '</span>';
2545 $es_char_m = $this->hsc($es_char);
2549 $string .= $this->hsc($es_char) . '</span>';
2556 $string .= $this->hsc(substr($part, $start, $es_pos - $start));
2572 $this->hsc($escape_str) . '</span>';
2577 $string .= $this->hsc(substr($part, $start, $close_pos - $start + $char_len)) . '</span>';
2656 $new_string .= $this->hsc(substr($string, $start, $es_pos - $start));
2662 $this->hsc($hardescape) . '</span>';
2686 $string = $new_string . $this->hsc(substr($string, $start));
2688 $string = $this->hsc($string);
2708 $test_str = $this->hsc(substr($part, $i, $comment['length']));
2784 $test_str = "<span$attributes>" . $this->hsc($open);
2797 $test_str = $this->hsc($open);
2807 $rest_of_comment = $this->hsc(substr($part, $i + $open_strlen, $close_pos - $i - $open_strlen + $close_strlen));
2891 $test_str = "<span$attributes>" . $this->hsc($this->change_case($comment_mark));
2893 $test_str = $this->hsc($comment_mark);
2903 $test_str .= $this->hsc(substr($part, $i + $com_len, $close_pos - $i - $com_len));
2936 $result .= $this->hsc($part);
3131 str_replace('+', '%20', urlencode($this->hsc($word))),
3132 str_replace('+', '%20', urlencode($this->hsc(strtolower($word)))),
3133 str_replace('+', '%20', urlencode($this->hsc(strtoupper($word)))),
3203 $stuff_to_parse = ' ' . $this->hsc($stuff_to_parse);
3698 (strpos($parsed_code, $this->hsc(GESHI_START_IMPORTANT)) === false)) {
3699 $parsed_code = str_replace($this->hsc(GESHI_END_IMPORTANT), '', $parsed_code);
4162 function hsc($string, $quote_style = ENT_COMPAT) {