Home
last modified time | relevance | path

Searched refs:is_whitespace (Results 1 – 14 of 14) sorted by relevance

/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Node/
DText.php31 public $is_whitespace; variable in HTMLPurifier_Node_Text
41 public function __construct($data, $is_whitespace, $line = null, $col = null) argument
44 $this->is_whitespace = $is_whitespace;
DComment.php17 public $is_whitespace = true; variable in HTMLPurifier_Node_Comment
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/
DText.php30 public $is_whitespace; variable in HTMLPurifier_Token_Text
43 $this->is_whitespace = ctype_space($data);
49 … return new HTMLPurifier_Node_Text($this->data, $this->is_whitespace, $this->line, $this->col);
DComment.php17 public $is_whitespace = true; variable in HTMLPurifier_Token_Comment
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Injector/
DRemoveEmpty.php71 if ($next->is_whitespace) {
100 if ($prev instanceof HTMLPurifier_Token_Text && $prev->is_whitespace) {
DAutoParagraph.php46 if (!$this->forwardUntilEndToken($i, $current, $nesting) && $token->is_whitespace) {
51 if (!$token->is_whitespace || $this->_isInline($current)) {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ChildDef/
DList.php58 if (!empty($node->is_whitespace)) {
DCustom.php86 if (!empty($node->is_whitespace)) {
DRequired.php82 if (!empty($node->is_whitespace)) {
DStrictBlockquote.php74 if (($node instanceof HTMLPurifier_Node_Text && !$node->is_whitespace) ||
DTable.php160 if (!empty($node->is_whitespace)) {
/plugin/html2pdf/html2pdf/html2ps/
Dbox.container.php286 if (!is_whitespace($this->content[$i]) &&
307 if (!is_whitespace($this->content[$i]) && !$this->content[$i]->is_null()) {
331 if (!is_whitespace($this->content[$i]) && !$this->content[$i]->is_null()) {
634 if (is_whitespace($last_item)) {
837 if (!is_whitespace($this->_line[$i]) &&
1014 while ($i >= 0 && is_whitespace($this->content[$i])) {
Dbox.php551 function is_whitespace(&$box) { function
/plugin/txtconf/
Dconfig0.class.php443 function is_whitespace($c) { return (strpos("\t\n\r ",$c) !== false); } function
470 if (!$state && is_whitespace($contents{$i})) continue;