Home
last modified time | relevance | path

Searched refs:node (Results 126 – 150 of 709) sorted by relevance

12345678910>>...29

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/DocGenerators/
H A DText.php51 foreach ($doc->childNodes as $node) {
52 if ($node->nodeName === 'standard') {
53 $this->printTextBlock($node);
54 } else if ($node->nodeName === 'code_comparison') {
55 $this->printCodeComparisonBlock($node);
88 * @param DOMNode $node The DOMNode object for the text block.
92 protected function printTextBlock($node) argument
94 $text = trim($node->nodeValue);
134 * @param DOMNode $node The DOMNode object for the code comparison block.
138 protected function printCodeComparisonBlock($node) argument
[all …]
/plugin/highlightjs/highlight/
H A Dhighlight.js292 function nodeStream(node) { argument
294 (function (node, offset) {
304 node: node.childNodes[i]
310 node: node.childNodes[i]
315 })(node, 0);
335 function open(node) { argument
343 function close(node) { argument
360 } while (node != current.node);
476 node = pre.childNodes[i];
478 return node;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DAutoEscapeTest.php22 $node = new AutoEscapeNode(true, $body, 1);
24 $this->assertEquals($body, $node->getNode('body'));
25 $this->assertTrue($node->getAttribute('value'));
31 $node = new AutoEscapeNode(true, $body, 1);
34 [$node, "// line 1\necho \"foo\";"],
H A DImportTest.php23 $node = new ImportNode($macro, $var, 1);
25 $this->assertEquals($macro, $node->getNode('expr'));
26 $this->assertEquals($var, $node->getNode('var'));
35 $node = new ImportNode($macro, $var, 1);
37 $tests[] = [$node, <<<EOF
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/
H A DDivTest.php22 $node = new DivBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new DivBinary($left, $right, 1);
35 [$node, '(1 / 2)'],
H A DFloorDivTest.php22 $node = new FloorDivBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new FloorDivBinary($left, $right, 1);
35 [$node, '(int) floor((1 / 2))'],
H A DModTest.php22 $node = new ModBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new ModBinary($left, $right, 1);
35 [$node, '(1 % 2)'],
H A DMulTest.php22 $node = new MulBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new MulBinary($left, $right, 1);
35 [$node, '(1 * 2)'],
H A DOrTest.php22 $node = new OrBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new OrBinary($left, $right, 1);
35 [$node, '(1 || 2)'],
H A DAddTest.php22 $node = new AddBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new AddBinary($left, $right, 1);
35 [$node, '(1 + 2)'],
H A DAndTest.php22 $node = new AndBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new AndBinary($left, $right, 1);
35 [$node, '(1 && 2)'],
H A DConcatTest.php22 $node = new ConcatBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new ConcatBinary($left, $right, 1);
35 [$node, '(1 . 2)'],
H A DSubTest.php22 $node = new SubBinary($left, $right, 1);
24 $this->assertEquals($left, $node->getNode('left'));
25 $this->assertEquals($right, $node->getNode('right'));
32 $node = new SubBinary($left, $right, 1);
35 [$node, '(1 - 2)'],
/plugin/outliner/
H A Dscript.js11 var setState = function(node, state,actionState) { argument
16 var nodeId = getOutlinerId(node);
22 jQuery(node).removeClass('outliner-' + otherState).addClass('outliner-' + state);
23 var nodeId = getOutlinerId(node);
33 var nodeId = getOutlinerId(node);
49 var getOutlinerId = function(node) { argument
50 var match = node.className.match(/outl_\w+/);
/plugin/webdav/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php83 if (!$node instanceof IFile) return;
85 $body = $node->get();
772 if ($node instanceof IProperties) {
773 $node->propPatch($propPatch);
784 * @param INode $node
790 $lm = $node->getLastModified();
796 if ($node instanceof IFile) {
802 if ($node instanceof IQuota) {
805 $quotaInfo = $node->getQuotaInfo();
841 * @param INode $node
[all …]
H A DTree.php68 $node = $this->rootNode->getChild($baseName);
76 $node = $parent->getChild($baseName);
80 $this->cache[$path] = $node;
81 return $node;
178 $node = $this->getNodeForPath($path);
179 $node->delete();
194 $node = $this->getNodeForPath($path);
195 $children = $node->getChildren();
231 foreach ($this->cache as $nodePath => $node) {
260 $parents[$parent] = [$node];
[all …]
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php81 if (!$node instanceof IFile) return;
83 $body = $node->get();
772 if ($node instanceof IProperties) {
773 $node->propPatch($propPatch);
784 * @param INode $node
790 $lm = $node->getLastModified();
796 if ($node instanceof IFile) {
802 if ($node instanceof IQuota) {
805 $quotaInfo = $node->getQuotaInfo();
841 * @param INode $node
[all …]
H A DTree.php68 $node = $this->rootNode->getChild($baseName);
76 $node = $parent->getChild($baseName);
80 $this->cache[$path] = $node;
81 return $node;
178 $node = $this->getNodeForPath($path);
179 $node->delete();
194 $node = $this->getNodeForPath($path);
195 $children = $node->getChildren();
229 foreach ($this->cache as $nodePath => $node) {
258 $parents[$parent] = [$node];
[all …]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php78 if ($node instanceof DAV\IExtendedCollection) {
80 $node->getChild($name);
156 if ($node instanceof ICalendarObjectContainer || $node instanceof ICalendarObject) {
160 if ($node instanceof ICalendar) {
339 if ($node instanceof DAVACL\IPrincipal) {
407 if ($node instanceof ICalendarObject) {
413 $val = $node->get();
754 if (!$node instanceof ICalendarObject)
967 * @param INode $node
972 if ($node instanceof ICalendar) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DNameTest.php20 $node = new NameExpression('foo', 1);
22 $this->assertEquals('foo', $node->getAttribute('name'));
27 $node = new NameExpression('foo', 1);
42 [$node, "// line 1\n".$output, $env],
43 [$node, $this->getVariableGetter('foo', 1), $env1],
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGPX.php154 * @param DOMElement $node
157 protected function parsePoint($node) argument
159 $lat = $node->attributes->getNamedItem("lat")->nodeValue;
160 $lon = $node->attributes->getNamedItem("lon")->nodeValue;
162 $ele = $node->getElementsByTagName('ele');
167 $point->setData($this->parseNodeProperties($node, $this->gpxTypes->get($node->nodeName . 'Type')));
168 if ($node->nodeName === 'rtept' && $this->parseGarminRpt) {
169 foreach ($this->xpath->query('.//gpx:extensions/gpxx:RoutePointExtension/gpxx:rpt', $node) as $element) {
261 * @param \DOMNode $node
265 parseNodeProperties($node, $tagList = null) global() argument
[all...]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/scripts/
H A Dbuild-phar.php97 * @param object $node The node to add.
102 function buildFromNode(&$phar, $node, $prefix='') argument
104 $nodeName = $node->nodeName;
110 $path = $prefix.$node->getAttribute('name');
111 if ($node->getAttribute('role') === 'php' || $node->getAttribute('role') === 'data') {
120 $children = $node->childNodes;
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DGatherFootnotesListener.php36 foreach ($document->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
37 if (! $node instanceof Footnote) {
42 $ref = $document->getReferenceMap()->get($node->getReference()->getLabel());
45 $footnotes[(int) $ref->getTitle()] = $node;
48 $footnotes[\PHP_INT_MAX] = $node;
51 $key = '#' . $this->config->get('footnote/footnote_id_prefix') . $node->getReference()->getDestination();
53 $this->createBackrefs($node, $document->data->get($key));
81 * @param Footnote $node The target footnote
84 private function createBackrefs(Footnote $node, array $backrefs): void
87 $target = $node
[all...]
/plugin/graphgear/
H A Dsyntax.php158 $node = array(
166 $node['link'] = $opts['url'];
168 $node['link'] = wl($opts['url']);
172 $node['image'] = ml($opts['image'],array('w'=>40,'h'=>40),true,'&');
174 …ond|trapezium|parallelogram|Msquare|box3d|component)$/',$opts['shape'])) $node['type'] = 'SquareNo…
176 $xml .= ' <node '.html_attbuild($node)." />\n";
198 list($node,$opts) = explode('[',$line,2);
203 $node = trim($node);
205 if($node) $this->nodes[$node] = $opts;
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php152 if ($node instanceof IOutbox) {
183 if (!$node instanceof IOutbox)
201 * @param INode $node
300 $node
414 if (!$node instanceof ICalendarObject || $node instanceof ISchedulingObject) {
423 $node->getOwner()
581 * @param INode $node
587 if ($node instanceof IOutbox) {
612 if ($node instanceof IInbox) {
945 if (!$node instanceof ICalendar) {
[all …]

12345678910>>...29