Home
last modified time | relevance | path

Searched refs:MoveToFollowing (Results 1 – 25 of 32) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.SqlXml/System/Xml/Xsl/Runtime/
H A DXmlNavigatorFilter.cs50 public abstract bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navigatorEnd); in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavigatorFilter
112 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) { in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavNameFilter
113 return navigator.MoveToFollowing(this.localName, this.namespaceUri, navEnd); in MoveToFollowing()
192 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) { in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavTypeFilter
193 return navigator.MoveToFollowing(this.nodeType, navEnd); in MoveToFollowing()
255 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) { in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavAttrFilter
256 return navigator.MoveToFollowing(XPathNodeType.All, navEnd); in MoveToFollowing()
318 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) { in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavNeverFilter
319 return navigator.MoveToFollowing(XPathNodeType.All, navEnd); in MoveToFollowing()
H A DTreeIterators.cs53 return (this.filter.MoveToFollowing(this.navCurrent, this.navEnd)); in MoveNext()
119 if (this.filter.MoveToFollowing(this.navCurrent, this.navEnd)) in MoveNext()
305 return this.filter.MoveToFollowing(this.navCurrent, null); in MoveNext()
327 if (!filter.MoveToFollowing(nav, null)) { in MoveFirst()
340 if (!filter.MoveToFollowing(nav, null)) { in MoveFirst()
434 if (!this.filter.MoveToFollowing(this.navCurrent, null)) in MoveNext()
511 while (filter.MoveToFollowing(this.navCurrent, context)) in Create()
606 if (this.filter.MoveToFollowing(this.navCurrent, this.navStack.Peek())) in MoveNext()
719 if (this.filter.MoveToFollowing(this.navCurrent, this.navStack.Peek())) in MoveNext()
826 if (!this.filter.MoveToFollowing(this.navCurrent, this.navEnd)) { in MoveNext()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/Runtime/
H A DXmlNavigatorFilter.cs49 public abstract bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navigatorEnd); in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavigatorFilter
118 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavNameFilter
120 return navigator.MoveToFollowing(_localName, _namespaceUri, navEnd); in MoveToFollowing()
208 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavTypeFilter
210 return navigator.MoveToFollowing(_nodeType, navEnd); in MoveToFollowing()
280 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavAttrFilter
282 return navigator.MoveToFollowing(XPathNodeType.All, navEnd); in MoveToFollowing()
352 public override bool MoveToFollowing(XPathNavigator navigator, XPathNavigator navEnd) in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavNeverFilter
354 return navigator.MoveToFollowing(XPathNodeType.All, navEnd); in MoveToFollowing()
H A DTreeIterators.cs56 return (_filter.MoveToFollowing(_navCurrent, _navEnd)); in MoveNext()
128 if (_filter.MoveToFollowing(_navCurrent, _navEnd)) in MoveNext()
334 return _filter.MoveToFollowing(_navCurrent, null); in MoveNext()
360 if (!filter.MoveToFollowing(nav, null)) in MoveFirst()
376 if (!filter.MoveToFollowing(nav, null)) in MoveFirst()
478 if (!_filter.MoveToFollowing(_navCurrent, null)) in MoveNext()
562 while (filter.MoveToFollowing(_navCurrent, context)) in Create()
668 if (_filter.MoveToFollowing(_navCurrent, _navStack.Peek())) in MoveNext()
794 if (_filter.MoveToFollowing(_navCurrent, _navStack.Peek())) in MoveNext()
912 if (!_filter.MoveToFollowing(_navCurrent, _navEnd)) in MoveNext()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml.Linq/tests/XPath/XDocument/
H A DNavigatorComparer.cs543 public override bool MoveToFollowing(string a, string b) in MoveToFollowing() method in System.Xml.XPath.XDocument.Tests.XDocument.NavigatorComparer
545 var r1 = _nav1.MoveToFollowing(a, b); in MoveToFollowing()
546 var r2 = _nav2.MoveToFollowing(a, b); in MoveToFollowing()
552 public override bool MoveToFollowing(string a, string b, XPathNavigator c) in MoveToFollowing() method in System.Xml.XPath.XDocument.Tests.XDocument.NavigatorComparer
557 public override bool MoveToFollowing(XPathNodeType value) in MoveToFollowing() method in System.Xml.XPath.XDocument.Tests.XDocument.NavigatorComparer
559 var r1 = _nav1.MoveToFollowing(value); in MoveToFollowing()
560 var r2 = _nav2.MoveToFollowing(value); in MoveToFollowing()
566 public override bool MoveToFollowing(XPathNodeType a, XPathNavigator b) in MoveToFollowing() method in System.Xml.XPath.XDocument.Tests.XDocument.NavigatorComparer
568 var r1 = _nav1.MoveToFollowing(a, b); in MoveToFollowing()
569 var r2 = _nav2.MoveToFollowing(a, b); in MoveToFollowing()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.XML/Test/System.Xml.XPath/
H A DXPathEditableNavigatorTests.cs706 public void MoveToFollowing () in MoveToFollowing() method in MonoTests.System.Xml.XPath.XPathEditableNavigatorTests
711 Assert.IsTrue (nav.MoveToFollowing ("foo", String.Empty), "#1"); in MoveToFollowing()
713 Assert.IsTrue (nav.MoveToFollowing ("foo", String.Empty), "#3"); in MoveToFollowing()
715 Assert.IsTrue (nav.MoveToFollowing ("foo", String.Empty), "#5"); in MoveToFollowing()
722 Assert.IsTrue (nav.MoveToFollowing ("foo", String.Empty, end), "#7"); in MoveToFollowing()
724 Assert.IsTrue (nav.MoveToFollowing ("foo", String.Empty, end), "#9"); in MoveToFollowing()
727 Assert.IsFalse (nav.MoveToFollowing ("foo", String.Empty, end), "#11"); in MoveToFollowing()
739 Assert.IsTrue (nav.MoveToFollowing ("foo", String.Empty)); in MoveToFollowingFromAttribute()
H A DXPathNavigatorTests.cs663 Assert.IsTrue (nav.MoveToFollowing (XPathNodeType.All), "#1"); in MoveToFollowingNodeTypeAll()
664 Assert.IsTrue (nav.MoveToFollowing (XPathNodeType.All), "#2"); in MoveToFollowingNodeTypeAll()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Cache/
H A DXPathDocumentIterator.cs203 if (!this.ctxt.MoveToFollowing(this.localName, this.namespaceUri, this.end)) in MoveNext()
263 if (!this.ctxt.MoveToFollowing(this.typ, this.end)) in MoveNext()
H A DXPathDocumentNavigator.cs546 … public override bool MoveToFollowing(string localName, string namespaceURI, XPathNavigator end) { in MoveToFollowing() method in MS.Internal.Xml.Cache.XPathDocumentNavigator
578 public override bool MoveToFollowing(XPathNodeType type, XPathNavigator end) { in MoveToFollowing() method in MS.Internal.Xml.Cache.XPathDocumentNavigator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Cache/
H A DXPathDocumentIterator.cs226 if (!this.ctxt.MoveToFollowing(_localName, _namespaceUri, _end)) in MoveNext()
294 if (!this.ctxt.MoveToFollowing(_typ, _end)) in MoveNext()
H A DXPathDocumentNavigator.cs599 … public override bool MoveToFollowing(string localName, string namespaceURI, XPathNavigator end) in MoveToFollowing() method in MS.Internal.Xml.Cache.XPathDocumentNavigator
633 public override bool MoveToFollowing(XPathNodeType type, XPathNavigator end) in MoveToFollowing() method in MS.Internal.Xml.Cache.XPathDocumentNavigator
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/XPath/
H A DXPathNavigator.cs657 public virtual bool MoveToFollowing(string localName, string namespaceURI) { in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
658 return MoveToFollowing(localName, namespaceURI, null); in MoveToFollowing()
661 … public virtual bool MoveToFollowing(string localName, string namespaceURI, XPathNavigator end) { in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
714 public virtual bool MoveToFollowing(XPathNodeType type) { in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
715 return MoveToFollowing(type, null); in MoveToFollowing()
718 public virtual bool MoveToFollowing(XPathNodeType type, XPathNavigator end) { in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/XPath/
H A DXPathNavigator.cs777 public virtual bool MoveToFollowing(string localName, string namespaceURI) in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
779 return MoveToFollowing(localName, namespaceURI, null); in MoveToFollowing()
782 … public virtual bool MoveToFollowing(string localName, string namespaceURI, XPathNavigator end) in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
843 public virtual bool MoveToFollowing(XPathNodeType type) in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
845 return MoveToFollowing(type, null); in MoveToFollowing()
848 public virtual bool MoveToFollowing(XPathNodeType type, XPathNavigator end) in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Xml.Linq/Test/System.Xml.XPath/
H A DExtensionsTest2.cs640 Assert.IsTrue (nav.MoveToFollowing (XPathNodeType.All), "#1"); in MoveToFollowingNodeTypeAll()
641 Assert.IsTrue (nav.MoveToFollowing (XPathNodeType.All), "#2"); in MoveToFollowingNodeTypeAll()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Dom/
H A DDocumentXPathNavigator.cs796 … public override bool MoveToFollowing(string localName, string namespaceUri, XPathNavigator end) { in MoveToFollowing() method in System.Xml.DocumentXPathNavigator
856 public override bool MoveToFollowing(XPathNodeType type, XPathNavigator end) { in MoveToFollowing() method in System.Xml.DocumentXPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Dom/
H A DDocumentXPathNavigator.cs971 … public override bool MoveToFollowing(string localName, string namespaceUri, XPathNavigator end) in MoveToFollowing() method in System.Xml.DocumentXPathNavigator
1047 public override bool MoveToFollowing(XPathNodeType type, XPathNavigator end) in MoveToFollowing() method in System.Xml.DocumentXPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Xml.ReaderWriter/ref/
H A DSystem.Xml.ReaderWriter.cs2655 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
2656 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
2657 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
2658 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.Xml.cs3514 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3515 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3516 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3517 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/
H A DSystem.Xml.cs3563 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3564 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3565 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3566 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/
H A DSystem.Xml.cs3588 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3589 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3590 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3591 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.Xml.cs3514 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3515 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3516 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3517 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.Xml.cs3514 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3515 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3516 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3517 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.Xml.cs3514 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3515 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3516 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3517 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.Xml.cs3626 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3627 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3628 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3629 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
4160 …public abstract bool MoveToFollowing(System.Xml.XPath.XPathNavigator navigator, System.Xml.XPath.X… in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavigatorFilter
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DSystem.Xml.cs3626 public virtual bool MoveToFollowing(string localName, string namespaceURI) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3627 …public virtual bool MoveToFollowing(string localName, string namespaceURI, System.Xml.XPath.XPathN… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3628 public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type) { throw null; } in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
3629 …public virtual bool MoveToFollowing(System.Xml.XPath.XPathNodeType type, System.Xml.XPath.XPathNav… in MoveToFollowing() method in System.Xml.XPath.XPathNavigator
4160 …public abstract bool MoveToFollowing(System.Xml.XPath.XPathNavigator navigator, System.Xml.XPath.X… in MoveToFollowing() method in System.Xml.Xsl.Runtime.XmlNavigatorFilter

12