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

/openjdk7/hotspot/src/share/vm/gc_interface/
H A DgcCause.hpp98 int _position; member in class:GCCauseString
103 _position = jio_snprintf(_buffer, _length, "%s (%s)", prefix, GCCause::to_string(cause));
105 _position = jio_snprintf(_buffer, _length, "%s", prefix);
107 assert(_position >= 0 && _position <= _length,
108 err_msg("Need to increase the buffer size in GCCauseString? %d", _position));
112 int res = jio_snprintf(_buffer + _position, _length - _position, "%s", str);
113 _position += res;
114 assert(res >= 0 && _position <
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeIteratorBase.java45 protected int _position = 0; field in class:NodeIteratorBase
109 final int temp = _position;
116 _position = temp;
125 return _position == 0 ? 1 : _position;
161 _position++;
169 _position = 0;
H A DKeyIndex.java212 _position = 0;
224 return (_position < _nodes.cardinality()) ?
225 _dom.getNodeHandle(_nodes.at(_position++)) : DTMAxisIterator.END;
318 _position = 0;
339 return _position;
349 _markedPosition = _position;
359 _position = _markedPosition;
374 _position = 0;
411 other._position = _position;
553 private int _position = 0; field in class:KeyIndex.KeyIndexIterator.KeyIndexHeapNode
[all...]
H A DMatchingIterator.java94 _position = 1;
96 _position++;
119 return _position;
H A DNthIterator.java37 private final int _position; field in class:NthIterator
42 _position = n;
67 return _source.getNodeByPosition(_position);
71 if (_ready && _position > 0) {
73 ? _source.getLast() - _position + 1
74 : _position;
H A DCurrentNodeListIterator.java189 int lastPosition = _position;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMAxisIteratorBase.java43 protected int _position = 0; field in class:DTMAxisIteratorBase
136 final int temp = _position; // Save state
147 _position = temp;
159 return _position == 0 ? 1 : _position;
215 _position++;
231 _position = 0;
/openjdk7/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++]; }
93 return _position >= _size;
96 _buffer[_position++] = b;
H A DcompressedStream.cpp83 _position = 0;
88 memcpy(_new_buffer, _buffer, _position);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLocationPathPattern.java41 private int _position = 0; field in class:LocationPathPattern
55 _position = template.getPosition();
87 if (_position > other._position) {
H A DTemplate.java54 private int _position; // Position within stylesheet (prio. resolution) field in class:Template
104 return(_position);
136 else if (_position > other._position)
138 else if (_position < other._position)
230 _position = parser.getTemplateIndex();
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp45 int _position; // position on the current line member in class:outputStream
47 julong _precount; // number of chars output, less _position
74 int position() const { return _position; }
76 julong count() const { return _precount + _position; }
77 void set_count(julong count) { _precount = count - _position; }
78 void set_position(int pos) { _position = pos; }
93 void bol() { if (_position > 0) cr(); }
187 void reset() { buffer_pos = 0; _precount = 0; _position = 0; }
286 void reset() { buffer_pos = 0; _precount = 0; _position = 0; }
H A Dostream.cpp50 _position = 0;
58 _position = 0;
70 _precount += _position + 1;
71 _position = 0;
73 int tw = 8 - (_position & 7);
74 _position += tw;
75 _precount -= tw-1; // invariant: _precount + _position == total count
77 _position += 1;
241 while (_position < _indentation) sp();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DPrefixArray.java435 int _position = 1;
436 NamespaceEntry _ne = _inScopeNamespaces[_position];
443 if (_position == _size + 2) {
457 while (++_position < _size + 2) {
458 _ne = _inScopeNamespaces[_position];
472 int _position = 0;
484 if (_position == _size + 2) {
498 while (++_position < _size + 2) {
499 _ne = _inScopeNamespaces[_position];
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp153 int _position; member in class:DCmdArgumentInfo
164 this->_position = -1;
176 this->_position = position;
184 int position() const { return _position; }
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp50 _position = 0;
63 _position = 0;
69 while(_position++ < _size) {
H A DoopMap.hpp270 int _position; member in class:OopMapStream
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp603 _position.addName((char*) (intptr_t) position);
620 _position.reset();
627 position = (int) (intptr_t) _position.iter();
H A Dformsopt.hpp449 NameList _position; member in class:PeepMatch
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp973 nonstatic_field(CompressedStream, _position, int) \

Completed in 87 milliseconds