Searched refs:_list (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DNodeListIterator.java37 protected NodeList _list; field in class:NodeListIterator
41 _list = list;
46 if (_list == null)
48 return _index < _list.getLength();
52 Object obj = _list.item(_index);
/openjdk7/corba/src/share/classes/org/omg/CosNaming/
H A D_BindingIteratorImplBase.java57 org.omg.CORBA.NVList _list = _orb().create_list(0);
60 _list.add_value("b", _b, org.omg.CORBA.ARG_OUT.value);
61 r.params(_list);
74 org.omg.CORBA.NVList _list = _orb().create_list(0);
77 _list.add_value("how_many", _how_many, org.omg.CORBA.ARG_IN.value);
80 _list.add_value("bl", _bl, org.omg.CORBA.ARG_OUT.value);
81 r.params(_list);
96 org.omg.CORBA.NVList _list = _orb().create_list(0);
97 r.params(_list);
H A D_NamingContextImplBase.java64 org.omg.CORBA.NVList _list = _orb().create_list(0);
67 _list.add_value("n", _n, org.omg.CORBA.ARG_IN.value);
70 _list.add_value("obj", _obj, org.omg.CORBA.ARG_IN.value);
71 r.params(_list);
110 org.omg.CORBA.NVList _list = _orb().create_list(0);
113 _list.add_value("n", _n, org.omg.CORBA.ARG_IN.value);
116 _list.add_value("nc", _nc, org.omg.CORBA.ARG_IN.value);
117 r.params(_list);
156 org.omg.CORBA.NVList _list = _orb().create_list(0);
159 _list
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGetLoadedClasses.cpp42 Handle* _list; member in class:JvmtiGetLoadedClassesClosure
65 _list = NULL;
75 _list = NULL;
86 if (_list != NULL) {
87 FreeHeap(_list);
88 _list = NULL;
107 return _list;
111 _list = value;
123 if ((_list != NULL) && (index < _count)) {
124 return _list[inde
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.hpp41 static StubCodeDesc* _list; // the list of all descriptors member in class:StubCodeDesc
72 _next = _list;
78 _list = this;
H A DstubCodeGenerator.cpp49 StubCodeDesc* StubCodeDesc::_list = NULL; member in class:StubCodeDesc
54 StubCodeDesc* p = _list;
62 StubCodeDesc* p = _list;
150 assert(StubCodeDesc::_list == _cdesc, "expected order on list");
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.hpp75 KlassInfoEntry* _list; member in class:KlassInfoBucket
76 KlassInfoEntry* list() { return _list; }
77 void set_list(KlassInfoEntry* l) { _list = l; }
80 void initialize() { _list = NULL; }
H A DheapInspection.cpp83 KlassInfoEntry* elt = _list;
99 KlassInfoEntry* elt = _list;
107 KlassInfoEntry* elt = _list;
108 _list = NULL;
H A DbinaryTreeDictionary.hpp140 TreeList<Chunk>* _list; member in class:TreeChunk
141 TreeList<Chunk> _embedded_list; // if non-null, this chunk is on _list
146 TreeList<Chunk>* list() { return _list; }
147 void set_list(TreeList<Chunk>* v) { _list = v; }
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.hpp356 HeapRegionLinkedList* _list; member in class:HeapRegionLinkedListIterator
372 assert(_list->verify_region(hr, _list), "region verification");
378 : _curr(NULL), _list(list) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp370 NameList* _list; member in class:PreserveIter
376 _list = nl;
377 _iter = _list->_iter;
378 _justReset = _list->_justReset;
381 _list->_iter = _iter;
382 _list->_justReset = _justReset;
393 NameList _list; member in class:NameAndList
407 int count() { return _list.count(); }
H A Dforms.cpp139 _list.addName(entry);
144 void NameAndList::reset() { _list.reset(); }
145 const char *NameAndList::iter() { return _list.iter(); }
151 _list.reset();
152 const char *entry = _list.iter();
155 entry = _list.iter();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp114 _XHandlerList _list; member in class:XHandlers
118 XHandlers() : _list() { }
123 int length() const { return _list.length(); }
124 XHandler* handler_at(int i) const { return _list.at(i); }
125 bool has_handlers() const { return _list.length() > 0; }
126 void append(XHandler* h) { _list.append(h); }
127 XHandler* remove_last() { return _list.pop(); }
H A Dc1_IR.cpp40 XHandlers::XHandlers(ciMethod* method) : _list(method->exception_table_length()) {
43 _list.append(new XHandler(s.handler()));
51 _list(other->length())
54 _list.append(new XHandler(other->handler_at(i)));
/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.cpp613 GrowableArray<DerivedPointerEntry*>* DerivedPointerTable::_list = NULL; member in class:DerivedPointerTable
622 assert(_list == NULL || _list->length() == 0, "table not empty");
623 if (_list == NULL) {
624 _list = new (ResourceObj::C_HEAP, mtCompiler) GrowableArray<DerivedPointerEntry*>(10, true); // Allocated on C heap
639 assert(_list != NULL, "list must exist");
657 _list->append(entry);
663 assert(_list != NULL, "list must exist");
664 for(int i = 0; i < _list->length(); i++) {
665 DerivedPointerEntry* entry = _list
[all...]
H A DoopMap.hpp293 static GrowableArray<DerivedPointerEntry*>* _list; member in class:DerivedPointerTable
299 static bool is_empty() { return _list == NULL || _list->is_empty(); }

Completed in 55 milliseconds