Home
last modified time | relevance | path

Searched refs:node (Results 226 – 250 of 709) sorted by relevance

12345678910>>...29

/plugin/sequencediagram/bower_components/lodash/lib/main/
H A Dbuild-site.js101 let node = this.prev;
102 while ((node = node.prev) && node.name != 'h3' && node.name != 'p') {
103 $p.prepend(node.next);
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_quick_info.js354 gantt._qi_button_click = function(node){ argument
356 if (!node || node == box) return;
358 var mask = node.className;
363 gantt._qi_button_click(node.parentNode);
376 var node = domEv;
378 if (this.utils.dom.isChildOf(node, viewport)) {
379 while (node && node !== viewport){
380 left += node.offsetLeft;
381 node = node.offsetParent;
387 if(node){
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DAnonymousFootnotesListener.php34 foreach ($document->iterator() as $node) {
35 if (! $node instanceof FootnoteRef || ($text = $node->getContent()) === null) {
40 $existingReference = $node->getReference();
/plugin/combo/ComboStrap/
H A DPageSqlTreeListener.php106 * Leaf node
107 * @param TerminalNode $node
109 public function visitTerminal(TerminalNode $node): void argument
112 $type = $node->getSymbol()->getType();
113 $text = $node->getText();
122 $parent = $node->getParent();
285 function visitErrorNode(ErrorNode $node): void argument
287 $charPosition = $node->getSymbol()->getStartIndex();
288 $textMakingTheError = $node->getText(); // $this->lexer->getText();
304 * On each node, enterRul
465 getTokenName(TerminalNode $node) global() argument
[all...]
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DOpenBracketParser.php
H A DBangParser.php
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/TokenParser/
H A DTrans.php74 foreach ($body as $i => $node) {
76 $node instanceof Twig_Node_Text
78 … ($node instanceof Twig_Node_Print && $node->getNode('expr') instanceof Twig_Node_Expression_Name)
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DIterator.php29 * @param Directory $node
31 public function __construct(Directory $node) argument
33 $this->nodes = $node->getChildNodes();
/plugin/webdav/core/Plugin/
H A DDokuWiki.php50 * @param INode $node
53 public function propFind(PropFind $propFind, INode $node) argument
55 if (!isset($node->info)) {
59 $info = $node->info;
/plugin/findologicxmlexport/vendor/hoa/protocol/Node/
H A DNode.php111 public function offsetSet($name, $node) argument
113 if (!($node instanceof self)) {
122 $name = $node->getName();
132 $this->_children[$name] = $node;
394 foreach ($this as $node) {
396 $out .= $node;
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkProcessor.php61 foreach ($e->getDocument()->iterator(NodeIterator::FLAG_BLOCKS_ONLY) as $node) {
62 if ($node instanceof Heading && $node->getLevel() >= $min && $node->getLevel() <= $max) {
63 $this->addHeadingLink($node, $slugLength, $idPrefix, $applyToHeading, $headingClass);
72 'node' => $heading,
115 getChildText(Node $node) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DAbstractBlock.php
/plugin/bugzillaint/helper/
H A Dbugzillaclient.php419 private function xmlrpc_decode_node($node) { argument
420 if ( $node->getName() == 'int' ) {
421 return (int) $node->__toString();
423 else if ( $node->getName() == 'string' ) {
424 return $node->__toString();
426 else if ( $node->getName() == 'array' ) {
428 foreach ( $node->data->value as $i ) {
433 else if ( $node->getName() == 'struct' ) {
435 foreach ( $node->member as $i ) {
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckenterkey.js368 var node = oRange._Range.startContainer ;
369 while ( node )
371 if ( node.nodeType == 1 )
373 var tagName = node.tagName.toLowerCase() ;
379 node = node.parentNode ;
588 FCKEnterKey.prototype._CheckIsAllContentsIncluded = function( range, node ) argument
599 if ( range.StartContainer == node || range.StartContainer == node.firstChild )
602 if ( range.EndContainer == node || range.EndContainer == node.lastChild )
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DPlugin.php269 $node = $this->server->tree->getNodeForPath($path);
270 if ($node instanceof DAV\ICollection) {
338 $properties = $this->server->getPropertiesByNode($propFind, $node);
357 $this->server->emit('onHTMLActionsPanel', [$node, &$output]);
498 function htmlActionsPanel(DAV\INode $node, &$output) { argument
500 if (!$node instanceof DAV\ICollection)
505 if (get_class($node) === 'Sabre\\DAV\\SimpleCollection')
625 * @param INode $node
628 private function mapResourceType(array $resourceTypes, $node) { argument
631 if ($node instanceof DAV\IFile) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/
H A DDoubler.php134 $node = $this->mirror->reflect($class, $interfaces);
137 if ($patch->supports($node)) {
138 $patch->apply($node);
142 $this->creator->create($name, $node);
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNodeWalker.php40 * Returns an event which contains node and entering flag
73 * Resets the iterator to resume at the specified node
75 public function resumeAt(Node $node, bool $entering = true): void
77 $this->current = $node;
84 resumeAt(Node $node, bool $entering = true) global() argument
/plugin/elasticsearch/vendor/ruflin/elastica/src/Node/
H A DStats.php13 * Elastica cluster node object.
43 * Create new stats for node.
45 * @param BaseNode $node Elastica node object
47 public function __construct(BaseNode $node)
49 $this->_node = $node;
54 * Returns all node stats as array based on the arguments.
87 * Returns node object.
44 __construct(BaseNode $node) global() argument
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DParserTraceListener.php33 public function visitTerminal(TerminalNode $node) : void argument
37 $node->getSymbol(),
54 public function visitErrorNode(ErrorNode $node) : void argument
/plugin/diagramsnet/lib/js/grapheditor/
H A DEditor.js459 var grid = node.getAttribute('grid');
493 var pv = node.getAttribute('page');
521 var bg = node.getAttribute('background');
538 if (node != null)
542 if (node.nodeName == 'mxGraphModel')
550 this.readGraphState(node);
561 else if (node.nodeName == 'root')
567 wrapper.appendChild(node);
577 node: node,
596 var node = null;
[all …]
/plugin/metaeditor/
H A Dstyle.css14 .jstree-node,
23 .jstree-node {
88 .jstree-rtl .jstree-node {
292 .jstree-default .jstree-node,
379 .jstree-default .jstree-node {
405 .jstree-default .jstree-node,
409 .jstree-default .jstree-node {
543 .jstree-default-small .jstree-node {
569 .jstree-default-small .jstree-node,
573 .jstree-default-small .jstree-node {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DFromTokenParser.php52 …$node = new ImportNode($macro, new AssignNameExpression($this->parser->getVarName(), $token->getLi…
59 … $this->parser->addImportedSymbol('function', $alias, 'get'.$name, $node->getNode('var'));
62 return $node;
/plugin/advrack/
H A Draphael.js3179 var node = dragi.el.node,
5903 node = o.node,
6065 var node = o.node,
6330 node = el.node,
6379 this[0] = this.node = node;
6868 var node = element.node || element[element.length - 1].node;
6888 var node = element.node || element[0].node;
6889 node.parentNode.insertBefore(this.node, node);
7284 var node = o.node,
7564 this[0] = this.node = node;
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Ddom.activelink.inc.php91 $node =& new ActiveLinkDOMTree($children[0], 0, $indices, $parents);
92 return $node;
121 …$node =& new ActiveLinkDOMTree($nodes[$this->index+1], $this->index+1, $this->parent_indices, $thi…
122 return $node;
/plugin/callflow/
H A Draphael.js3179 var node = dragi.el.node,
5904 node = o.node,
6066 var node = o.node,
6324 node = el.node,
6373 this[0] = this.node = node;
6862 var node = element.node || element[element.length - 1].node;
6882 var node = element.node || element[0].node;
6883 node.parentNode.insertBefore(this.node, node);
7278 var node = o.node,
7558 this[0] = this.node = node;
[all …]

12345678910>>...29