Searched refs:_last (Results 1 - 23 of 23) 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 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;
H A DMatchingIterator.java112 if (_last == -1) {
113 _last = _source.getLast();
115 return _last;
H A DCurrentNodeListIterator.java170 if (_last == -1) {
171 _last = computePositionOfLast();
173 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);
/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/utilities/
H A DnumberSeq.hpp93 double _last; member in class:NumberSeq
101 virtual double last() const { return _last; }
H A DnumberSeq.cpp107 AbsSeq(alpha), _maximum(0.0), _last(0.0) {
121 _last = val;
248 s->print_cr("\t\t _last = %7.3f, _maximum = %7.3f", _last, _maximum);
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp327 // _last, _free_list & _allocate_before_rebuild initialized in allocate_handle
328 debug_only(block->_last = NULL);
452 assert(current->_last == NULL, "only first block should have _last set");
461 _last = this;
466 if (_last->_top < block_size_in_oops) {
467 oop* handle = &(_last->_handles)[_last->_top++];
480 if (_last->_next != NULL) {
482 _last
[all...]
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;
H A DjniHandles.hpp127 JNIHandleBlock* _last; // Last block in use member in class:JNIHandleBlock
/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.cpp91 _last = NULL;
107 assert(node->_last_del == _last, "must have deleted the edge just produced");
117 _last = that._last;
124 // Re-initialize everything, except _last.
212 // Fudge the _last field so that the common assert will be happy.
213 _last = (Node*) node->_last_del;
231 // Fudge the _last field so that the common assert will be happy.
232 _last = (Node*) node->_last_del;
262 assert(node->_last_del == _last, "mus
[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/compiler/
H A DcompileBroker.hpp184 CompileTask* _last; member in class:CompileQueue
192 _last = NULL;
202 CompileTask* last() { return _last; }
H A DcompileBroker.cpp601 if (_last == NULL) {
605 _last = task;
608 assert(_last->next() == NULL, "not last");
609 _last->set_next(task);
610 task->set_prev(_last);
611 _last = task;
674 assert(task == _last, "Sanity");
675 _last = task->prev();
/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();
H A Dc1_GraphBuilder.cpp2116 _last = _last->set_next(i1, canon.bci());
2434 _last = beg;
2707 assert(_last && _last->as_BlockEnd(), "");
2708 return _last->as_BlockEnd();
2913 _last = _osr_entry;
3055 _last = start_block;
3098 _last = start_block;
3512 _last
[all...]
/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
H A DthreadService.cpp384 ThreadDumpResult::ThreadDumpResult() : _num_threads(0), _num_snapshots(0), _snapshots(NULL), _next(NULL), _last(NULL) {
392 ThreadDumpResult::ThreadDumpResult(int num_threads) : _num_threads(num_threads), _num_snapshots(0), _snapshots(NULL), _next(NULL), _last(NULL) {
420 _last->set_next(ts);
422 _last = ts;
658 _last->set_next(tcl);
660 _last = tcl;
/openjdk7/langtools/test/tools/javac/api/
H A DTestGetElement.java102 boolean _last = Boolean.parseBoolean(options.get("last"));
105 Scanner scanner = new Scanner(trees, _last);
/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);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM2.java760 if (_last != -1)
761 return _last;
789 return (_last = last);

Completed in 96 milliseconds