Home
last modified time | relevance | path

Searched refs:nodeIterator (Results 1 – 25 of 148) sorted by relevance

123456

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/XPath/Internal/
H A DStringFunctions.cs76 private string toString(XPathNodeIterator nodeIterator) in toString() argument
80 object argVal = _argList[0].Evaluate(nodeIterator); in toString()
98 return nodeIterator.Current.Value; in toString()
120 private string Concat(XPathNodeIterator nodeIterator) in Concat() argument
131 private bool StartsWith(XPathNodeIterator nodeIterator) in StartsWith() argument
140 private bool Contains(XPathNodeIterator nodeIterator) in Contains() argument
165 private string Substring(XPathNodeIterator nodeIterator) in Substring() argument
211 return nodeIterator.Current.Value.Length; in StringLength()
214 private string Normalize(XPathNodeIterator nodeIterator) in Normalize() argument
223 value = nodeIterator.Current.Value; in Normalize()
[all …]
H A DNumberFunctions.cs50 case FT.FuncNumber: return Number(nodeIterator); in Evaluate()
51 case FT.FuncSum: return Sum(nodeIterator); in Evaluate()
52 case FT.FuncFloor: return Floor(nodeIterator); in Evaluate()
54 case FT.FuncRound: return Round(nodeIterator); in Evaluate()
59 private double Number(XPathNodeIterator nodeIterator) in Number() argument
65 object argVal = _arg.Evaluate(nodeIterator); in Number()
87 private double Sum(XPathNodeIterator nodeIterator) in Sum() argument
90 _arg.Evaluate(nodeIterator); in Sum()
99 private double Floor(XPathNodeIterator nodeIterator) in Floor() argument
104 private double Ceiling(XPathNodeIterator nodeIterator) in Ceiling() argument
[all …]
H A DBooleanFunctions.cs38 public override object Evaluate(XPathNodeIterator nodeIterator) in Evaluate() argument
42 case FT.FuncBoolean: return toBoolean(nodeIterator); in Evaluate()
43 case FT.FuncNot: return Not(nodeIterator); in Evaluate()
46 case FT.FuncLang: return Lang(nodeIterator); in Evaluate()
60 internal bool toBoolean(XPathNodeIterator nodeIterator) in toBoolean() argument
62 object result = _arg.Evaluate(nodeIterator); in toBoolean()
77 private bool Not(XPathNodeIterator nodeIterator) in Not() argument
79 return !(bool)_arg.Evaluate(nodeIterator); in Not()
82 private bool Lang(XPathNodeIterator nodeIterator) in Lang() argument
84 string str = _arg.Evaluate(nodeIterator).ToString(); in Lang()
[all …]
H A DFunctionQuery.cs63 public override object Evaluate(XPathNodeIterator nodeIterator) in Evaluate() argument
74 argVals[i] = _args[i].Evaluate(nodeIterator); in Evaluate()
77 argVals[i] = new XPathSelectionIterator(nodeIterator.Current, _args[i]); in Evaluate()
82 return ProcessResult(_function.Invoke(xsltContext, argVals, nodeIterator.Current)); in Evaluate()
H A DXPathArrayIterator.cs31 public XPathArrayIterator(XPathNodeIterator nodeIterator) in XPathArrayIterator() argument
34 while (nodeIterator.MoveNext()) in XPathArrayIterator()
36 this.list.Add(nodeIterator.Current.Clone()); in XPathArrayIterator()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/XPath/Internal/
H A DStringFunctions.cs67 private string toString(XPathNodeIterator nodeIterator) { in toString() argument
69 object argVal = argList[0].Evaluate(nodeIterator); in toString()
86 return nodeIterator.Current.Value; in toString()
102 private string Concat(XPathNodeIterator nodeIterator) { in Concat() argument
111 private bool StartsWith(XPathNodeIterator nodeIterator) { in StartsWith() argument
119 private bool Contains(XPathNodeIterator nodeIterator) { in Contains() argument
141 private string Substring(XPathNodeIterator nodeIterator) { in Substring() argument
177 return nodeIterator.Current.Value.Length; in StringLength()
180 private string Normalize(XPathNodeIterator nodeIterator) { in Normalize() argument
185 str1 = nodeIterator.Current.Value; in Normalize()
[all …]
H A DNumberFunctions.cs46 case FT.FuncNumber : return Number (nodeIterator); in Evaluate()
47 case FT.FuncSum : return Sum (nodeIterator); in Evaluate()
48 case FT.FuncFloor : return Floor (nodeIterator); in Evaluate()
49 case FT.FuncCeiling : return Ceiling(nodeIterator); in Evaluate()
50 case FT.FuncRound : return Round (nodeIterator); in Evaluate()
55 private double Number(XPathNodeIterator nodeIterator) { in Number() argument
59 object argVal = arg.Evaluate(nodeIterator); in Number()
79 private double Sum(XPathNodeIterator nodeIterator) { in Sum() argument
81 arg.Evaluate(nodeIterator); in Sum()
89 private double Floor(XPathNodeIterator nodeIterator) { in Floor() argument
[all …]
H A DDescendantQuery.cs15 XPathNodeIterator nodeIterator; field in MS.Internal.Xml.XPath.DescendantQuery
21 this.nodeIterator = Clone(other.nodeIterator); in DescendantQuery()
25 nodeIterator = null; in Reset()
31 if (nodeIterator == null) { in Advance()
39nodeIterator = new IteratorFilter(nav.SelectDescendants(TypeTest, matchSelf), Name); in Advance()
41 nodeIterator = nav.SelectDescendants(Name, Namespace, matchSelf); in Advance()
44 nodeIterator = nav.SelectDescendants(TypeTest, matchSelf); in Advance()
48 if (nodeIterator.MoveNext()) { in Advance()
50 currentNode = nodeIterator.Current; in Advance()
53 nodeIterator = null; in Advance()
H A DBooleanFunctions.cs36 public override object Evaluate(XPathNodeIterator nodeIterator) { in Evaluate() argument
38 case FT.FuncBoolean : return toBoolean(nodeIterator); in Evaluate()
39 case FT.FuncNot : return Not(nodeIterator); in Evaluate()
42 case FT.FuncLang : return Lang(nodeIterator); in Evaluate()
54 internal bool toBoolean(XPathNodeIterator nodeIterator) { in toBoolean() argument
55 object result = arg.Evaluate(nodeIterator); in toBoolean()
66 private bool Not(XPathNodeIterator nodeIterator) { in Not() argument
67 return ! (bool) arg.Evaluate(nodeIterator); in Not()
70 private bool Lang(XPathNodeIterator nodeIterator) { in Lang() argument
71 string str = arg.Evaluate(nodeIterator).ToString(); in Lang()
[all …]
H A DXPathArrayIterator.cs31 public XPathArrayIterator(XPathNodeIterator nodeIterator) { in XPathArrayIterator() argument
33 while (nodeIterator.MoveNext()) { in XPathArrayIterator()
34 this.list.Add(nodeIterator.Current.Clone()); in XPathArrayIterator()
H A DFunctionQuery.cs56 public override object Evaluate(XPathNodeIterator nodeIterator) { in Evaluate() argument
64 argVals[i] = args[i].Evaluate(nodeIterator); in Evaluate()
66 argVals[i] = new XPathSelectionIterator(nodeIterator.Current, args[i]); in Evaluate()
70 return ProcessResult(function.Invoke(xsltContext, argVals, nodeIterator.Current)); in Evaluate()
/dports/graphics/fortytwo/FT-0.2.0/tests/
H A DFTModifyGraphTEST.m46 id <ECIterator> nodeIterator;
88 nodeIterator = [graph nodeIterator];
89 while( [nodeIterator hasNext] ) {
110 while( [nodeIterator hasNext] ) {
133 n3 = [nodeIterator next];
142 while( [nodeIterator hasNext] ) {
151 while( [nodeIterator hasNext] ) {
158 nodeIterator = [graph nodeIterator];
159 while( [nodeIterator hasNext] ) {
178 nodeIterator = [graph nodeIterator];
[all …]
H A DFTGraphInfoDBTEST.m48 id <ECIterator> nodeIterator;
88 nodeIterator = [graph nodeIterator];
90 while( [nodeIterator hasNext] ) {
91 node = [nodeIterator next];
118 nodeIterator = [graph nodeIterator];
119 while( [nodeIterator hasNext] && i > 0) {
120 node = [nodeIterator next];
136 nodeIterator = [graph nodeIterator];
137 while( [nodeIterator hasNext] ) {
138 node = [nodeIterator next];
H A DFTCreateGraphTEST.m47 id <ECIterator> nodeIterator;
106 nodeIterator = [n1 outgoingNodes];
107 ECAssertTrue( [nodeIterator hasNext], @"Unable to read first node of n1!" );
108 n2 = [nodeIterator next];
113 ECAssertTrue( [nodeIterator hasNext], @"Unable to read second node of n1!" );
114 n3 = [nodeIterator next];
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/XPath/
H A DXPathNodeIterator.cs91 private XPathNodeIterator nodeIterator; field
93 public DebuggerDisplayProxy(XPathNodeIterator nodeIterator) { in DebuggerDisplayProxy()
94 this.nodeIterator = nodeIterator; in DebuggerDisplayProxy()
101 sb.Append(nodeIterator.CurrentPosition); in ToString()
103 if (nodeIterator.Current == null) { in ToString()
107 … sb.Append(new XPathNavigator.DebuggerDisplayProxy(nodeIterator.Current).ToString()); in ToString()
/dports/textproc/jaxup/jaxup/src/java/main/org/jaxup/xupdate/
H A DNormalizedTextNodeIterator.java27 private Iterator nodeIterator; field in NormalizedTextNodeIterator
36 public NormalizedTextNodeIterator(Updater updater, Iterator nodeIterator) in NormalizedTextNodeIterator() argument
40 this.nodeIterator = nodeIterator; in NormalizedTextNodeIterator()
65 if (!nodeIterator.hasNext()) in next()
70 Object nextNode = nodeIterator.next(); in next()
137 while (nodeIterator.hasNext()) in slurpText()
139 Object nextNode = nodeIterator.next(); in slurpText()
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/trie/
H A Diterator.go131 type nodeIterator struct { struct
155 return new(nodeIterator)
157 it := &nodeIterator{trie: trie}
166 func (it *nodeIterator) Hash() common.Hash { argument
173 func (it *nodeIterator) Parent() common.Hash { argument
180 func (it *nodeIterator) Leaf() bool { argument
184 func (it *nodeIterator) LeafKey() []byte { argument
193 func (it *nodeIterator) LeafBlob() []byte { argument
223 func (it *nodeIterator) Path() []byte { argument
227 func (it *nodeIterator) Error() error { argument
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Dom/
H A DXPathNodeList.cs16 XPathNodeIterator nodeIterator; field in System.Xml.XPathNodeList
19 public XPathNodeList(XPathNodeIterator nodeIterator) { in XPathNodeList() argument
20 this.nodeIterator = nodeIterator; in XPathNodeList()
44 if (nodeIterator.MoveNext()) { in ReadUntil()
45 XmlNode n = GetNode(nodeIterator.Current); in ReadUntil()
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/status-im/keycard-go/vendor/github.com/ethereum/go-ethereum/trie/
H A Diterator.go115 type nodeIterator struct { struct
137 return new(nodeIterator)
139 it := &nodeIterator{trie: trie}
144 func (it *nodeIterator) Hash() common.Hash { argument
151 func (it *nodeIterator) Parent() common.Hash { argument
158 func (it *nodeIterator) Leaf() bool { argument
162 func (it *nodeIterator) LeafKey() []byte { argument
171 func (it *nodeIterator) LeafBlob() []byte { argument
201 func (it *nodeIterator) Path() []byte { argument
205 func (it *nodeIterator) Error() error { argument
[all …]
/dports/devel/tclxml/tclxml-3.3/tests/tcldom/
H A Diterator.test1 # Commands covered: ::dom::nodeIterator
26 set node [dom::nodeIterator nextNode $iterator]
35 set node [dom::nodeIterator previousNode $iterator]
51 list [catch {dom::nodeIterator} msg] $msg
161 set node [dom::nodeIterator nextNode $iterator]
178 set node [dom::nodeIterator nextNode $iterator]
194 set node [dom::nodeIterator nextNode $iterator]
215 set node [dom::nodeIterator nextNode $iterator]
272 set node [dom::nodeIterator nextNode $iterator]
299 set node [dom::nodeIterator nextNode $iterator]
[all …]
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/tools/PsfPlayer/Source/
H A DPsfFs.h73 for(FileListType::const_iterator nodeIterator(fileList.begin()); in ~DIRECTORY()
74 fileList.end() != nodeIterator; nodeIterator++) in ~DIRECTORY()
76 delete(*nodeIterator); in ~DIRECTORY()
/dports/games/libretro-play/Play--3cd0a367b5e24c061a6310c68c9fa7f6b531ebd4/Source/states/
H A DStructCollectionStateFile.cpp53 for(auto nodeIterator(registerList.begin()); in Read() local
54 nodeIterator != registerList.end(); nodeIterator++) in Read()
58 auto node(*nodeIterator); in Read()
H A DStructFile.cpp24 for(Xml::CNode::NodeIterator nodeIterator(nodeList.begin()); in Read() local
25 nodeIterator != nodeList.end(); nodeIterator++) in Read()
27 Xml::CNode* node = (*nodeIterator); in Read()
/dports/www/jericho-html/jericho-html-3.2/src/java/net/htmlparser/jericho/
H A DTextExtractor.java326 for (NodeIterator nodeIterator=new NodeIterator(segment); nodeIterator.hasNext();) { in toString()
327 Segment segment=nodeIterator.next(); in toString()
336 if (element!=null && element.getEnd()>tag.getEnd()) nodeIterator.skipToPos(element.getEnd()); in toString()
343 nodeIterator.skipToPos(startTag.getElement().getEnd()); in toString()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DDocumentMarkerController.cpp264 … for (MarkerMap::iterator nodeIterator = m_markers.begin(); nodeIterator != end; ++nodeIterator) { in markerContainingPoint() local
266 MarkerList* list = nodeIterator->second; in markerContainingPoint()
335 … for (MarkerMap::iterator nodeIterator = m_markers.begin(); nodeIterator != end; ++nodeIterator) { in renderedRectsForMarkers() local
337 MarkerList* list = nodeIterator->second; in renderedRectsForMarkers()
632 …for (MarkerMap::const_iterator nodeIterator = m_markers.begin(); nodeIterator != end; ++nodeIterat… in showMarkers() local
633 Node* node = nodeIterator->first.get(); in showMarkers()
635 MarkerList* list = nodeIterator->second; in showMarkers()

123456