Home
last modified time | relevance | path

Searched refs:tagList (Results 1 – 8 of 8) sorted by last modified time

/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DGPX.php262 * @param string[]|null $tagList
265 protected static function parseNodeProperties($node, $tagList = null) argument
274 if ($tagList === null || in_array($childNode->nodeName, $tagList ?: [])) {
281 } elseif ($childNode->nodeType === 1 && in_array($childNode->nodeName, $tagList ?: [])) {
462 * @param string[] $tagList Allowed tags
466 protected static function processGeometryData($geometry, $tagList, $indent = "\t") argument
470 foreach ($tagList as $tagName) {
/plugin/diagramsnet/lib/js/grapheditor/
H A DSidebar.js631 var tagList = [];
640 tagList.push(tmp[i]);
651 tagList.push(normalized);
656 for (var i = 0; i < tagList.length; i++)
658 this.addEntryForTag(tagList[i], fn);
/plugin/diagramsnet/lib/js/diagramly/
H A DEditor.js7224 if (tagList != null)
7231 for (var i = 0; i < tagList.length; i++)
7233 if (tagList[i].length > 0)
7235 lookup[tagList[i]] = true;
7252 if (tmp.length >= tagList.length)
7370 if (cells.length > 0 && tagList.length > 0)
7382 for (var j = 0; j < tagList.length; j++)
7384 var tag = mxUtils.trim(tagList[j]);
7411 if (cells.length > 0 && tagList.length > 0)
7426 for (var j = 0; j < tagList.length; j++)
[all …]
/plugin/diagramsnet/lib/plugins/
H A Dtags.js87 function getLookup(tagList) argument
91 for (var i = 0; i < tagList.length; i++)
93 lookup[tagList[i].toLowerCase()] = true;
/plugin/tagsections/syntax/
H A Dtag.php73 $tagList = implode('', array_map(array($this, '__tagList'), $data));
81 …oc = str_replace($matches[0], "<h{$matches[1]}{$matches[2]}{$matches[3]}$tagList{$matches[4]}{$mat…
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DMagicCallPatch.php63 $tagList = $this->tagRetriever->getTagList($reflectionClass);
65 foreach ($tagList as $tag) {
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/PhpDocumentor/
H A DClassAndInterfaceTagRetriever.php61 $tagList = array();
64 $tagList = array_merge($tagList, $this->classRetriever->getTagList($interface));
67 return $tagList;
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckdomtools.js343 GetCommonParentNode : function( node1, node2, tagList ) argument
346 if ( ! tagList.pop )
347 tagList = [ tagList ] ;
348 while ( tagList.length > 0 )
349 tagMap[tagList.pop().toLowerCase()] = 1 ;