Searched defs:index (Results 701 - 725 of 1255) sorted by relevance

<<21222324252627282930>>

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsatbQueue.cpp160 void** buf, size_t index, size_t sz) {
162 for (size_t i = index; i < sz; i += oopSize) {
179 void** buf, size_t index, size_t sz) {
181 "index: "SIZE_FORMAT" sz: "SIZE_FORMAT,
182 name, buf, index, sz);
159 apply_closure_to_buffer(ObjectClosure* cl, void** buf, size_t index, size_t sz) argument
178 print(const char* name, void** buf, size_t index, size_t sz) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsCompactionManager.hpp99 // index into the array _recycled_stack_index and gets a new
106 // The index into _recycled_stack_index of the last region stack index
109 // The index into _recycled_stack_index of the last region stack index
144 inline static ParCompactionManager* manager_array(int index);
146 inline static RegionTaskQueue* region_list(int index) { argument
147 return _region_list[index];
153 // Pop and push unique reusable stack index
163 // Pushes onto the region stack at the given index
210 manager_array(int index) argument
[all...]
H A DpsPromotionManager.cpp68 PSPromotionManager* PSPromotionManager::gc_thread_promotion_manager(int index) { argument
69 assert(index >= 0 && index < (int)ParallelGCThreads, "index out of range");
71 return _manager_array[index];
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTimer.cpp128 int index = _phases->append(phase); local
130 _active_phases.push(index);
153 GCPhase* TimePartitions::phase_at(int index) const {
154 assert(index >= 0, "Out of bounds");
155 assert(index < _phases->length(), "Out of bounds");
157 return _phases->adr_at(index);
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.cpp340 int index = Bytes::get_native_u2(bcp+1); local
341 method->constants()->cache()->entry_at(index)->set_parameter_size(callee_parameters);
354 int index = Bytes::get_native_u4(bcp+1); local
355 method->constants()->cache()->secondary_entry_at(index)->set_parameter_size(callee_parameters);
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.cpp40 void ConstantPoolCacheEntry::initialize_entry(int index) { argument
41 assert(0 < index && index < 0x10000, "sanity check");
42 _indices = index;
43 assert(constant_pool_index() == index, "");
133 "field index does not fit in low flag bits");
174 // In that case, the method has no itable index and must be invoked as a virtual.
190 assert(vtable_index >= 0, "valid index");
254 void ConstantPoolCacheEntry::set_interface_call(methodHandle method, int index) {
260 set_f2(index);
[all...]
H A DfieldStreams.hpp115 int index() const { return _index; } function in class:FieldStreamBase
152 int index = _fields->short_at(_generic_signature_slot); local
153 return _constants->symbol_at(index);
178 void set_name_index(int index) { argument
180 field()->set_name_index(index);
186 void set_signature_index(int index) { argument
188 field()->set_signature_index(index);
199 void set_generic_signature_index(int index) { argument
203 _fields->short_at_put(_generic_signature_slot, index);
210 void set_initval_index(int index) { argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsComboBoxUI.java524 int index,
528 super.getListCellRendererComponent(list, value, index,
532 if (index == -1 && isSelected) {
554 if (index == -1) {
521 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpTableSupport.java264 * @exception SnmpStatusException if the index cannot be built from the
277 * @param index An SnmpIndex object identifying a table entry.
279 * @return The SnmpOid form of the given entry index.
281 * @exception SnmpStatusException if the given index is not valid.
283 public abstract SnmpOid buildOidFromIndex(SnmpIndex index) argument
295 * @param index The SnmpIndex identifying the entry from which we
299 * the given index.
301 * @exception SnmpStatusException if the given index is not valid.
303 public abstract ObjectName buildNameFromIndex(SnmpIndex index) argument
421 * Builds an SnmpIndex object from the index par
492 addEntry(SnmpIndex index, Object entry) argument
515 addEntry(SnmpIndex index, ObjectName name, Object entry) argument
537 removeEntry(SnmpIndex index, Object entry) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpSubRequestHandler.java489 * The method returns the error index as a position in the var bind list.
490 * The value returned by the method corresponds to the index in the original
497 // An error occurs. We need to be carefull because the index
498 // we are getting is a valid SNMP index (so range starts at 1).
587 * The array giving the index translation between the content of
626 final E elementAtNonSync(int index) { argument
627 return (E) elementData[index];
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DEventDispatcher.java298 int index = 0;
300 index = getAutoClosingClipIndex(clip);
301 if (index == -1) {
306 if (index == -1) {
408 Object getListener(int index) { argument
409 return listeners[index];
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DNameSpaceSymbTable.java329 int index = index(key);
330 Object oldKey = keys[index];
331 keys[index] = key;
332 entries[index] = value;
352 protected int index(Object obj) { method in class:SymbMap
355 //abs of index
356 int index = (obj.hashCode() & 0x7fffffff) % length;
357 Object cur = set[index];
360 return index;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DManifest.java406 * @param index
409 private void setVerificationResult(int index, boolean verify) argument
416 this.verificationResults[index] = verify;
424 * @param index an index of into a {@link Manifest} or a {@link SignedInfo}
425 * @return the results of reference validation at the specified index
428 public boolean getVerificationResult(int index) throws XMLSecurityException { argument
430 if ((index < 0) || (index > this.getLength() - 1)) {
431 Object exArgs[] = { Integer.toString(index),
[all...]
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJSAdapter.java102 public Object get(int index, Scriptable start) { argument
105 return call(func, new Object[] { new Integer(index) });
108 return start.get(index, start);
123 public boolean has(int index, Scriptable start) { argument
126 Object res = call(func, new Object[] { new Integer(index) });
130 return start.has(index, start);
148 public void put(int index, Scriptable start, Object value) { argument
152 call(func, new Object[] { new Integer(index), value });
155 start.put(index, start, value);
158 start.put(index, star
171 delete(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DContextManager.java213 private void setCurrentFrameIndex(ThreadInfo tinfo, int index) { argument
214 tinfo.setUserObject(new Integer(index));
219 notifyCurrentFrameChanged(tinfo.thread(), index);
231 int index = getCurrentFrameIndex(tinfo);
235 return tinfo.getFrame(index);
261 int index = 0;
264 index = getCurrentFrameIndex(tinfo);
266 notifyCurrentFrameChanged(tinfo, index, false);
269 private void notifyCurrentFrameChanged(ThreadReference t, int index) { argument
271 index, fals
274 notifyCurrentFrameChanged(ThreadInfo tinfo, int index, boolean invalidate) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaValueArray.java207 int index = 0;
212 res[i] = booleanAt(index, data);
213 index++;
220 res[i] = byteAt(index, data);
221 index++;
228 res[i] = charAt(index, data);
229 index += 2;
236 res[i] = shortAt(index, data);
237 index += 2;
244 res[i] = intAt(index, dat
283 checkIndex(int index) argument
295 getBooleanAt(int index) argument
301 getByteAt(int index) argument
307 getCharAt(int index) argument
313 getShortAt(int index) argument
319 getIntAt(int index) argument
325 getLongAt(int index) argument
331 getFloatAt(int index) argument
337 getDoubleAt(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java229 int index = (hash & 0x7FFFFFFF) % tab.length;
230 for (Entry e = tab[index]; e != null; e = e.next)
266 int index = (hash & 0x7FFFFFFF) % tab.length;
267 for (Entry e = tab[index]; e != null; e = e.next)
297 int index = (e.hash & 0x7FFFFFFF) % newCapacity;
298 e.next = newMap[index];
299 newMap[index] = e;
330 * @return index of the key mapping.
361 int index = 0;
365 index
416 put(int index, Object key, Object value) argument
[all...]
H A DMethodImpl.java159 Type argumentType(int index) throws ClassNotLoadedException { argument
161 String signature = argumentSignatures().get(index);
257 int index; field in class:MethodImpl.ArgumentContainer
259 ArgumentContainer(int index) { argument
260 this.index = index;
263 return argumentType(index);
266 return argumentTypeNames().get(index);
269 return argumentSignatures().get(index);
H A DThreadReferenceImpl.java354 public StackFrame frame(int index) throws IncompatibleThreadStateException { argument
355 List list = privateFrames(index, 1);
/openjdk7/jdk/src/share/classes/java/awt/
H A DAWTEventMulticaster.java975 private static int populateListenerArray(EventListener[] a, EventListener l, int index) { argument
978 int lhs = populateListenerArray(a, mc.a, index);
982 a[index] = l;
983 return index + 1;
987 return index;
H A DChoice.java87 * The index of the current choice for this <code>Choice</code>
167 * Gets the string at the specified index in this
169 * @param index the index at which to begin
172 public String getItem(int index) { argument
173 return getItemImpl(index);
180 final String getItemImpl(int index) { argument
181 return (String)pItems.elementAt(index);
219 * @param index the new item position
223 private void insertNoInvalidate(String item, int index) { argument
258 insert(String item, int index) argument
[all...]
H A DMenu.java242 * Gets the item located at the specified index of this menu.
243 * @param index the position of the item to be returned.
244 * @return the item located at the specified index.
246 public MenuItem getItem(int index) { argument
247 return getItemImpl(index);
254 final MenuItem getItemImpl(int index) { argument
255 return (MenuItem)items.elementAt(index);
300 * @param index the position at which the menu
305 * <code>index</code> is less than zero
309 public void insert(MenuItem menuitem, int index) { argument
353 insert(String label, int index) argument
375 insertSeparator(int index) argument
408 remove(int index) argument
[all...]
H A DPolygon.java577 int index; field in class:Polygon.PolygonPathIterator
584 index = 1;
604 return index > poly.npoints;
613 index++;
635 if (index >= poly.npoints) {
638 coords[0] = poly.xpoints[index];
639 coords[1] = poly.ypoints[index];
643 return (index == 0 ? SEG_MOVETO : SEG_LINETO);
666 if (index >= poly.npoints) {
669 coords[0] = poly.xpoints[index];
[all...]
H A DScrollPane.java236 private void addToPanel(Component comp, Object constraints, int index) { argument
240 super.addImpl(child, constraints, index);
250 * @param index position of child component (must be <= 0)
252 protected final void addImpl(Component comp, Object constraints, int index) { argument
257 if (index > 0) {
262 super.addImpl(comp, constraints, index);
264 addToPanel(comp, constraints, index);
H A DSystemColor.java53 * The array index for the
60 * The array index for the
67 * The array index for the
74 * The array index for the
81 * The array index for the
88 * The array index for the
95 * The array index for the
102 * The array index for the
109 * The array index for the
116 * The array index fo
428 private transient int index; field in class:SystemColor
479 SystemColor(byte index) argument
[all...]

Completed in 122 milliseconds

<<21222324252627282930>>