Searched defs:index (Results 676 - 700 of 1255) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArea.java662 private int index; field in class:AreaIterator
690 index++;
691 if (index < curves.size()) {
692 thiscurve = (Curve) curves.get(index);
/openjdk7/jdk/src/share/classes/java/awt/image/renderable/
H A DParameterBlock.java191 * @param index the index of the source to be returned.
193 * at the specified index in the <code>sources</code>
197 public Object getSource(int index) { argument
198 return sources.elementAt(index);
203 * If the index lies beyond the current source list,
206 * @param index the index into the <code>sources</code>
211 * <code>index</code>.
214 public ParameterBlock setSource(Object source, int index) { argument
234 getRenderedSource(int index) argument
248 getRenderableSource(int index) argument
418 set(Object obj, int index) argument
440 set(byte b, int index) argument
456 set(char c, int index) argument
472 set(short s, int index) argument
488 set(int i, int index) argument
504 set(long l, int index) argument
520 set(float f, int index) argument
536 set(double d, int index) argument
548 getObjectParameter(int index) argument
568 getByteParameter(int index) argument
588 getCharParameter(int index) argument
608 getShortParameter(int index) argument
628 getIntParameter(int index) argument
648 getLongParameter(int index) argument
668 getFloatParameter(int index) argument
688 getDoubleParameter(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java150 * index <i>k</i> less than <code>newLength</code>, the character at
151 * index <i>k</i> in the new character sequence is the same as the
152 * character at index <i>k</i> in the old sequence if <i>k</i> is less
185 * Returns the <code>char</code> value in this sequence at the specified index.
186 * The first <code>char</code> value is at index <code>0</code>, the next at index
189 * The index argument must be greater than or equal to
192 * <p>If the <code>char</code> value specified by the index is a
196 * @param index the index o
201 charAt(int index) argument
228 codePointAt(int index) argument
256 codePointBefore(int index) argument
310 offsetByCodePoints(int index, int codePointOffset) argument
373 setCharAt(int index, char ch) argument
760 deleteCharAt(int index) argument
897 insert(int index, char[] str, int offset, int len) argument
[all...]
H A DInteger.java340 * digit at the specified index (exclusive), and working
345 static void getChars(int i, int index, char[] buf) { argument
347 int charPos = index;
944 int index = 0;
954 index++;
956 index++;
959 if (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {
960 index += 2;
963 else if (nm.startsWith("#", index)) {
[all...]
H A DLong.java276 * digit at the specified index (exclusive), and working
281 static void getChars(long i, int index, char[] buf) { argument
284 int charPos = index;
625 int index = 0;
635 index++;
637 index++;
640 if (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {
641 index += 2;
644 else if (nm.startsWith("#", index)) {
[all...]
H A DStringBuffer.java177 public synchronized char charAt(int index) { argument
178 if ((index < 0) || (index >= count))
179 throw new StringIndexOutOfBoundsException(index);
180 return value[index];
186 public synchronized int codePointAt(int index) { argument
187 return super.codePointAt(index);
193 public synchronized int codePointBefore(int index) { argument
194 return super.codePointBefore(index);
207 public synchronized int offsetByCodePoints(int index, in argument
225 setCharAt(int index, char ch) argument
377 deleteCharAt(int index) argument
419 insert(int index, char[] str, int offset, int len) argument
[all...]
H A DThrowable.java891 * @param index index of the element to return.
892 * @throws IndexOutOfBoundsException if {@code index < 0 ||
893 * index >= getStackTraceDepth() }
895 native StackTraceElement getStackTraceElement(int index); argument
/openjdk7/jdk/src/share/classes/java/net/
H A DNetworkInterface.java46 private int index; field in class:NetworkInterface
53 private static final int defaultIndex; /* index of defaultInterface */
67 * Returns an NetworkInterface object with index set to 0 and name to null.
75 NetworkInterface(String name, int index, InetAddress[] addrs) { argument
77 this.index = index;
223 * Returns the index of this network interface. The index is an integer greater
228 * @return the index of this network interface or {@code -1} if the index i
283 getByIndex(int index) argument
363 getByIndex0(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DRBCollationTables.java160 int index = mapping.elementAt(ch);
161 return getContractValuesImpl(index - CONTRACTCHARINDEX);
164 //get contract values from contractTable by index
165 private Vector getContractValuesImpl(int index) argument
167 if (index >= 0)
169 return (Vector)contractTable.elementAt(index);
220 * @param idx the index of the expanding string value list
277 final static int EXPANDCHARINDEX = 0x7E000000; // Expand index follows
H A DRBTableBuilder.java167 System.out.println("index=" + Integer.toString(j, 16)
384 int index = RBCollationTables.getEntry(entryTable, groupChars, fwd);
385 if (index != RBCollationTables.UNMAPPED) {
386 EntryPair pair = (EntryPair) entryTable.elementAt(index);
431 int index = RBCollationTables.getEntry(entryTable, groupChars, true);
432 if (index != RBCollationTables.UNMAPPED) {
433 EntryPair pair = (EntryPair) entryTable.elementAt(index);
459 int index = mapping.elementAt(ch);
460 return getContractValuesImpl(index - RBCollationTables.CONTRACTCHARINDEX);
463 private Vector getContractValuesImpl(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractList.java63 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
117 abstract public E get(int index); argument
131 public E set(int index, E element) { argument
147 public void add(int index, E element) { argument
160 public E remove(int index) { argument
227 * index)} or {@code removeRange(int fromIndex, int toIndex)} is
256 public boolean addAll(int index, Collection<? extends E> c) { argument
257 rangeCheckForAdd(index);
260 add(index++, e);
324 public ListIterator<E> listIterator(final int index) { argument
391 ListItr(int index) argument
603 rangeCheckForAdd(int index) argument
608 outOfBoundsMsg(int index) argument
632 set(int index, E element) argument
638 get(int index) argument
649 add(int index, E element) argument
657 remove(int index) argument
677 addAll(int index, Collection<? extends E> c) argument
694 listIterator(final int index) argument
753 rangeCheck(int index) argument
758 rangeCheckForAdd(int index) argument
763 outOfBoundsMsg(int index) argument
[all...]
H A DArrays.java47 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
81 * to be sorted extends from the index {@code fromIndex}, inclusive, to
82 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
92 * @param fromIndex the index of the first element, inclusive, to be sorted
93 * @param toIndex the index of the last element, exclusive, to be sorted
121 * to be sorted extends from the index {@code fromIndex}, inclusive, to
122 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
132 * @param fromIndex the index of the first element, inclusive, to be sorted
133 * @param toIndex the index of the last element, exclusive, to be sorted
161 * to be sorted extends from the index {
2865 get(int index) argument
2869 set(int index, E element) argument
[all...]
H A DEnumMap.java72 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
268 int index = key.ordinal();
269 Object oldValue = vals[index];
270 vals[index] = maskNull(value);
288 int index = ((Enum)key).ordinal();
289 Object oldValue = vals[index];
290 vals[index] = null;
299 int index = ((Enum)key).ordinal();
300 if (maskNull(value).equals(vals[index])) {
301 vals[index]
519 int index = 0; field in class:EnumMap.EnumMapIterator
583 private int index; field in class:EnumMap.EntryIterator.Entry
585 Entry(int index) argument
714 entryHashCode(int index) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java183 * index. The downside of optimizing index selection in this way
318 * The maximum slot index being used. The value sometimes
339 int index = hashIndex(); // Index of current slot
344 Slot slot = arena[index];
346 createSlot(index); // Continue loop to reread
357 if (index == 0) // Blocking wait for slot 0
366 if (m > (index >>>= 1)) // Decrease index
372 index
423 createSlot(int index) argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodBlocks.cpp346 ciBlock::ciBlock(ciMethod *method, int index, int start_bci) : argument
350 _idx(index), _flags(0), _start_bci(start_bci), _limit_bci(-1), _control_bci(fall_through_bci),
H A DciMethodBlocks.hpp51 ciBlock *block(int index) { return _blocks->at(index); } argument
93 ciBlock(ciMethod *method, int index, int start_bci);
97 int index() const { return _idx; } function in class:ciBlock
H A DciStreams.cpp161 // If this bytecodes references a klass, return the index of the
196 // If this bytecode is one of the ldc variants, get the index of the
214 // Decode any CP cache index into a regular pool index.
217 int index = get_constant_raw_index(); local
219 return get_cpcache()->get_pool_index(index);
221 return index;
226 // Return the CP cache index, or -1 if there isn't any.
254 constantTag ciBytecodeStream::get_constant_pool_tag(int index) const {
256 return _method->get_methodOop()->constants()->tag_at(index);
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.hpp42 // current iteration index.
47 DictionaryEntry* get_entry(int index, unsigned int hash,
59 void add_entry(int index, DictionaryEntry* new_entry) { argument
60 Hashtable<klassOop, mtClass>::add_entry(index, (HashtableEntry<oop, mtClass>*)new_entry);
76 klassOop find_class(int index, unsigned int hash,
79 klassOop find_shared_class(int index, unsigned int hash, Symbol* name);
108 klassOop find(int index, unsigned int hash, Symbol* name,
110 bool is_valid_protection_domain(int index, unsigned int hash,
113 void add_protection_domain(int index, unsigned int hash,
293 void add_entry(int index, SymbolPropertyEntr argument
296 set_entry(int index, SymbolPropertyEntry* new_entry) argument
[all...]
H A DloaderConstraints.cpp57 for (int index = 0; index < table_size(); index++) {
58 for (LoaderConstraintEntry* probe = bucket(index);
82 int index = hash_to_index(hash); local
83 LoaderConstraintEntry** pp = bucket_addr(index);
104 for (int index = 0; index < table_size(); index++) {
105 LoaderConstraintEntry** p = bucket_addr(index);
224 int index = hash_to_index(hash); local
[all...]
H A DstackMapFrame.cpp275 int32_t index, VerificationType type, TRAPS) {
276 if (index >= _max_locals) {
278 ErrorContext::bad_local_index(_offset, index),
282 bool subtype = type.is_assignable_from(_locals[index],
287 TypeOrigin::local(index, this),
292 if(index >= _locals_size) { _locals_size = index + 1; }
293 return _locals[index];
297 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
300 if (index >
274 get_local( int32_t index, VerificationType type, TRAPS) argument
296 get_local_2( int32_t index, VerificationType type1, VerificationType type2, TRAPS) argument
326 set_local(int32_t index, VerificationType type, TRAPS) argument
356 set_local_2( int32_t index, VerificationType type1, VerificationType type2, TRAPS) argument
[all...]
H A DstackMapFrame.hpp268 VerificationType local_at(int index) { argument
269 return _locals[index];
272 VerificationType stack_at(int index) { argument
273 return _stack[index];
279 // Return the type at index in local variable array after verifying
281 VerificationType get_local(int32_t index, VerificationType type, TRAPS);
284 int32_t index, VerificationType type1, VerificationType type2, TRAPS);
286 // Set element at index in local variable array to type.
287 void set_local(int32_t index, VerificationType type, TRAPS);
290 int32_t index, VerificationTyp
[all...]
H A DstackMapTable.cpp74 int index = get_index_from_offset(target); local
75 return match_stackmap(frame, target, index, match, update, ctx, THREAD);
79 // specified offset and frame index. Return true if the two frames match.
187 _stream->stackmap_format_error("bad class index", THREAD);
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.cpp85 st->print("vtable stub (index = %d, receiver_location = %d, code = [" INTPTR_FORMAT ", " INTPTR_FORMAT "[)",
86 index(), receiver_location(), code_begin(), code_end());
165 uint hash = VtableStubs::hash(stub->is_vtable_stub(), stub->index());
200 extern "C" void bad_compiled_vtable_index(JavaThread* thread, oop receiver, int index) { argument
208 "index %d (vtable length %d)",
209 (address)receiver, index, vt->length()));
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.inline.hpp42 // Silently clip the end index
67 // Returns the index in the liveness accounting card bitmap
73 // card table index.
89 uint index = hr->hrs_index(); local
98 marked_bytes_array[index] += region_size_bytes;
H A DdirtyCardQueue.cpp61 size_t index, size_t sz,
65 for (size_t i = index; i < sz; i += oopSize) {
204 size_t index = nd->index(); local
207 index, _sz,
213 enqueue_complete_buffer(buf, index);
59 apply_closure_to_buffer(CardTableEntryClosure* cl, void** buf, size_t index, size_t sz, bool consume, int worker_i) argument

Completed in 612 milliseconds

<<21222324252627282930>>