Searched defs:_last (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeIteratorBase.java39 protected int _last = -1; field in class:NodeIteratorBase
108 if (_last == -1) {
113 _last++;
118 return _last;
H A DNodeSortRecord.java77 private int _last = 0; // Number of nodes in the current iterator field in class:NodeSortRecord
106 _last = last;
169 translet, _last);
187 translet, _last);
H A DBitArray.java182 int _last = Integer.MIN_VALUE; // The _INTEGER INDEX_ where last set bit is field in class:BitArray
198 if (i > _last) _last = i;
208 if (_last == -1) {
212 else if (other._last != -1) {
214 int stop = (_last > other._last) ? _last : other._last;
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.hpp93 double _last; member in class:NumberSeq
101 virtual double last() const { return _last; }
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMAxisIteratorBase.java38 protected int _last = -1; field in class:DTMAxisIteratorBase
127 if (_last == -1) // Not previously established
142 _last++;
150 return _last;
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.hpp127 JNIHandleBlock* _last; // Last block in use member in class:JNIHandleBlock
H A Darguments.hpp157 AgentLibrary* _last; member in class:VALUE_OBJ_CLASS_SPEC
165 _first = _last = lib;
167 _last->_next = lib;
168 _last = lib;
191 if (curr == _last) {
192 _last = prev;
200 _last = NULL;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp185 Instruction* _last; // the last instruction added member in class:VALUE_OBJ_CLASS_SPEC
201 Instruction* last() const { return _last; }
320 set_inline_cleanup_info(_block, _last, _state);
327 _last = inline_cleanup_return_prev();
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.hpp184 CompileTask* _last; member in class:CompileQueue
192 _last = NULL;
202 CompileTask* last() { return _last; }
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp628 Block * _last; // Last block in the trace member in class:Trace
641 _last = b;
644 set_next(_last, NULL);
651 _last(b),
667 Block * last_block() const { return _last; }
679 if (b == _last) {
680 _last = tr->last_block();
692 insert_after(_last, tr);
697 set_next(_last, b);
698 set_prev(b, _last);
[all...]
H A Dnode.hpp1060 Node* _last; // last value produced by the iterator member in class:VALUE_OBJ_CLASS_SPEC
1139 { I_VDUI_ONLY(i, i.verify(this)); return debug_only(i._last=) _out[i._idx]; }
1208 return debug_only(i._last=) *i._outp;
1265 return debug_only(i._last=) *i._outp;
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.hpp322 ThreadConcurrentLocks* _last; // Last ThreadConcurrentLocks in the map member in class:ConcurrentLocksDump
329 ConcurrentLocksDump(bool retain_map_on_free) : _map(NULL), _last(NULL), _retain_map_on_free(retain_map_on_free) {};
330 ConcurrentLocksDump() : _map(NULL), _last(NULL), _retain_map_on_free(false) {};
343 ThreadSnapshot* _last; member in class:ThreadDumpResult
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java278 private static final byte _last = 3; field in class:JRSUIConstants.SegmentPosition
279 public static final SegmentPosition LAST = new SegmentPosition(_last);

Completed in 1571 milliseconds