Searched defs:iterate (Results 1 - 25 of 27) sorted by relevance

12

/openjdk7/langtools/test/tools/javac/generics/
H A DT6391995.java33 <E> void iterate(Iterable<E> iterable) { method in class:T6391995
35 iterate(x.iterator().next());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DCDebugInfoDataBase.java42 public void iterate(TypeVisitor t); method in interface:CDebugInfoDataBase
63 public void iterate(LineNumberVisitor v); method in interface:CDebugInfoDataBase
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCodeCache.java169 public void iterate(CodeCacheVisitor visitor) { method in class:CodeCache
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicLineNumberMapping.java83 public void iterate(LineNumberVisitor v) { method in class:BasicLineNumberMapping
H A DBasicCDebugInfoDataBase.java202 public void iterate(TypeVisitor v) { method in class:BasicCDebugInfoDataBase
246 public void iterate(LineNumberVisitor v) { method in class:BasicCDebugInfoDataBase
247 lineNumbers.iterate(v);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DPerfMemory.java90 // an interface supplied to iterate PerfDataEntries
96 public static void iterate(PerfDataEntryVisitor visitor) { method in class:PerfMemory
H A DNativeSignatureIterator.java97 // iterate() calles the 2 virtual methods according to the following invocation syntax:
105 public void iterate() { method in class:NativeSignatureIterator
107 // handle receiver (not handled by iterate because not in signature)
H A DSignatureIterator.java29 /** <P> SignatureIterators iterate over a Java signature (or parts of it).
44 iterate() calls: do_array(2, 7); do_double(); do_int();
51 protected Symbol _signature; // the signature to iterate over
169 public void iterate() { method in class:SignatureIterator
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DBitMap.java77 public void iterate(BitMapClosure blk) { method in class:BitMap
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparMarkBitMap.cpp158 ParMarkBitMap::iterate(ParMarkBitMapClosure* live_closure,
193 ParMarkBitMap::iterate(ParMarkBitMapClosure* live_closure, function in class:ParMarkBitMap
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DHeaderImpl.java137 Object currentChild = iterate(eachChild);
140 currentChild = iterate(eachChild);
144 currentChild = iterate(eachChild);
175 private Object iterate(Iterator each) { method in class:HeaderImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DOop.java160 public void iterate(OopVisitor visitor, boolean doVMFields) { method in class:Oop
201 iterate(printer, true);
H A DObjectHeap.java243 public void iterate(HeapVisitor visitor) { method in class:ObjectHeap
247 /** iterate objects satisfying a specified ObjectFilter */
248 public void iterate(HeapVisitor visitor, ObjectFilter of) { method in class:ObjectHeap
252 /** iterate objects of given Klass. param 'includeSubtypes' tells whether to
270 /** iterate objects of given Klass (objects of subtypes included) */
275 /** This routine can be used to iterate through the heap at an
399 iterate(printer);
571 // We want to iterate through all live portions of the heap, but
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.inline.hpp244 inline bool CMBitMapRO::iterate(BitMapClosure* cl, MemRegion mr) { function in class:CMBitMapRO
268 inline bool CMBitMapRO::iterate(BitMapClosure* cl) { function in class:CMBitMapRO
270 return iterate(cl, mr);
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.cpp353 //------------------------------iterate----------------------------------------
364 SetI_ *VectorSet::iterate(uint &elem) const { function in class:VectorSet
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsignature.cpp237 void SignatureIterator::iterate() { function in class:SignatureIterator
H A Dsignature.hpp32 // SignatureIterators iterate over a Java signature (or parts of it).
41 // iterate() calls: do_array(2, 7); do_double(); do_int();
50 Symbol* _signature; // the signature to iterate over
97 void iterate(); // iterates over whole signature
145 bool _has_iterated; // need this because iterate cannot be called in constructor (set is virtual!)
322 // iterate() calles the 2 virtual methods according to the following invocation syntax:
331 void iterate() { iterate(Fingerprinter(method()).fingerprint()); function in class:NativeSignatureIterator
336 void iterate( uint64_t fingerprint ) { function in class:NativeSignatureIterator
339 // handle receiver (not handled by iterate becaus
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.hpp203 bool iterate(BitMapClosure* blk, idx_t leftIndex, idx_t rightIndex);
204 bool iterate(BitMapClosure* blk) { function in class:VALUE_OBJ_CLASS_SPEC
206 return iterate(blk, 0, size());
H A DbitMap.cpp448 bool BitMap::iterate(BitMapClosure* blk, idx_t leftOffset, idx_t rightOffset) { function in class:BitMap
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_monitor.c156 IterateInfo *iterate; local
161 iterate = (IterateInfo *)arg;
163 iterate->monitors[iterate->count++] = index;
164 iterate->total_contended_time += info->contended_time;
256 IterateInfo iterate; local
265 iterate.monitors = HPROF_MALLOC(n_entries*(int)sizeof(MonitorIndex));
266 (void)memset(iterate.monitors, 0, n_entries*(int)sizeof(MonitorIndex));
269 iterate.total_contended_time = 0;
270 iterate
[all...]
H A Dhprof_site.c52 * This file also contains the heap iterate logic, which is closely
165 IterateInfo *iterate; local
170 iterate = (IterateInfo *)arg;
172 if ( iterate->changed_only ) {
180 iterate->site_nums[iterate->count++] = i;
383 IterateInfo iterate; local
394 (void)memset(&iterate, 0, sizeof(iterate));
397 iterate
[all...]
H A Dhprof_trace.c352 IterateInfo *iterate; local
358 iterate = (IterateInfo *)arg;
360 iterate->traces[iterate->count++] = index;
361 iterate->grand_total_cost += info->self_cost;
690 IterateInfo iterate; local
698 iterate.traces = HPROF_MALLOC(n_entries*(int)sizeof(TraceIndex)+1);
699 iterate.count = 0;
700 iterate.grand_total_cost = 0;
701 table_walk_items(gdata->trace_table, &collect_iterator, &iterate);
781 IterateInfo iterate; local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.inline.hpp227 inline void CMSBitMap::iterate(BitMapClosure* cl, HeapWord* left, function in class:CMSBitMap
233 _bm.iterate(cl, heapWordToOffset(left), heapWordToOffset(right));
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp98 void KlassInfoBucket::iterate(KlassInfoClosure* cic) { function in class:KlassInfoBucket
169 void KlassInfoTable::iterate(KlassInfoClosure* cic) { function in class:KlassInfoTable
172 _buckets[index].iterate(cic);
326 cit.iterate(&hc);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Optimizer.cpp613 void iterate(BlockBegin* root);
842 void NullCheckEliminator::iterate(BlockBegin* block) { function in class:NullCheckEliminator
1143 nce.iterate(ir()->start());
1146 // handlers and iterate over them as well
1162 nce.iterate(excp);

Completed in 522 milliseconds

12