Home
last modified time | relevance | path

Searched refs:node (Results 101 – 125 of 709) sorted by relevance

12345678910>>...29

/plugin/sqlraw/
H A Dsimple_html_dom.php103 $node->dump($node);
644 unset($node);
959 function appendChild($node) {$node->parent($this); return $node;} argument
1179 $node->_[HDOM_INFO_TEXT] = $s;
1416 $node->tag = 'text';
1424 $node->tag = 'text';
1467 if (!isset($this->self_closing_tags[strtolower($node->tag)])) $this->parent = $node;
1474 if ($node->tag == "br")
1511 $node->attr[$name] = str_replace("\r", "", $node->attr[$name]);
1512 $node->attr[$name] = str_replace("\n", "", $node->attr[$name]);
[all …]
/plugin/filelist/_test/
H A Dfilelist.test.php
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/
H A DHTML.php219 foreach ($doc->childNodes as $node) {
220 if ($node->nodeName === 'standard') {
221 $this->printTextBlock($node);
222 } else if ($node->nodeName === 'code_comparison') {
223 $this->printCodeComparisonBlock($node);
233 * @param DOMNode $node The DOMNode object for the text block.
237 protected function printTextBlock($node) argument
239 $content = trim($node->nodeValue);
254 * @param DOMNode $node The DOMNode object for the code comparison block.
258 protected function printCodeComparisonBlock($node) argument
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DKeywordPatch.php26 * @param ClassNode $node
30 public function supports(ClassNode $node) argument
38 * @param ClassNode $node
40 public function apply(ClassNode $node) argument
42 $methodNames = array_keys($node->getMethods());
45 $node->removeMethod($methodName);
H A DMagicCallPatch.php38 * @param ClassNode $node
42 public function supports(ClassNode $node) argument
50 * @param ClassNode $node
52 public function apply(ClassNode $node) argument
54 $types = array_filter($node->getInterfaces(), function ($interface) {
57 $types[] = $node->getParentClass();
75 $node->addMethod($methodNode);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DAbstractParseTreeVisitor.php38 public function visitChildren(RuleNode $node) argument
42 $n = $node->getChildCount();
45 if (!$this->shouldVisitNextChild($node, $result)) {
50 $child = $node->getChild($i);
68 public function visitTerminal(TerminalNode $node) argument
104 * Aggregates the results of visiting multiple children of a node. After
112 * of the last child visited (or return the initial value if the node has
119 * this method after the first child node is visited.
121 * visit a child node.
145 * @param RuleNode $node Th
154 shouldVisitNextChild(RuleNode $node, $currentResult) global() argument
[all...]
/plugin/fckg/fckeditor/editor/plugins/geshi/
H A Dfckplugin.js185 node.innerHTML = htmlText;
203 var removeWhiteSpace = function(node){ argument
205 var isWhite = function(node) { argument
209 var findWhite = function(node){ argument
211 var n = node.childNodes[i];
219 findWhite(node);
266 node = node.cloneNode(true);
268 node.innerHTML = node.innerHTML.replace(/<br>/g, "\n");
272 var paras = node.getElementsByTagName("p");
278 removeWhiteSpace(node);
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXML.php230 foreach($this->nodes as $node) {
257 foreach($this->nodes as $node) {
285 foreach($this->nodes as $node) {
286 if(gettype($node) == "object") {
288 $xmlContent .= $node->getXMLString();
290 $xmlContent .= $node->getValue();
313 foreach($this->nodes as $node) {
314 if(gettype($node) == "object") {
339 foreach($this->nodes as $node) {
355 foreach($this->nodes as $node) {
[all …]
/plugin/diagramsnet/lib/plugins/
H A Dimport.js32 var hasChilds = function(node) argument
34 for (var i = 0; i < node.childNodes.length; i++)
36 if (node.childNodes[i].nodeName == 'node')
46 var generatePreprocessingNodeInfo = function(node) argument
51 for (var i = 0; i < node.childNodes.length; i++)
53 var childNode = node.childNodes[i];
63 node.childCount = childCount;
79 else if (hasChilds(node))
85 var nodeName = node.getAttribute('TEXT') || '';
105 for (var i = 0; i < node.childNodes.length; i++)
[all …]
/plugin/diagramsnet/lib/js/diagramly/
H A DPages.js16 function DiagramPage(node, id) argument
18 this.node = node;
902 var node = this.editor.extractGraphModel(page.node, null, checked);
909 else if (node != null)
928 var node = this.editor.extractGraphModel(page.node);
1175 var node = page.node.cloneNode(false);
1851 return node;
1875 return node;
1922 return node;
1946 node = node.cloneNode(true);
[all …]
/plugin/bibtex/OSBib/
H A DPARSEXML.php96 $node = array();
97 $node["_NAME"] = $name;
99 $node["_ATTRIBUTES"] = $attrs;
100 $node["_DATA"] = "";
101 $node["_ELEMENTS"] = array();
103 array_push($this->nodeStack, $node);
109 $node = array_pop($this->nodeStack);
110 $data = trim($node["_DATA"]);
120 array_push($this->nodeStack[$lastnode - 1]["_ELEMENTS"], $node);
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.selectors.inc.php93 $node = $root->parent();
95 while ($node && $node->node_type() == XML_ELEMENT_NODE) {
96 if (match_selector($selector[1], $node)) { return true; };
97 $node = $node->parent();
101 $node = $root->parent();
102 if ($node && $node->node_type() == XML_ELEMENT_NODE) {
103 if (match_selector($selector[1], $node)) { return true; };
H A Dtree.navigation.inc.php11 function run(&$node) { argument
12 call_user_func($this->_callback, array('node' => &$node));
13 $this->walk_element($node);
16 function walk_element(&$node) { argument
17 if (!isset($node->content)) {
21 for ($i = 0, $size = count($node->content); $i < $size; $i++) {
22 $child =& $node->content[$i];
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DSimpleTokenParser.php54 …protected function getAttribute($node, $attribute, $arguments = array(), $type = Twig_Node_Express… argument
57 $node instanceof Twig_Node ? $node : new Twig_Node_Expression_Name($node, $line),
65 protected function call($node, $attribute, $arguments = array(), $line = -1) argument
67 …return $this->getAttribute($node, $attribute, $arguments, Twig_Node_Expression_GetAttr::TYPE_METHO…
70 protected function markAsSafe(Twig_Node $node, $line = -1) argument
73 $node,
80 protected function output(Twig_Node $node, $line = -1) argument
82 return new Twig_Node_Print($node, $line);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DConditionalTest.php23 $node = new ConditionalExpression($expr1, $expr2, $expr3, 1);
25 $this->assertEquals($expr1, $node->getNode('expr1'));
26 $this->assertEquals($expr2, $node->getNode('expr2'));
27 $this->assertEquals($expr3, $node->getNode('expr3'));
37 $node = new ConditionalExpression($expr1, $expr2, $expr3, 1);
38 $tests[] = [$node, '((1) ? (2) : (3))'];
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DCompiler.php76 public function compile(\Twig_NodeInterface $node, $indentation = 0) argument
87 if ($node instanceof ModuleNode) {
89 $this->filename = $node->getTemplateName();
92 $node->compile($this);
97 public function subcompile(\Twig_NodeInterface $node, $raw = true) argument
103 $node->compile($this);
215 public function addDebugInfo(\Twig_NodeInterface $node) argument
217 if ($node->getTemplateLine() != $this->lastLine) {
218 $this->write(sprintf("// line %d\n", $node->getTemplateLine()));
232 $this->debugInfo[$this->sourceLine] = $node->getTemplateLine();
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DVCFExportPlugin.php41 $server->on('browserButtonActions', function($path, $node, &$actions) {
42 if ($node instanceof IAddressBook) {
62 $node = $this->server->tree->getNodeForPath($path);
64 if (!($node instanceof IAddressBook)) return;
92 $node->getName()
117 foreach ($nodes as $node) {
119 if (!isset($node[200]['{' . Plugin::NS_CARDDAV . '}address-data'])) {
122 $nodeData = $node[200]['{' . Plugin::NS_CARDDAV . '}address-data'];
/plugin/diagramsnet/lib/js/orgchart/
H A DmxOrgChartLayout.js298 var visitorFunc = function (node) { argument
299 var box = node.Element;
305 if (node.State.IsHidden) {
322 branchOptimizerAllLinear: function(node) { argument
350 branchOptimizerStackers: function(node) { argument
351 if (node.getIsAssistantRoot()) {
362 branchOptimizerSmart: function(node) { argument
363 if (node.getIsAssistantRoot()) {
426 if (node.State.IsHidden) {
430 var box = node.Element;
[all …]
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/
H A DClassCreatorException.php18 private $node; variable in Prophecy\\Exception\\Doubler\\ClassCreatorException
20 public function __construct($message, ClassNode $node) argument
24 $this->node = $node;
29 return $this->node;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DMacroTest.php25 $node = new MacroNode('foo', $body, $arguments, 1);
27 $this->assertEquals($body, $node->getNode('body'));
28 $this->assertEquals($arguments, $node->getNode('arguments'));
29 $this->assertEquals('foo', $node->getAttribute('name'));
39 $node = new MacroNode('foo', $body, $arguments, 1);
50 [$node, <<<EOF
H A DBlockTest.php21 $node = new BlockNode('foo', $body, 1);
23 $this->assertEquals($body, $node->getNode('body'));
24 $this->assertEquals('foo', $node->getAttribute('name'));
30 $node = new BlockNode('foo', $body, 1);
33 [$node, <<<EOF
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php609 return $node;
658 …if (is_null($arXPath) && ($node instanceof DOMNode) && ($node->ownerDocument !== null) && $node->i…
660 $element = $node;
668 $node = $node->ownerDocument;
763 while ($node) {
780 $node = $node->nextSibling;
810 $node = $node->nextSibling;
1054 if (empty($node)) {
1610 if (empty($node)) {
1635 if (empty($node) || (! $node instanceof DOMNode)) {
[all …]
/plugin/ebnf/
H A Debnf.php128 function render_node($node, $lefttoright) {
130 if ($node->nodeName=='identifier' || $node->nodeName=='terminal') {
131 $text = html_entity_decode($node->getAttribute('value'));
136 if ($node->nodeName!='terminal') {
148 } else if ($node->nodeName=='option' || $node->nodeName=='loop') {
149 if ($node->nodeName=='loop')
151 $inner = render_node($node->firstChild, $lefttoright);
157 arrow($im, $w/2+EBNF_U/2, EBNF_U, $node
129 render_node($node, $lefttoright) global() argument
248 render_childs($node, $lefttoright) global() argument
[all...]
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DVCFExportPlugin.php41 $server->on('browserButtonActions', function($path, $node, &$actions) {
42 if ($node instanceof IAddressBook) {
62 $node = $this->server->tree->getNodeForPath($path);
64 if (!($node instanceof IAddressBook)) return;
97 foreach ($nodes as $node) {
99 if (!isset($node[200]['{' . Plugin::NS_CARDDAV . '}address-data'])) {
102 $nodeData = $node[200]['{' . Plugin::NS_CARDDAV . '}address-data'];
/plugin/revealjs/plugin/search/
H A Dsearch.js43 this.hiliteWords = function(node) argument
45 if(node == undefined || !node) return;
47 if(skipTags.test(node.nodeName)) return;
49 if(node.hasChildNodes()) {
50 for(var i=0; i < node.childNodes.length; i++)
51 this.hiliteWords(node.childNodes[i]);
53 if(node.nodeType == 3) { // NODE_TEXT
54 if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {
56 var secnode = node;
83 var after = node.splitText(regs.index);
[all …]

12345678910>>...29