Searched refs:_position (Results 1 - 21 of 21) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeIteratorBase.java43 protected int _position = 0; field in class:NodeIteratorBase
107 final int temp = _position;
114 _position = temp;
123 return _position == 0 ? 1 : _position;
159 _position++;
167 _position = 0;
H A DKeyIndex.java214 _position = 0;
227 return (_position < _nodes.cardinality()) ?
228 _dom.getNodeHandle(_nodes.at(_position++)) : DTMAxisIterator.END;
322 _position = 0;
345 return _position;
356 _markedPosition = _position;
367 _position = _markedPosition;
383 _position = 0;
423 other._position = _position;
565 private int _position = 0; field in class:KeyIndex.KeyIndexIterator.KeyIndexHeapNode
[all...]
H A DNthIterator.java35 private final int _position; field in class:NthIterator
40 _position = n;
65 return _source.getNodeByPosition(_position);
69 if (_ready && _position > 0) {
71 ? _source.getLast() - _position + 1
72 : _position;
H A DMatchingIterator.java92 _position = 1;
94 _position++;
117 return _position;
H A DCurrentNodeListIterator.java187 int lastPosition = _position;
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMAxisIteratorBase.java42 protected int _position = 0; field in class:DTMAxisIteratorBase
135 final int temp = _position; // Save state
146 _position = temp;
158 return _position == 0 ? 1 : _position;
214 _position++;
230 _position = 0;
/openjdk10/hotspot/src/share/vm/code/
H A DcompressedStream.hpp37 int _position; member in class:CompressedStream
54 _position = position;
60 int position() const { return _position; }
61 void set_position(int position) { _position = position; }
67 inline u_char read() { return _buffer[_position++]; }
126 return _position >= _size;
129 _buffer[_position++] = b;
H A DcompressedStream.cpp83 _position = 0;
88 memcpy(_new_buffer, _buffer, _position);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLocationPathPattern.java39 private int _position = 0; field in class:LocationPathPattern
53 _position = template.getPosition();
85 if (_position > other._position) {
H A DTemplate.java52 private int _position; // Position within stylesheet (prio. resolution) field in class:Template
102 return(_position);
134 else if (_position > other._position)
136 else if (_position < other._position)
228 _position = parser.getTemplateIndex();
/openjdk10/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp498 int _position; // The current position in the GrowableArray member in class:GrowableArrayIterator
501 GrowableArrayIterator(const GrowableArray<E>* array, int position) : _array(array), _position(position) {
506 GrowableArrayIterator() : _array(NULL), _position(0) { }
507 GrowableArrayIterator<E>& operator++() { ++_position; return *this; }
508 E operator*() { return _array->at(_position); }
512 return _position == rhs._position;
517 return _position != rhs._position;
527 int _position; // Curren member in class:GrowableArrayFilterIterator
[all...]
H A Dostream.hpp48 int _position; // position on the current line member in class:outputStream
50 julong _precount; // number of chars output, less _position
86 int position() const { return _position; }
88 julong count() const { return _precount + _position; }
89 void set_count(julong count) { _precount = count - _position; }
90 void set_position(int pos) { _position = pos; }
105 void bol() { if (_position > 0) cr(); }
203 void reset() { buffer_pos = 0; _precount = 0; _position = 0; }
270 void reset() { buffer_pos = 0; _precount = 0; _position = 0; }
H A Dostream.cpp42 _position = 0;
52 _position = 0;
66 _precount += _position + 1;
67 _position = 0;
69 int tw = 8 - (_position & 7);
70 _position += tw;
71 _precount -= tw-1; // invariant: _precount + _position == total count
73 _position += 1;
255 while (_position < _indentation) sp();
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/util/
H A DPrefixArray.java445 int _position = 1;
446 NamespaceEntry _ne = _inScopeNamespaces[_position];
453 if (_position == _size + 2) {
467 while (++_position < _size + 2) {
468 _ne = _inScopeNamespaces[_position];
482 int _position = 0;
494 if (_position == _size + 2) {
508 while (++_position < _size + 2) {
509 _ne = _inScopeNamespaces[_position];
/openjdk10/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp174 int _position; /* Expected position for this argument (this field is */ member in class:DCmdArgumentInfo
188 this->_position = -1;
201 this->_position = position;
210 int position() const { return _position; }
/openjdk10/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp695 _position.addName((char*) (intptr_t) position);
712 _position.reset();
719 position = (int) (intptr_t) _position.iter();
H A Dformsopt.hpp572 NameList _position; member in class:PeepMatch
/openjdk10/hotspot/src/share/vm/compiler/
H A DoopMap.cpp53 _position = 0;
61 _position = 0;
66 while(_position++ < _size) {
H A DoopMap.hpp339 int _position; member in class:OopMapStream
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/
H A Djquery-ui.js883 _position = $.fn.position;
985 return _position.apply( this, arguments );
/openjdk10/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp959 nonstatic_field(CompressedStream, _position, int) \

Completed in 250 milliseconds