Searched defs:index (Results 726 - 750 of 1255) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphVector.java156 * @param glyphIndex the index into this <code>GlyphVector</code>
174 * @param beginGlyphIndex the index into this
193 * Returns the character index of the specified glyph.
194 * The character index is the index of the first logical
198 * @param glyphIndex the index of the glyph
199 * @return the index of the first character represented by the glyph
208 * The character index is the index of the first logical
216 * @param beginGlyphIndex the index o
559 getGlyphPixelBounds(int index, FontRenderContext renderFRC, float x, float y) argument
[all...]
H A DStyledParagraph.java70 // decorationStarts[i] contains the index where decoration i
81 // fontStarts[i] contains the index where decoration i
100 int index = start;
105 final int localIndex = index-start;
121 index = nextRunStart;
123 } while (index < end);
138 * Any index in starts greater than pos will be increased by 1.
155 * @param insertPos the index of the new character in aci
203 * Any index in starts greater than deleteAt will be increased by 1.
222 * @param deletePos the index wher
268 getRunLimit(int index) argument
291 getDecorationAt(int index) argument
310 getFontOrGraphicAt(int index) argument
327 findRunContaining(int index, int[] starts) argument
342 addToVector(Object obj, int index, Vector v, int[] starts) argument
364 addDecoration(Decoration d, int index) argument
391 addFont(Object f, int index) argument
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_CodeStubs_sparc.cpp40 RangeCheckStub::RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, argument
43 , _index(index)
303 assert(_oop_index >= 0, "must have oop index");
H A Dc1_MacroAssembler_sparc.cpp204 void C1_MacroAssembler::initialize_body(Register base, Register index) { argument
205 assert_different_registers(base, index);
208 subcc(index, HeapWordSize, index);
210 delayed()->st_ptr(G0, base, index);
289 const Register index = t2; local
291 // compute index = number of words to clear
292 set(con_size_in_bytes - hdr_size_in_bytes, index);
293 initialize_body(base, index);
360 const Register index local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp91 RangeCheckStub::RangeCheckStub(CodeEmitInfo* info, LIR_Opr index, argument
94 , _index(index)
103 // pass the array index on stack because all registers must be preserved
H A Dc1_MacroAssembler_x86.cpp187 Register index = len_in_bytes; local
188 // index is positive and ptr sized
189 subptr(index, hdr_size_in_bytes);
191 // initialize topmost word, divide index by 2, check if odd and test if zero
192 // note: for the remaining code to work, index must be a multiple of BytesPerWord
195 testptr(index, BytesPerWord - 1);
197 stop("index is not a multiple of BytesPerWord");
203 shrptr(index, 3); // divide by 8/16 and set carry flag if bit 2 was set
205 shrptr(index, 2); // use 2 instructions to avoid partial flag stall
206 shrptr(index,
255 const Register index = t2; local
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dframe_zero.cpp183 int index = (Interpreter::expr_offset_in_bytes(offset) / wordSize); local
184 return &interpreter_frame_tos_address()[index];
399 int index = last_index - (addr - stack_base) / monitor_size; local
401 (BasicObjectLock *) monitor_base - 1 - index);
405 snprintf(fieldbuf, buflen, "monitor[%d]->_obj", index);
407 snprintf(fieldbuf, buflen, "monitor[%d]->_lock", index);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputGraph.java127 int index = list.indexOf(this);
128 if (index == list.size() - 1) {
131 return list.get(index + 1);
140 int index = list.indexOf(this);
141 if (index == 0) {
144 return list.get(index - 1);
180 public InputNode removeNode(int index) { argument
181 return nodes.remove(index);
H A DProperties.java312 int index; field in class:Properties.PropertiesIterator
315 while (index < map.length && map[index + 1] == null)
316 index += 2;
317 return index < map.length;
321 if (index < map.length) {
322 index += 2;
323 return new Property(map[index - 2], map[index - 1]);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DFigure.java185 public InputSlot createInputSlot(int index) { argument
186 InputSlot slot = new InputSlot(this, index);
214 public OutputSlot createOutputSlot(int index) { argument
215 OutputSlot slot = new OutputSlot(this, index);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java334 int index; field in class:ServerCompilerScheduler.BlockIntermediate
387 bi.index = z;
407 int index = stack.pop();
408 BlockIntermediate ib = intermediate.get(index);
415 succ.parent = index;
416 stack.push(succ.index); // TODO: check if same node could be pushed twice
418 succ.pred.add(index);
424 int block_index = block.index;
462 int block_index = block.index;
467 if (block.dominator != semi_block.index) {
494 compress(int index, Vector<BlockIntermediate> blocks) argument
517 eval(int index, Vector<BlockIntermediate> blocks) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java116 private int getXPosition(int index) { argument
117 assert index >= 0 && index < getPaintingModel().getPositions().size();
118 return getXOffset() * (index + 1);
127 private int getEndXPosition(int index) { argument
128 return getXPosition(index) + getXOffset() / 2;
131 private int getStartXPosition(int index) { argument
132 return getXPosition(index) - getXOffset() / 2;
319 int index = getCircleIndexFromPosition(e.getPoint().x);
320 model.setPositions(index, inde
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CFGPrinter.cpp179 int index; local
187 for_each_local_value(state, index, value) {
188 ip.print_phi(index, value, block);
199 for_each_stack_value(state, index, value) {
200 ip.print_phi(index, value, block);
213 for_each_lock_value(state, index, value) {
214 ip.print_phi(index, value, block);
H A Dc1_FrameMap.cpp246 bool FrameMap::locations_for_slot (int index, Location::Type loc_type, argument
248 ByteSize offset_from_sp = sp_offset_for_slot(index);
265 ByteSize FrameMap::sp_offset_for_slot(const int index) const {
266 if (index < argcount()) {
267 int offset = _argument_locations->at(index);
272 ByteSize offset = sp_offset_for_spill(index - argcount());
278 ByteSize FrameMap::sp_offset_for_double_slot(const int index) const {
279 ByteSize offset = sp_offset_for_slot(index);
280 if (index >= argcount()) {
287 ByteSize FrameMap::sp_offset_for_spill(const int index) cons
[all...]
H A Dc1_ValueStack.cpp88 int index; local
90 for_each_stack_value(this, index, value) {
91 if (value->type()->tag() != s->stack_at(index)->type()->tag()) return false;
93 for_each_lock_value(this, index, value) {
94 if (value != s->lock_at(index)) return false;
176 void ValueStack::setup_phi_for_stack(BlockBegin* b, int index) { argument
177 assert(stack_at(index)->as_Phi() == NULL || stack_at(index)->as_Phi()->block() != b, "phi function already created");
179 ValueType* t = stack_at(index)->type();
180 Value phi = new Phi(t, b, -index
186 setup_phi_for_local(BlockBegin* b, int index) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharacterCategory.java293 int index;
294 for (index = 0; index < categoryNames.length; index++) {
295 if (category.equals(categoryNames[index])) {
300 if (index != categoryNames.length) {
302 if (prevIndex != index) {
304 appendOldChar(index, curCodeValue, code);
305 prevIndex = index;
311 appendOldChar(index, curCodeValu
336 appendOldChar(int index, int code, String s) argument
510 appendNewChar(int index, int code) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DTimezone.java412 * table and returns its index. The offset value includes the base
415 * its index is returned.
417 * @return the index to the offset value in the GMT offsets table.
425 * table and returns its index. If the same value as the specified
426 * offset is already in the table, its index is returned. If 0 is
429 * @return the index to the specified offset value in the GMT
439 private int getOffsetIndex(int offset, int index) { argument
443 for (int i = index; i < gmtOffsets.size(); i++) {
448 if (gmtOffsets.size() < index) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenMenuBar.java265 public Menu add(final Menu m, final int index) { argument
276 menus.insertElementAt(m, index);
283 peer.setNextInsertionIndex(index);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWListPeer.java81 public void add(final String item, final int index) { argument
83 getDelegate().getModel().add(index, item);
105 public void select(final int index) { argument
108 getDelegate().getView().setSelectedIndex(index);
114 public void deselect(final int index) { argument
117 removeSelectionInterval(index, index);
122 public void makeVisible(final int index) { argument
124 getDelegate().getView().ensureIndexIsVisible(index);
171 public void add(final int index, fina
[all...]
/openjdk7/jdk/src/macosx/classes/sun/nio/ch/
H A DKQueueArrayWrapper.java121 int getReventOps(int index) { argument
123 int offset = SIZEOF_KEVENT*index + FILTER_OFFSET;
138 int getDescriptor(int index) { argument
139 int offset = SIZEOF_KEVENT*index + FD_OFFSET;
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Utils.cpp106 AudioDeviceID DeviceList::GetDeviceID(int index) { argument
108 return index < 0 ? 0 : index >= count ? 0 : devices[index];
111 bool DeviceList::GetDeviceInfo(int index, AudioDeviceID *pDeviceID, int stringLength, char *name, char *vendor, char *description, char *version) { argument
113 if (index < 0 || index >= count) {
117 AudioDeviceID deviceID = devices[index];
/openjdk7/jdk/src/share/back/
H A DArrayReferenceImpl.c71 jarray array, jint index, jint length)
78 JNI_FUNC_PTR(env,GetBooleanArrayRegion)(env, array, index, length, components);
88 jarray array, jint index, jint length)
95 JNI_FUNC_PTR(env,GetByteArrayRegion)(env, array, index, length, components);
105 jarray array, jint index, jint length)
112 JNI_FUNC_PTR(env,GetCharArrayRegion)(env, array, index, length, components);
122 jarray array, jint index, jint length)
129 JNI_FUNC_PTR(env,GetShortArrayRegion)(env, array, index, length, components);
139 jarray array, jint index, jint length)
146 JNI_FUNC_PTR(env,GetIntArrayRegion)(env, array, index, lengt
70 writeBooleanComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
87 writeByteComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
104 writeCharComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
121 writeShortComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
138 writeIntComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
155 writeLongComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
172 writeFloatComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
189 writeDoubleComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
206 writeObjectComponents(JNIEnv *env, PacketOutputStream *out, jarray array, jint index, jint length) argument
234 jint index; local
342 readBooleanComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
356 readByteComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
370 readCharComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
384 readShortComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
398 readIntComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
412 readLongComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
426 readFloatComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
440 readDoubleComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
455 readObjectComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
482 jint index; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java308 int index = 0;
311 index ++;
315 findPaletteEntry(root, index, red, green, blue);
327 protected int findPaletteEntry(ColorNode aNode, int index, argument
331 red[index] = (byte)(aNode.red/aNode.colorCount);
332 green[index] = (byte)(aNode.green/aNode.colorCount);
333 blue[index] = (byte)(aNode.blue/aNode.colorCount);
334 aNode.paletteIndex = index;
336 palette[index] = aNode;
338 index
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.cpp78 int index = 0; local
79 while (index < _pops->length()) {
80 JvmtiFramePop pop = JvmtiFramePop(_pops->at(index));
82 _pops->remove_at(index);
85 ++index;
H A DjvmtiGetLoadedClasses.cpp122 Handle get_element(int index) { argument
123 if ((_list != NULL) && (index < _count)) {
124 return _list[index];
131 void set_element(int index, Handle value) { argument
132 if ((_list != NULL) && (index < _count)) {
133 _list[index] = value;
163 for (int index = 0; index < _count; index += 1) {
164 result[index]
[all...]

Completed in 135 milliseconds

<<21222324252627282930>>