Lines Matching refs:class

5  * The GeSHi class for Generic Syntax Highlighting. Please refer to the
7 * information about how to use this class.
145 for this regexp's html tag class */
219 * about how to use this class.
226 class GeSHi {
422 * The overall class for this code block
851 * class can then be used in a stylesheet to style this object's
854 * @param string $class The class name to use for this block of code
857 public function set_overall_class($class) {
858 $this->overall_class = $class;
2064 '<| class="br0">&#91;|>',
2065 '<| class="br0">&#93;|>',
2066 '<| class="br0">&#40;|>',
2067 '<| class="br0">&#41;|>',
2068 '<| class="br0">&#123;|>',
2069 '<| class="br0">&#125;|>',
2450 // get the class key for this block of code
2461 $attributes = ' class="sc' . $script_key . '"';
2574 $string_attributes = ' class="st'.$string_key.'"';
2658 $escape_char_attributes = ' class="es0"';
2714 $escape_char_attributes = ' class="es' . $escape_key . '"';
2750 $string_attributes = ' class="st_h"';
2751 $escape_char_attributes = ' class="es_h"';
2863 $attributes = ' class="co' . $comment['key'] . '"';
2930 $attributes = ' class="coMULTI"';
2937 $attributes = ' class="imp"';
3037 $attributes = ' class="co' . $comment_key . '"';
3477 $attributes = ' class="kw' . $k . '"';
3492 $attributes = ' class="nu'.$id.'"';
3525 $attributes = ' class="me' . $key . '"';
3584 $symbol_hl .= '<| class="sy' . $old_sym . '">';
3600 $symbol_hl = '<| class="sy0">';
3614 // Add class/style for regexps
3628 $attributes = ' class="' .
3631 $attributes = ' class="re' . $key . '"';
3879 //$attr = ' class="li2"';
3880 $attrs['class'][] = 'li2';
3881 $def_attr = ' class="de2"';
3892 //$attr = ' class="li1"';
3893 $attrs['class'][] = 'li1';
3894 $def_attr = ' class="de1"';
3923 $attrs['class'][] = "lx$i";
3925 $attrs['class'][] = "ln-xtra";
3944 $attributes = ' class="de1"';
3953 $attrs = ' class="ln"';
3970 $parsed_code .= '<span class="xtra li2"><span class="de2">';
3984 $parsed_code .= "<span class=\"xtra lx$i\">";
3986 $parsed_code .= "<span class=\"xtra ln-xtra\">";
4018 $parsed_code .= '<span class="xtra li2"><span class="de2">';
4032 $parsed_code .= "<span class=\"xtra lx$i\">";
4034 $parsed_code .= "<span class=\"xtra ln-xtra\">";
4074 * @todo Document behaviour change - class is outputted regardless of whether
4077 $attributes = ' class="' . $this->_genCSSName($this->language);
4105 $attr = ' class="head"';
4131 return "<table$attributes>$header<tbody><tr class=\"li1\">";
4159 $attr = ' class="foot"';
4321 * Generate a CSS class name from a given string.
4324 * @param string $name Proposed class name
4326 * @return string Safe CSS class name
4356 // that should be used, the same for a class. Otherwise, a selector
4374 " * CSS class: {$this->overall_class}, CSS id: {$this->overall_id}\n".