Home
last modified time | relevance | path

Searched refs:selector (Results 1 – 25 of 382) sorted by relevance

12345678910>>...16

/plugin/html2pdf/html2pdf/html2ps/
Dcss.selectors.inc.php70 function match_selector($selector, $root) { argument
71 switch ($selector[0]) {
73 if ($selector[1] == strtolower($root->tagname())) { return true; };
76 if ($selector[1] == strtolower($root->get_attribute('id'))) { return true; };
79 if (node_have_class($root, $selector[1])) { return true; }
80 if ($selector[1] == strtolower($root->get_attribute('class'))) { return true; };
83 if ((node_have_class($root, $selector[2])) &&
84 ($selector[1] == strtolower($root->tagname()))) { return true; };
87 foreach ($selector[1] as $subselector) {
96 if (match_selector($selector[1], $node)) { return true; };
[all …]
Dcss.rules.page.inc.php63 var $selector; variable in CSSAtRulePage
67 function CSSAtRulePage($selector, &$pipeline) { argument
68 $this->selector = $selector;
75 return $this->selector;
96 var $selector; variable in CSSAtRuleMarginBox
103 function CSSAtRuleMarginBox($selector, &$pipeline) { argument
104 $this->selector = $selector;
107 $css = $css . $this->_getCSSDefaults($selector);
118 return $this->selector;
121 function _getCSSDefaults($selector) { argument
[all …]
/plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Traits/
DTraversalTrait.php40 * @param string $selector
45 public function find(string $selector, string $prefix = 'descendant::'): NodeList { argument
50 return $this->findXPath(self::$cssSelectorConverter->toXPath($selector, $prefix));
187 public function preceding($selector = null): ?\DOMNode { argument
188 return $this->precedingUntil(null, $selector)->first();
196 public function precedingAll($selector = null): NodeList { argument
197 return $this->precedingUntil(null, $selector);
206 public function precedingUntil($input = null, $selector = null): NodeList { argument
207 return $this->_walkPathUntil('previousSibling', $input, $selector);
215 public function following($selector = null): ?\DOMNode { argument
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dclass.csstidy.php157 var $selector = ''; variable in csstidy
517 if($string{$i} == '/' && @$string{$i+1} == '*' && trim($this->selector) == '')
522 elseif($string{$i} == '@' && trim($this->selector) == '')
530 ($type == 'at') ? $this->at = '@'.$name : $this->selector = '@'.$name;
539 $this->selector = '@';
554 $this->selector .= $string{$i};
567 $this->_add_token(SEL_START, $this->selector);
574 $this->selector = '';
579 $this->selector = trim($this->selector).',';
580 $this->sel_separate[] = strlen($this->selector);
[all …]
/plugin/pagecss/vendor/csstidy-2.2.1/
H A Dclass.csstidy.php166 public $selector = ''; variable in csstidy
632 if ($string[$i] === '/' && @$string[$i + 1] === '*' && trim($this->selector) == '') {
636 } elseif ($string[$i] === '@' && trim($this->selector) == '') {
641 ($type === 'at') ? $cur_at = '@' . $name : $this->selector = '@' . $name;
655 $this->selector = '@';
685 $this->selector = $this->css_new_selector($this->at,$this->selector);
686 $this->_add_token(SEL_START, $this->selector);
691 $this->selector = '';
694 $this->selector = trim($this->selector) . ',';
695 $this->sel_separate[] = strlen($this->selector);
[all …]
/plugin/scrape/vendor/symfony/css-selector/Node/
DClassNode.php26 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\ClassNode
29 public function __construct(NodeInterface $selector, string $name) argument
31 $this->selector = $selector;
37 return $this->selector;
50 return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));
55 return sprintf('%s[%s.%s]', $this->getNodeName(), $this->selector, $this->name);
DHashNode.php26 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\HashNode
29 public function __construct(NodeInterface $selector, string $id) argument
31 $this->selector = $selector;
37 return $this->selector;
50 return $this->selector->getSpecificity()->plus(new Specificity(1, 0, 0));
55 return sprintf('%s[%s#%s]', $this->getNodeName(), $this->selector, $this->id);
DPseudoNode.php26 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\PseudoNode
29 public function __construct(NodeInterface $selector, string $identifier) argument
31 $this->selector = $selector;
37 return $this->selector;
50 return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));
55 return sprintf('%s[%s:%s]', $this->getNodeName(), $this->selector, $this->identifier);
DNegationNode.php26 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\NegationNode
29 public function __construct(NodeInterface $selector, NodeInterface $subSelector) argument
31 $this->selector = $selector;
37 return $this->selector;
50 return $this->selector->getSpecificity()->plus($this->subSelector->getSpecificity());
55 return sprintf('%s[%s:not(%s)]', $this->getNodeName(), $this->selector, $this->subSelector);
DAttributeNode.php26 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\AttributeNode
32 …public function __construct(NodeInterface $selector, ?string $namespace, string $attribute, string… argument
34 $this->selector = $selector;
43 return $this->selector;
71 return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));
79 ? sprintf('%s[%s[%s]]', $this->getNodeName(), $this->selector, $attribute)
80 …: sprintf("%s[%s[%s %s '%s']]", $this->getNodeName(), $this->selector, $attribute, $this->operator…
DCombinedSelectorNode.php26 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode
30 …public function __construct(NodeInterface $selector, string $combinator, NodeInterface $subSelecto… argument
32 $this->selector = $selector;
39 return $this->selector;
57 return $this->selector->getSpecificity()->plus($this->subSelector->getSpecificity());
64 …return sprintf('%s[%s %s %s]', $this->getNodeName(), $this->selector, $combinator, $this->subSelec…
DFunctionNode.php28 private $selector; variable in Symfony\\Component\\CssSelector\\Node\\FunctionNode
35 public function __construct(NodeInterface $selector, string $name, array $arguments = []) argument
37 $this->selector = $selector;
44 return $this->selector;
65 return $this->selector->getSpecificity()->plus(new Specificity(0, 1, 0));
74 …return sprintf('%s[%s:%s(%s)]', $this->getNodeName(), $this->selector, $this->name, $arguments ? '…
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
DIAMCredentials.php31 private $selector; variable in Google\\Auth\\Credentials\\IAMCredentials
39 * @param string $selector the IAM selector
42 public function __construct($selector, $token) argument
44 if (!is_string($selector)) {
55 $this->selector = $selector;
86 $metadata_copy[self::SELECTOR_KEY] = $this->selector;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/
DID.php23 protected $selector; variable in HTMLPurifier_AttrDef_HTML_ID
26 * @param bool $selector
28 public function __construct($selector = false) argument
30 $this->selector = $selector;
41 if (!$this->selector && !$config->get('Attr.EnableID')) {
66 if (!$this->selector) {
102 if (!$this->selector) {
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceUsage/
DCustomErrorRule.php29 public $selector; variable in Google\\Service\\ServiceUsage\\CustomErrorRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DMetricRule.php29 public $selector; variable in Google\\Service\\ServiceUsage\\MetricRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DSystemParameterRule.php28 public $selector; variable in Google\\Service\\ServiceUsage\\SystemParameterRule
47 public function setSelector($selector) argument
49 $this->selector = $selector;
56 return $this->selector;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/
DCustomErrorRule.php29 public $selector; variable in Google\\Service\\ServiceManagement\\CustomErrorRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DMetricRule.php29 public $selector; variable in Google\\Service\\ServiceManagement\\MetricRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DSystemParameterRule.php28 public $selector; variable in Google\\Service\\ServiceManagement\\SystemParameterRule
47 public function setSelector($selector) argument
49 $this->selector = $selector;
56 return $this->selector;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceConsumerManagement/
DMetricRule.php29 public $selector; variable in Google\\Service\\ServiceConsumerManagement\\MetricRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DCustomErrorRule.php29 public $selector; variable in Google\\Service\\ServiceConsumerManagement\\CustomErrorRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/
DMetricRule.php29 public $selector; variable in Google\\Service\\ServiceNetworking\\MetricRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DCustomErrorRule.php29 public $selector; variable in Google\\Service\\ServiceNetworking\\CustomErrorRule
48 public function setSelector($selector) argument
50 $this->selector = $selector;
57 return $this->selector;
DSystemParameterRule.php28 public $selector; variable in Google\\Service\\ServiceNetworking\\SystemParameterRule
47 public function setSelector($selector) argument
49 $this->selector = $selector;
56 return $this->selector;

12345678910>>...16