Home
last modified time | relevance | path

Searched refs:node (Results 251 – 275 of 709) sorted by relevance

1...<<11121314151617181920>>...29

/plugin/jplayer/vendor/happyworm/jplayer/lib/
H A Dpopcorn.player.js347 var node = typeof target === "string" ? Popcorn.dom.find( target ) : target,
354 if ( !node ) {
370 media = mediaWrapper( node );
384 if ( Popcorn.player.registry[ key ].canPlayType( node.nodeName, srci ) ) {
386 return Popcorn[ key ]( node, srci, options );
411 node.appendChild( videoElement );
422 node.appendChild( videoHTMLContainer );
433 node.addEventListener( "error", options.events.error, false );
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DClusterNamespace.asciidoc89 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
90 $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false)
104 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
105 $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false)
119 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
137 $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false)
138 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
158 $params['local'] = (boolean) Return local information, do not retrieve the state from master node (default: false)
203 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
234 $params['master_timeout'] = (time) Explicit operation timeout for connection to master node
[all...]
/plugin/chordsheets/
H A Dscript.js173 var node = document.createElement("div");
174 node.innerHTML = parseSong(song.rawText, song.dataset.transpose, false);
175 song.appendChild(node);
177 range.selectNode(node);
180 song.removeChild(node);
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNode.php67 protected function setParent(?Node $node = null): void
69 $this->parent = $node; argument
70 $this->depth = $node === null ? 0 : $node->depth + 1;
74 * Inserts the $sibling node after $this
95 * Inserts the $sibling node before $this
196 * Detaches all child nodes of given node
208 * Replace all children of given node with collection of another
236 * Clone the current node and its children
238 * WARNING: This is a recursive function and should not be called on deeply-nested node tree
[all...]
/plugin/codeprettify/code-prettify/src/
H A Dnode_prettify.js561 function extractSourceSpans(node, isPreformatted) { argument
569 function walk(node) { argument
570 var type = node.nodeType;
572 if (nocode.test(node.className)) { return; }
573 for (var child = node.firstChild; child; child = child.nextSibling) {
576 var nodeName = node.nodeName.toLowerCase();
580 spans[(k++ << 1) | 1] = node;
583 var text = node.nodeValue;
594 spans[(k++ << 1) | 1] = node;
599 walk(node);
H A Dprettify.js609 function extractSourceSpans(node, isPreformatted) { argument
617 function walk(node) { argument
618 var type = node.nodeType;
620 if (nocode.test(node.className)) { return; }
621 for (var child = node.firstChild; child; child = child.nextSibling) {
624 var nodeName = node.nodeName.toLowerCase();
628 spans[(k++ << 1) | 1] = node;
631 var text = node.nodeValue;
642 spans[(k++ << 1) | 1] = node;
647 walk(node);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/
H A DBlockReferenceTest.php19 $node = new BlockReferenceNode('foo', 1);
21 $this->assertEquals('foo', $node->getAttribute('name'));
H A DTextTest.php19 $node = new TextNode('foo', 1);
21 $this->assertEquals('foo', $node->getAttribute('data'));
H A DPrintTest.php21 $node = new PrintNode($expr, 1);
23 $this->assertEquals($expr, $node->getNode('expr'));
/plugin/findologicxmlexport/vendor/twig/twig/src/NodeVisitor/
H A DNodeVisitorInterface.php28 public function enterNode(\Twig_NodeInterface $node, Environment $env); argument
35 public function leaveNode(\Twig_NodeInterface $node, Environment $env); argument
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DOSM.php76 foreach ($this->xmlObj->getElementsByTagName('node') as $node) {
77 /** @var \DOMElement $node */
78 $lat = $node->attributes->getNamedItem('lat')->nodeValue;
79 $lon = $node->attributes->getNamedItem('lon')->nodeValue;
80 $id = intval($node->attributes->getNamedItem('id')->nodeValue);
82 foreach ($node->getElementsByTagName('tag') as $tag) {
105 foreach ($way->getElementsByTagName('nd') as $node) {
106 $ref = intval($node->attributes->getNamedItem('ref')->nodeValue);
157 if ($memberType === 'node'
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
H A DParentTest.php19 $node = new ParentExpression('foo', 1);
21 $this->assertEquals('foo', $node->getAttribute('name'));
/plugin/jorgchart/
H A Dstyle.css31 /* node cell */
39 /* The node */
40 .jOrgChart .node {
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Tree/
H A DParseTreeListener.php11 public function visitTerminal(TerminalNode $node) : void; argument
13 public function visitErrorNode(ErrorNode $node) : void; argument
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerRangeTest.php152 $node = $this->server->tree->getNodeForPath('test.txt');
158 'HTTP_IF_RANGE' => $node->getETag(),
187 $node = $this->server->tree->getNodeForPath('test.txt');
193 'HTTP_IF_RANGE' => $node->getETag() . 'blabla',
221 $node = $this->server->tree->getNodeForPath('test.txt');
256 $node = $this->server->tree->getNodeForPath('test.txt');
/plugin/wysiwyg/fckeditor/editor/plugins/dragresizetable/
H A Dfckplugin.js290 var node = evt.srcElement || evt.target ;
293 if ( ! node || node.nodeType != 1 )
310 if ( node.ownerDocument == document )
340 var tagName = node.tagName.toLowerCase() ;
348 node = FCKTools.GetElementAscensor( node, "table" ) ;
349 var tableMap = FCKTableHandler._CreateTableMap( node ) ;
350 …var cellTuple = this._GetBorderCells( FCK.EditorWindow, node, tableMap, { "x" : mouseX, "y" : mous…
373 var node = evt.srcElement || evt.target ;
374 if ( node.ownerDocument == FCK.EditorDocument )
/plugin/fckg/fckeditor/editor/plugins/dragresizetable/
H A Dfckplugin.js290 var node = evt.srcElement || evt.target ;
293 if ( ! node || node.nodeType != 1 )
310 if ( FCKTools.GetElementDocument( node ) == document )
340 var tagName = node.tagName.toLowerCase() ;
348 node = FCKTools.GetElementAscensor( node, "table" ) ;
349 var tableMap = FCKTableHandler._CreateTableMap( node ) ;
350 …var cellTuple = this._GetBorderCells( FCK.EditorWindow, node, tableMap, { "x" : mouseX, "y" : mous…
373 var node = evt.srcElement || evt.target ;
374 if ( FCKTools.GetElementDocument( node ) == FCK.EditorDocument )
/plugin/webdav/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, $path]);
505 function htmlActionsPanel(DAV\INode $node, &$output, $path) { argument
507 if (!$node instanceof DAV\ICollection)
512 if (get_class($node) === 'Sabre\\DAV\\SimpleCollection')
633 private function mapResourceType(array $resourceTypes, $node) { argument
636 if ($node instanceof DAV\IFile) {
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/Unary/
H A DAbstractUnary.php20 public function __construct(\Twig_NodeInterface $node, $lineno) argument
22 parent::__construct(['node' => $node], [], $lineno);
/plugin/commonmark/vendor/league/commonmark/src/Delimiter/
H A DDelimiter.php53 public function __construct(string $char, int $numDelims, AbstractStringContainer $node, bool $canOpen, bool $canClose, ?int $index = null)
58 $this->inlineNode = $node;
59 __construct(string $char, int $numDelims, AbstractStringContainer $node, bool $canOpen, bool $canClose, int $index = null) global() argument
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/asp/
H A Dcommands.asp30 ' Open the "Folders" node.
49 ' Close the "Folders" node.
69 ' Open the "Folders" node.
76 ' Close the "Folders" node.
79 ' Open the "Files" node.
90 ' Close the "Files" node.
132 ' Create the "Error" node.
/plugin/sequencediagram/bower_components/lodash/
H A D.travis.yml18 - BIN=node ISTANBUL=false OPTION=""
82 node ./test/remove.js $PTRN ./lodash.js
109 node ./node_modules/lodash-cli/bin/lodash -o ./dist/lodash.js
110 node ./node_modules/lodash-cli/bin/lodash modularize exports=node -o ./
111 node ./node_modules/lodash-cli/bin/lodash -d -o ./lodash.js
124 node ./node_modules/lodash-cli/bin/lodash core -o ./dist/lodash.core.js
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Slack/
H A DSlackRecord.php371 $node = &$record;
374 if (!isset($node[$key])) {
378 unset($node[$key]);
381 $node = &$node[$key];
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DQuoteParser.php61 $node = new Quote($normalizedCharacter, ['delim' => true]);
62 $inlineContext->getContainer()->appendChild($node);
65 $inlineContext->getDelimiterStack()->push(new Delimiter($normalizedCharacter, 1, $node, $canOpen, $canClose));
/plugin/diagrams/script/
H A Dmediafile-linkfix.js23 nodes.forEach(node => {
24 jQuery(node).find('object.diagrams-svg').each(function () {

1...<<11121314151617181920>>...29