Searched defs:_source (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DAbsoluteIterator.java49 private DTMAxisIterator _source; field in class:AbsoluteIterator
52 _source = source;
58 _source.setRestartable(isRestartable);
64 _source.setStartNode(_startNode);
71 return returnNode(_source.next());
77 clone._source = _source.cloneIterator(); // resets source
90 _source.reset();
95 _source.setMark();
99 _source
[all...]
H A DForwardPositionIterator.java67 private DTMAxisIterator _source; field in class:ForwardPositionIterator
70 _source = source;
77 clone._source = _source.cloneIterator();
89 return returnNode(_source.next());
93 _source.setStartNode(node);
98 _source.reset();
103 _source.setMark();
107 _source.gotoMark();
H A DClonedNodeListIterator.java39 private CachedNodeListIterator _source; field in class:ClonedNodeListIterator
43 _source = source;
48 //_source.setRestartable(isRestartable);
56 return _source.getNode(_index++);
64 return _source.getNode(pos);
68 return _source.cloneIterator();
77 _source.setMark();
81 _source.gotoMark();
H A DDupFilterIterator.java43 private DTMAxisIterator _source; field in class:DupFilterIterator
71 _source = source;
91 boolean sourceIsKeyIndex = _source instanceof KeyIndex;
99 _source.setStartNode(_startNode = node);
102 while ((node = _source.next()) != END) {
135 clone._source = _source.cloneIterator();
148 _source.setRestartable(isRestartable);
H A DFilterIterator.java45 private DTMAxisIterator _source; field in class:FilterIterator
58 _source = source;
71 _source.setRestartable(isRestartable);
78 clone._source = _source.cloneIterator();
90 _source.reset();
96 while ((node = _source.next()) != END) {
106 _source.setStartNode(_startNode = node);
113 _source.setMark();
117 _source
[all...]
H A DMatchingIterator.java55 private DTMAxisIterator _source; field in class:MatchingIterator
63 _source = source;
70 _source.setRestartable(isRestartable);
77 clone._source = _source.cloneIterator();
91 _source.setStartNode(node);
95 while ((node = _source.next()) != END && node != _match) {
103 _source.reset();
108 return _source.next();
113 _last = _source
[all...]
H A DNthIterator.java36 private DTMAxisIterator _source; field in class:NthIterator
41 _source = source;
47 _source.setRestartable(isRestartable);
53 clone._source = _source.cloneIterator(); // resets source
67 return _source.getNodeByPosition(_position);
72 final int pos = _source.isReverse()
73 ? _source.getLast() - _position + 1
78 while ((node = _source.next()) != DTMAxisIterator.END) {
79 if (pos == _source
[all...]
H A DStepIterator.java49 protected DTMAxisIterator _source; field in class:StepIterator
62 _source = source;
71 _source.setRestartable(isRestartable);
79 clone._source = _source.cloneIterator();
95 _source.setStartNode(_startNode = node);
99 _iterator.setStartNode(_includeSelf ? _startNode : _source.next());
106 _source.reset();
108 _iterator.setStartNode(_includeSelf ? _startNode : _source.next());
119 else if ((node = _source
[all...]
H A DCachedNodeListIterator.java41 private DTMAxisIterator _source; field in class:CachedNodeListIterator
48 _source = source;
53 //_source.setRestartable(isRestartable);
59 _source.setStartNode(node);
84 int node = _source.next();
109 _source.setMark();
113 _source.gotoMark();
H A DCurrentNodeListIterator.java55 private DTMAxisIterator _source; field in class:CurrentNodeListIterator
95 _source = source;
109 _source.setRestartable(isRestartable);
121 clone._source = _source.cloneIterator();
157 _source.setStartNode(_startNode = node);
160 while ((node = _source.next()) != END) {
H A DSortingIterator.java38 private DTMAxisIterator _source; field in class:SortingIterator
47 _source = source;
57 _source.setStartNode(_startNode = node);
62 while ((node = _source.next()) != END) {
85 _source.setMark();
90 _source.gotoMark();
102 clone._source = _source.cloneIterator();
H A DMultiDOM.java66 private DTMAxisIterator _source; field in class:MultiDOM.AxisIterator
75 if (_source == null) {
78 return _source.next();
83 if (_source != null) {
84 _source.setRestartable(flag);
96 if (_source == null || _dtmId != dom) {
98 _source = _adapters[dom].getAxisIterator(_axis);
100 _source = _adapters[dom].getTypedChildren(_type);
102 _source = _adapters[dom].getTypedAxisIterator(_axis, _type);
107 _source
169 private DTMAxisIterator _source; field in class:MultiDOM.NodeValueIterator
[all...]
H A DSAXImpl.java362 private DTMAxisIterator _source; field in class:SAXImpl.NodeValueIterator
371 _source = source;
388 clone._source = _source.cloneIterator();
403 _source.setRestartable(isRestartable);
408 _source.reset();
415 while ((node = _source.next()) != END) {
432 _source.setStartNode(_startNode = node);
440 _source.setMark();
445 _source
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DXSLTCSource.java46 private Source _source = null; field in class:XSLTCSource
62 _source = source;
75 if (_source != null) {
76 _source.setSystemId(systemId);
87 if (_source != null) {
88 return _source.getSystemId();
109 Source source = _source;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileStream.hpp56 char* _source; // Source of stream (directory name, ZIP/JAR archive name) member in class:ClassFileStream
69 char* source() const { return _source; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJStaticJavaFile.java81 public JStaticJavaFile(JPackage _pkg, String _className, URL _source, LineFilter _filter ) { argument
83 if(_source==null) throw new NullPointerException();
87 this.source = _source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCHandler.java41 _source = source;
54 protected final NGCCEventSource _source; field in class:NGCCHandler
98 int id = _source.replace(this,child);
99 _source.sendEnterElement(id,uri,localname,qname,atts);
104 int id = _source.replace(this,child);
105 _source.sendEnterAttribute(id,uri,localname,qname);
110 int id = _source.replace(this,child);
111 _source.sendLeaveElement(id,uri,localname,qname);
116 int id = _source.replace(this,child);
117 _source
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DDelayedRef.java52 DelayedRef( PatcherManager _manager, Locator _source, SchemaImpl _schema, UName _name ) { argument
57 this.source = _source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCHandler.java41 _source = source;
54 protected final NGCCEventSource _source; field in class:NGCCHandler
98 int id = _source.replace(this,child);
99 _source.sendEnterElement(id,uri,localname,qname,atts);
104 int id = _source.replace(this,child);
105 _source.sendEnterAttribute(id,uri,localname,qname);
110 int id = _source.replace(this,child);
111 _source.sendLeaveElement(id,uri,localname,qname);
116 int id = _source.replace(this,child);
117 _source
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.hpp105 FormList _source; // List of Source Code Forms for output member in class:ArchDesc
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp1021 Instruction* _source; // for debugging member in class:LIR_Op
1039 , _source(NULL)
1052 , _source(NULL)
1077 Instruction* source() const { return _source; }
1078 void set_source(Instruction* ins) { _source = ins; }

Completed in 2560 milliseconds