Home
last modified time | relevance | path

Searched refs:nodeType (Results 1 – 25 of 263) sorted by relevance

1234567891011

/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfckdomtools.js66 if ( eChildNode.nodeType == 3 )
92 if ( eChildNode.nodeType == 3 )
210 if ( currentNode.nodeType == 1 )
249 if ( currentNode.nodeType == 1 )
284 if ( nodeType && node && node.nodeType != nodeType )
305 if ( nodeType && node && node.nodeType != nodeType )
392 && doc.body.firstChild.nodeType == 1
577 candidate.nodeType == 3 &&
612 candidate.nodeType == 3 &&
809 if ( currentNode.nodeType == 1 )
[all …]
H A Dfckselection_gecko.js40 && range.startContainer.nodeType == 1
58 if ( selection && selection.anchorNode && selection.anchorNode.nodeType == 1 )
70 else if ( selectedElement.nodeType != 1 )
135 return ( element.nodeType == 1 ? element : element.parentNode ) ;
173 if ( oContainer.nodeType == 1 && oContainer.tagName == nodeTagName ) return true ;
H A Dfcklisthandler.js60 if ( !eHasLiSibling && eSibling.nodeType == 1 && eSibling.nodeName.toUpperCase() == 'LI' )
66 …if ( !eHasSuccessiveLiSibling && eSibling.nodeType == 1 && eSibling.nodeName.toUpperCase().Equals(…
135 switch ( eChildNode.nodeType )
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckdomrange.js67 else if ( eEndNode.nodeType == 1 )
387 while ( curStart && curStart.nodeType == 3 )
392 while ( curEnd && curEnd.nodeType == 3 )
531 if ( oNode.nodeType != 1 )
552nodeType == 3 && offset >= oNode.nodeValue.length ) || ( oNode.nodeType == 1 && offset >= oNode.ch…
554 if ( oNode.nodeType != 1 )
587 if ( oNode.nodeType == 1 )
599 && ( oNode.nodeType != 1
613 if ( oNode.nodeType == 1 )
619 && ( oNode.nodeType != 1
[all …]
H A Dfckw3crange.js145 this.setEnd( refNode, refNode.nodeType == 3 ? refNode.data.length : refNode.childNodes.length ) ;
154 if ( startContainer.nodeType == 3 )
228 if ( endNode.nodeType == 3 )
250 if ( startNode.nodeType == 3 )
400 if ( startTextNode.nodeType == 3 )
407 if ( endTextNode.nodeType == 3 && endTextNode.nextSibling )
H A Dfckdomrangeiterator.js103 var includeNode = ( currentNode.nodeType != 1 ) ;
148 else if ( currentNode.nodeType == 3 )
288 …if ( previousSibling && previousSibling.nodeType == 1 && previousSibling.nodeName.toLowerCase() ==…
295 if ( lastChild && lastChild.nodeType == 1 && lastChild.nodeName.toLowerCase() == 'br' )
H A Dfckstyle.js348 if ( currentNode.nodeType == 1 )
860 var nodeType = currentNode.nodeType ;
861 var nodeName = nodeType == 1 ? currentNode.nodeName.toLowerCase() : null ;
877 if ( nodeType != 1 || currentNode.childNodes.length == 0 )
980 if ( startSibling.nodeType == 1
992 if ( startSibling.nodeType == 3 && startSibling.length == 0 )
1008 …if ( !element || element.nodeType != 1 || !FCKListsLib.InlineNonEmptyElements[ element.nodeName.to…
1025 …var hasBookmark = ( sibling && sibling.nodeType == 1 && sibling.getAttribute( '_fck_bookmark' ) ) ;
1029 if ( sibling && sibling.nodeType == 1 && sibling.nodeName == element.nodeName )
1063 …var hasBookmark = ( sibling && sibling.nodeType == 1 && sibling.getAttribute( '_fck_bookmark' ) ) ;
[all …]
/plugin/webdav/vendor/sabre/xml/lib/Deserializer/
H A Dfunctions.php75 if (Reader::END_ELEMENT === $reader->nodeType) {
85 if ($reader->nodeType === Reader::ELEMENT) {
97 } while ($reader->nodeType !== Reader::END_ELEMENT);
166 if (Reader::END_ELEMENT === $reader->nodeType) {
176 if ($reader->nodeType !== Reader::ELEMENT) {
217 if ($reader->nodeType === Reader::ELEMENT && $reader->namespaceURI == $namespace) {
234 } while ($reader->nodeType !== Reader::END_ELEMENT);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DNodeGroupNode.php42 public $nodeType; variable in Google\\Service\\Compute\\NodeGroupNode
131 public function setNodeType($nodeType) argument
133 $this->nodeType = $nodeType;
140 return $this->nodeType;
H A DNodeTemplate.php58 public $nodeType; variable in Google\\Service\\Compute\\NodeTemplate
209 public function setNodeType($nodeType) argument
211 $this->nodeType = $nodeType;
218 return $this->nodeType;
/plugin/ckgdoku/ckeditor/plugins/headerbuttons/
H A Dplugin.js99 var nodeType;
101 nodeType = prevNode.$.parentNode.localName;
103 nodeType = prevNode.getName();
104 if (headers.indexOf(nodeType) != -1) {
105 return nodeType;
/plugin/ckgedit/ckeditor/plugins/headerbuttons/
H A Dplugin.js99 var nodeType;
101 nodeType = prevNode.$.parentNode.localName;
103 nodeType = prevNode.getName();
104 if (headers.indexOf(nodeType) != -1) {
105 return nodeType;
/plugin/icalevents/vendor/sabre/xml/lib/Deserializer/
H A Dfunctions.php74 if ($reader->nodeType === Reader::ELEMENT) {
84 } while ($reader->nodeType !== Reader::END_ELEMENT);
153 if ($reader->nodeType !== Reader::ELEMENT) {
194 if ($reader->nodeType === Reader::ELEMENT && $reader->namespaceURI == $namespace) {
209 } while ($reader->nodeType !== Reader::END_ELEMENT);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/Resource/
H A DNodeTypes.php100 * @param string $nodeType Name of the node type to return.
104 public function get($project, $zone, $nodeType, $optParams = []) argument
106 $params = ['project' => $project, 'zone' => $zone, 'nodeType' => $nodeType];
/plugin/davcal/vendor/sabre/xml/lib/
H A DReader.php66 while ($this->nodeType !== self::ELEMENT && @$this->read()) {
133 if ($this->nodeType === self::ELEMENT && $this->isEmptyElement) {
162 switch ($this->nodeType) {
203 … if (in_array($this->nodeType, [XMLReader::TEXT, XMLReader::CDATA, XMLReader::WHITESPACE])) {
/plugin/webdav/vendor/sabre/xml/lib/
H A DReader.php68 while ($this->nodeType !== self::ELEMENT && @$this->read()) {
134 if ($this->nodeType === self::ELEMENT && $this->isEmptyElement) {
172 switch ($this->nodeType) {
217 … if (in_array($this->nodeType, [XMLReader::TEXT, XMLReader::CDATA, XMLReader::WHITESPACE])) {
/plugin/icalevents/vendor/sabre/xml/lib/
H A DReader.php68 while ($this->nodeType !== self::ELEMENT && @$this->read()) {
134 if ($this->nodeType === self::ELEMENT && $this->isEmptyElement) {
172 switch ($this->nodeType) {
217 … if (in_array($this->nodeType, [XMLReader::TEXT, XMLReader::CDATA, XMLReader::WHITESPACE])) {
/plugin/webdav/vendor/sabre/vobject/lib/Parser/XML/Element/
H A DKeyValue.php53 if (SabreXml\Reader::ELEMENT === $reader->nodeType) {
59 } while (SabreXml\Reader::END_ELEMENT !== $reader->nodeType);
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/XML/Element/
H A DKeyValue.php53 if ($reader->nodeType === SabreXml\Reader::ELEMENT) {
62 } while ($reader->nodeType !== SabreXml\Reader::END_ELEMENT);
/plugin/davcal/vendor/sabre/xml/lib/Element/
H A DKeyValue.php114 if ($reader->nodeType === Xml\Reader::ELEMENT) {
123 } while ($reader->nodeType !== Xml\Reader::END_ELEMENT);
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DComplex.php45 if ($reader->nodeType === Reader::ELEMENT && $reader->isEmptyElement) {
60 switch ($reader->nodeType) {
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DComplex.php45 if ($reader->nodeType === Reader::ELEMENT && $reader->isEmptyElement) {
60 switch ($reader->nodeType) {
/plugin/jquery/
H A Dscript.js12nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(…
19nodeType!==1&&T.nodeType!==9){return[]}if(!X||typeof X!=="string"){return aa}var Y=[],V,ae,ah,S,ac…
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DProp.php56 if ($reader->nodeType === Reader::ELEMENT) {
65 } while ($reader->nodeType !== Reader::END_ELEMENT);
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Element/
H A DProp.php56 if ($reader->nodeType === Reader::ELEMENT) {
65 } while ($reader->nodeType !== Reader::END_ELEMENT);

1234567891011