Searched refs:_index (Results 1 - 25 of 67) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DSignatureIterator.java52 protected int _index; // the current character index (only valid during iteration) field in class:SignatureIterator
56 if (_signature.getByteAt(_index) != (byte) c) {
59 _index++;
62 byte c = _signature.getByteAt(_index);
64 c = _signature.getByteAt(++_index);
69 switch(_signature.getByteAt(_index)) {
70 case 'B': doByte (); _index++; return BasicTypeSize.getTByteSize();
71 case 'C': doChar (); _index++; return BasicTypeSize.getTCharSize();
72 case 'D': doDouble(); _index++; return BasicTypeSize.getTDoubleSize();
73 case 'F': doFloat (); _index
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DNamedNodeMapIterator.java38 protected int _index; field in class:NamedNodeMapIterator
42 _index = 0;
48 return _index < _map.getLength();
52 Object obj = _map.item(_index);
54 ++_index;
H A DNodeListIterator.java38 protected int _index; field in class:NodeListIterator
42 _index = 0;
48 return _index < _list.getLength();
52 Object obj = _list.item(_index);
54 ++_index;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DClonedNodeListIterator.java40 private int _index = 0; field in class:ClonedNodeListIterator
56 return _source.getNode(_index++);
60 return _index == 0 ? 1 : _index;
72 _index = 0;
H A DCachedNodeListIterator.java44 private int _index = 0; field in class:CachedNodeListIterator
68 return getNode(_index++);
72 return _index == 0 ? 1 : _index;
104 _index = 0;
H A DKeyIndex.java52 private Hashtable _index; field in class:KeyIndex
97 _index = new Hashtable();
98 _rootToIndexMap.put(new Integer(rootNode), _index);
101 IntegerArray nodes = (IntegerArray) _index.get(value);
105 _index.put(value, nodes);
148 IntegerArray nodes = (IntegerArray) _index.get(token);
210 IntegerArray nodes = (IntegerArray) _index.get(value);
408 other._index = _index;
/openjdk7/hotspot/src/share/vm/runtime/
H A DreflectionUtils.hpp53 int _index; member in class:VALUE_OBJ_CLASS_SPEC
69 int index() const { return _index; }
89 _index = length();
93 void next() { _index--; }
115 _index = length();
119 void next() { _index -= 1; }
124 flags.set_flags(_klass->field_access_flags(_index));
128 return _klass->field_name(_index);
131 return _klass->field_signature(_index);
211 _index
[all...]
H A Dsignature.cpp53 if (_signature->byte_at(_index) != c) fatal(err_msg("expecting %c", c));
54 _index++;
60 char c = sig->byte_at(_index);
61 while ('0' <= c && c <= '9') c = sig->byte_at(++_index);
72 switch(_signature->byte_at(_index)) {
74 _index++; size = T_BYTE_size ; break;
76 _index++; size = T_CHAR_size ; break;
78 _index++; size = T_DOUBLE_size ; break;
80 _index++; size = T_FLOAT_size ; break;
82 _index
[all...]
H A DfieldDescriptor.hpp43 int _index; // the field index member in class:VALUE_OBJ_CLASS_SPEC
54 return ik->field(_index);
71 int index() const { return _index; }
H A DstubCodeGenerator.hpp47 int _index; // serial number assigned to the stub member in class:StubCodeDesc
75 _index = ++_count; // (never zero)
83 int index() const { return _index; }
H A Dvframe_hp.hpp128 int index(void) { return _index; }
139 int _index; member in class:jvmtiDeferredLocalVariable
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DptrQueue.cpp45 _qset(qset), _buf(NULL), _index(0), _active(active),
51 if (_index == _sz) {
56 for (size_t i = 0; i < _index; i += oopSize) {
62 _index = 0;
77 assert(0 <= _index && _index <= _sz, "Invariant.");
78 assert(_index == 0 || _buf != NULL, "invariant");
80 while (_index == 0) {
84 assert(_index > 0, "postcondition");
85 _index
[all...]
H A DptrQueue.hpp53 size_t _index; member in class:VALUE_OBJ_CLASS_SPEC
80 void reset() { if (_buf != NULL) _index = _sz; }
102 assert(_sz >= _index, "Invariant.");
103 return _buf == NULL ? 0 : _sz - _index;
107 return _buf == NULL || _sz == _index;
116 _index = _sz;
118 assert(_index == _sz, "invariant: queues are empty when activated.");
135 return byte_offset_of(PtrQueue, _index);
152 size_t _index; member in class:BufferNode
155 BufferNode() : _index(
[all...]
H A DdirtyCardQueue.hpp69 size_t get_index() { return _index;}
70 void reinitialize() { _buf = 0; _sz = 0; _index = 0;}
H A DsatbQueue.cpp76 while (i > _index) {
105 size_t entries_calc = (sz - _index) / oopSize;
113 _index = new_index;
133 assert(_index == 0, "pre-condition");
140 size_t retained_entries = (sz - _index) / oopSize;
148 apply_closure_to_buffer(cl, _buf, _index, _sz);
154 apply_closure_to_buffer(cl, _buf, _index, _sz);
155 _index = _sz;
175 print(name, _buf, _index, _sz);
189 for (size_t i = _index;
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTable.hpp103 int _index; member in class:StackMapStream
106 : _data(ah), _index(0) {
109 if (_data == NULL || _index >= _data->length()) {
112 return _data->byte_at(_index++);
115 if (_data == NULL || _index >= _data->length() - 1) {
118 u2 res = Bytes::get_Java_u2((u1*)_data->byte_at_addr(_index));
119 _index += 2;
123 return (_data == NULL) || (_index == _data->length());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DFixedEntryStringIntMap.java42 _table[tableIndex] = _fixedEntry = new Entry(fixedEntry, hash, _index++, null);
67 _index = _readOnlyMapSize + 1;
70 _index = _readOnlyMapSize;
88 _index = _readOnlyMapSize + _size;
H A DLocalNameQualifiedNamesMap.java37 private int _index; field in class:LocalNameQualifiedNamesMap
88 _index = _readOnlyMap.getIndex();
90 _index = 0;
107 _index = _readOnlyMap.getIndex();
113 _index = 0;
122 return _index++;
126 return _index;
H A DStringIntMap.java52 protected int _index; field in class:StringIntMap
77 _index = _readOnlyMapSize;
94 _index = _size + _readOnlyMapSize;
101 _index = _size;
106 return _index++;
110 return _index;
173 _table[bucketIndex] = new Entry(key, hash, _index++, e);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DIdKeyPattern.java45 private String _index = null; field in class:IdKeyPattern
49 _index = index;
54 return(_index);
76 return "id/keyPattern(" + _index + ", " + _value + ')';
109 il.append(new PUSH(cpg,_index));
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldStreams.hpp43 int _index; member in class:FieldStreamBase
47 FieldInfo* field() const { return FieldInfo::from_field_array(_fields(), _index); }
55 /* Scan from 0 to the current _index. Count the number of generic
56 signature slots for field[0] to field[_index - 1]. */
57 for (int i = 0; i < _index; i++) {
65 /* Scan from the current _index. */
66 for (int i = _index; i*FieldInfo::field_slots < length; i++) {
82 _index = start;
94 _index = 0;
102 _index
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp43 const short _index; // vtable index member in class:VtableStub
53 _index(index), _ame_offset(-1), _npe_offset(-1) {}
55 int index() const { return _index; }
66 return _index == index && _is_vtable_stub == is_vtable_stub;
/openjdk7/hotspot/src/share/vm/utilities/
H A Devents.hpp83 int _index; member in class:EventLogBase
92 _index(0),
105 int index = _index;
107 _index++;
108 if (_index >= _length) _index = 0;
262 for (int i = _index; i < _length; i++) {
265 for (int i = 0; i < _index; i++) {
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp71 int _index; member in class:HistoEntry
75 HistoEntry(int index, int count) { _index = index; _count = count; }
76 int index() const { return _index; }
148 int BytecodePairHistogram::_index; member in class:BytecodePairHistogram
153 _index = Bytecodes::_nop << log2_number_of_codes;
H A DbytecodeHistogram.hpp86 NOT_PRODUCT(static int _index;) // new bytecode is shifted in - used to index into _counters

Completed in 338 milliseconds

123