Searched defs:index (Results 401 - 425 of 1255) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/runtime/
H A Dtask.cpp81 for(int index = 0; index < _num_tasks; index++) {
82 _tasks[index]->execute_if_pending(delay_time);
84 index--; // re-do current slot as it has changed
100 for (int index = 1; index < _num_tasks; index++) {
101 delay = MIN2(delay, _tasks[index]->time_to_next_interval());
145 int index; local
[all...]
H A Dvframe_hp.hpp58 void update_local(BasicType type, int index, jvalue value);
125 jvmtiDeferredLocalVariable(int index, BasicType type, jvalue value);
128 int index(void) { return _index; } function in class:jvmtiDeferredLocalVariable
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCacheDecache.cpp58 void SharkDecacher::process_stack_slot(int index, argument
64 if (stack_slot_needs_write(index, value)) {
72 if (stack_slot_needs_oopmap(index, value)) {
77 if (stack_slot_needs_debuginfo(index, value)) {
78 exparray()->append(slot2lv(offset, stack_location_type(index, addr)));
87 void SharkDecacher::process_monitor(int index, int box_offset, int obj_offset) { argument
128 void SharkDecacher::process_local_slot(int index, argument
134 if (local_slot_needs_write(index, value)) {
142 if (local_slot_needs_oopmap(index, value)) {
147 if (local_slot_needs_debuginfo(index, valu
169 process_stack_slot(int index, SharkValue** addr, int offset) argument
185 process_monitor(int index, int box_offset, int obj_offset) argument
216 process_local_slot(int index, SharkValue** addr, int offset) argument
240 process_local_slot(int index, SharkValue** addr, int offset) argument
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DelfFile.cpp117 for (int index = 0; index < m_elfHdr.e_shnum; index ++) {
124 ElfStringTable* table = new (std::nothrow) ElfStringTable(m_file, shdr, index);
191 ElfStringTable* ElfFile::get_string_table(int index) { argument
194 if (p->index() == index) return p;
206 for (int index = 0; index < m_elfHdr.e_phnum; index
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLTableRowElement.java52 * The index of this row, relative to the entire table, starting from 0.
61 * The index of this row, relative to the current section (
109 * <code>index</code> is equal to the number of cells, the new cell is
111 * @param index The place to insert the cell, starting from 0.
114 * INDEX_SIZE_ERR: Raised if the specified <code>index</code> is
115 * greater than the number of cells or if the index is negative.
117 public HTMLElement insertCell(int index) argument
122 * @param index The index of the cell to delete, starting from 0.
124 * INDEX_SIZE_ERR: Raised if the specified <code>index</cod
128 deleteCell(int index) argument
[all...]
H A DHTMLTableSectionElement.java87 * before the current <code>index</code> th row in this section. If
88 * <code>index</code> is equal to the number of rows in this section, the
90 * @param index The row number where to insert a new row. This index
95 * INDEX_SIZE_ERR: Raised if the specified index is greater than the
96 * number of rows of if the index is neagative.
98 public HTMLElement insertRow(int index) argument
103 * @param index The index of the row to be deleted. This index start
110 deleteRow(int index) argument
[all...]
/openjdk7/jaxp/src/org/w3c/dom/xpath/
H A DXPathResult.java224 * Returns the <code>index</code>th item in the snapshot collection. If
225 * <code>index</code> is greater than or equal to the number of nodes in
229 * @param index Index into the snapshot collection.
230 * @return The node at the <code>index</code>th position in the
232 * index.
238 public Node snapshotItem(int index) argument
/openjdk7/jaxp/src/org/xml/sax/ext/
H A DAttributes2Impl.java106 public boolean isDeclared (int index) argument
108 if (index < 0 || index >= getLength ())
110 "No attribute at index: " + index);
111 return declared [index];
121 int index = getIndex (uri, localName);
123 if (index < 0)
127 return declared [index];
137 int index
154 isSpecified(int index) argument
281 removeAttribute(int index) argument
306 setDeclared(int index, boolean value) argument
325 setSpecified(int index, boolean value) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DIntArrayData.java86 public char charAt(int index) { argument
87 return getLiteral().charAt(index);
H A DIntData.java79 public char charAt(int index) { argument
80 return toString().charAt(index);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DQualifiedName.java37 public int index; field in class:QualifiedName
52 this.index = -1;
63 this.index = -1;
70 public QualifiedName(String prefix, String namespaceName, String localName, String qName, int index) { argument
75 this.index = index;
81 public final QualifiedName set(String prefix, String namespaceName, String localName, String qName, int index) { argument
86 this.index = index;
94 public QualifiedName(String prefix, String namespaceName, String localName, String qName, int index, argument
106 set(String prefix, String namespaceName, String localName, String qName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
204 QualifiedName(String prefix, String namespaceName, String localName, int index) argument
215 set(String prefix, String namespaceName, String localName, int index) argument
228 QualifiedName(String prefix, String namespaceName, String localName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
240 set(String prefix, String namespaceName, String localName, int index, int prefixIndex, int namespaceNameIndex, int localNameIndex) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArray.java151 public final char charAt(int index) { argument
152 return ch[start + index];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBASE64DecoderStream.java49 private int index = 0; // index into the cache field in class:BASE64DecoderStream
74 if (index >= bufsize) {
78 index = 0; // reset index into buffer
80 return buffer[index++] & 0xff; // Zero off the MSB
128 return ((in.available() * 3)/4 + (bufsize-index));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEMessage.java103 * @param index sequential order of the part. starts with zero.
106 public MIMEPart getPart(int index) { argument
107 LOGGER.fine("index="+index);
108 MIMEPart part = (index < partsList.size()) ? partsList.get(index) : null;
110 throw new MIMEParsingException("There is no "+index+" attachment part ");
115 partsList.add(index, part);
117 LOGGER.fine("Got attachment at index="+index
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLPartImpl.java42 private int index; field in class:WSDLPartImpl
45 public WSDLPartImpl(XMLStreamReader xsr, String partName, int index, WSDLPartDescriptor descriptor) { argument
49 this.index = index;
67 return index;
70 //need to set the index in case of rpclit to reorder the body parts
71 public void setIndex(int index){ argument
72 this.index = index;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DItem.java73 int index; field in class:Item
143 * @param index index of the item to be constructed.
145 Item(final int index) { argument
146 this.index = index;
152 * @param index index of the item to be constructed.
155 Item(final int index, final Item i) { argument
156 this.index
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapterList.java102 public T get(int index) { argument
103 return adapters.get(index);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DHashtable.h42 int index; member in class:HashtableEnumerator
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DMangleTest.java113 Location getLoc(int index, List locList) { argument
114 return ((Location)(locList.get(index)));
117 void lineMatch(int index, String stratum, Location loc, int line) { argument
120 failure("FAIL: index=" + index +
126 void lineMatch(int index, Location loc, argument
128 lineMatch(index, "Java", loc, javaLine);
129 lineMatch(index, "XYZ", loc, xyzLine);
130 lineMatch(index, "Rats", loc, ratsLine);
/openjdk7/jdk/test/java/beans/Introspector/6976577/test/
H A DAccessor.java74 public int getIndexed(int index) { argument
75 return this.indexed[index];
78 public void setIndexed(int index, int value) { argument
79 this.indexed[index] = value;
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4619536.java140 public Child getFoo(int index) { argument
H A DTest6194788.java38 test(Grand.class, new PropertyDescriptor("index", Grand.class));
67 public void setIndex(int index) { argument
70 public String getName(int index) { argument
74 public void setName(int index, String name) { argument
89 public void setParentIndex(int index) { argument
96 public String getParentName(int index) { argument
103 public void setParentName(int index, String name) { argument
112 public void setChildIndex(int index) { argument
119 public String getChildName(int index) { argument
126 public void setChildName(int index, Strin argument
[all...]
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTest4353056.java66 private int index = -1; field in class:Test4353056
79 * @param index the property index
82 public void setColor(int index, Color color) { argument
86 this.index = index;
89 this.pcs.fireIndexedPropertyChange(COLOR, index,
96 * @param index the property index
99 public void setBoolean(int index, boolea argument
116 setInteger(int index, int value) argument
[all...]
H A DTestMethods.java108 public void fireIndexedPropertyChange(String property, int index, Object oldValue, Object newValue) { argument
113 super.fireIndexedPropertyChange(property, index, oldValue, newValue);
117 public void fireIndexedPropertyChange(String property, int index, int oldValue, int newValue) { argument
122 super.fireIndexedPropertyChange(property, index, oldValue, newValue);
126 public void fireIndexedPropertyChange(String property, int index, boolean oldValue, boolean newValue) { argument
131 super.fireIndexedPropertyChange(property, index, oldValue, newValue);
H A DTestSerialization.java95 private static void check(PropertyChangeListener listener, int index) { argument
100 if (index != object.index)
101 throw new Error("Unexpected index: " + index + " != " + object.index);
104 private static void check(PropertyChangeListener listener, int index, String name) { argument
112 check((PropertyChangeListener)object.getListener(), index);
170 private int index; field in class:TestSerialization
172 public TestSerialization(int index) { argument
[all...]

Completed in 1973 milliseconds

<<11121314151617181920>>