Home
last modified time | relevance | path

Searched refs:raw_content (Results 1 – 4 of 4) sorted by path

/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.inline.php165 function process_word($raw_content, &$pipeline) { argument
166 if ($raw_content === '') {
178 $len = strlen($raw_content);
180 $char = $manager_encoding->get_next_utf8_char($raw_content, $ptr);
H A Dbox.page.margin.class.php103 $raw_content =& $at_rule->get_css_property(CSS_CONTENT);
104 $content = $raw_content->render($pipeline->get_counters());
H A Dinline.content.builder.nowrap.php15 function build(&$box, $raw_content, &$pipeline) { argument
16 $raw_content = $this->remove_leading_linefeeds($raw_content);
17 $raw_content = $this->remove_trailing_linefeeds($raw_content);
18 $box->process_word($this->collapse_whitespace($raw_content), $pipeline);
H A Dmanager.encoding.php185 function get_next_utf8_char($raw_content, &$ptr) { argument
186 if ((ord($raw_content[$ptr]) & 0xF0) == 0xF0) {
188 } elseif ((ord($raw_content[$ptr]) & 0xE0) == 0xE0) {
190 } elseif ((ord($raw_content[$ptr]) & 0xC0) == 0xC0) {
196 $char = substr($raw_content,$ptr,$charlen);