Searched refs:index (Results 201 - 225 of 2073) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_MidiUtils.h41 int index; // in member in struct:tag_ALSA_MIDIDeviceDescription
59 int getMidiDeviceName(snd_rawmidi_stream_t direction, int index,
63 int getMidiDeviceVendor(int index, char *name, UINT32 nameLength);
68 int getMidiDeviceDescription(snd_rawmidi_stream_t direction, int index,
72 int getMidiDeviceVersion(int index, char *name, UINT32 nameLength);
H A DPLATFORM_API_LinuxOS_ALSA_MidiUtils.h41 int index; // in member in struct:tag_ALSA_MIDIDeviceDescription
59 int getMidiDeviceName(snd_rawmidi_stream_t direction, int index,
63 int getMidiDeviceVendor(int index, char *name, UINT32 nameLength);
68 int getMidiDeviceDescription(snd_rawmidi_stream_t direction, int index,
72 int getMidiDeviceVersion(int index, char *name, UINT32 nameLength);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWListPeer.java61 public void add(String item, int index) { argument
62 addItem(item, index);
86 public void addItem(String item, int index) { argument
87 addItems(new String[] {item}, index, fm.stringWidth(item));
89 native void addItems(String[] items, int index, int width); argument
96 public native void select(int index); argument
97 public native void deselect(int index); argument
98 public native void makeVisible(int index); argument
166 int index = li.getVisibleIndex();
167 if (index <
183 isSelected(int index) argument
195 handleAction(final int index, final long when, final int modifiers) argument
206 handleListChanged(final int index) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolVisitor.java33 * The first argument is always the constant pool index.
76 * @param index the constant pool index
82 public void visitUTF8(int index, byte tag, String utf8) { argument
91 * @param index the constant pool index
100 public void visitConstantValue(int index, byte tag, Object value) { argument
105 * @param index the constant pool index
109 * @param nameIndex the index o
113 visitConstantString(int index, byte tag, String name, int nameIndex) argument
128 visitDescriptor(int index, byte tag, String memberName, String signature, int memberNameIndex, int signatureIndex) argument
147 visitMemberRef(int index, byte tag, String className, String memberName, String signature, int classNameIndex, int descriptorIndex) argument
[all...]
H A DConstantPoolPatch.java41 * Entry are referenced using index that can be get
96 /** Report the tag at the given index in the constant pool. */
97 public byte getTag(int index) { argument
98 return outer.getTag(index);
101 /** Report the current patch at the given index of the constant pool.
103 * To observe the unpatched entry at the given index, use
106 public Object getPatch(int index) { argument
107 Object value = patchArray[index];
109 switch (getTag(index)) {
130 public void clear(int index) { argument
271 checkTag(int index, byte putTag) argument
280 checkTagMask(int index, int tagBitMask) argument
303 putUTF8(int index, String utf8) argument
329 putConstantValue(int index, Object value) argument
357 putConstantValue(int index, byte tag, Object value) argument
383 putDescriptor(int index, String memberName, String signature) argument
403 putMemberRef(int index, byte tag, String className, String memberName, String signature) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DOopTreeNodeAdapter.java69 public SimpleTreeNode getChild(int index) { argument
74 if (index == 0) {
77 index -= 1;
81 Fetcher f = new Fetcher(index);
142 private int index; field in class:OopTreeNodeAdapter.Fetcher
146 public Fetcher(int index) { argument
147 this.index = index;
159 if (curField == index) {
172 if (curField == index) {
239 private int index; field in class:OopTreeNodeAdapter.Finder
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp55 for (int index = 0; index < NUMBER_OF_MEMORY_TYPE; index ++) {
56 _malloc_data[index].set_type(MemType2NameMap[index]._flag);
57 _vm_data[index].set_type(MemType2NameMap[index]._flag);
58 _arena_data[index].set_type(MemType2NameMap[index]._flag);
101 for (int index
118 int index; local
170 int index; local
427 int index; local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DSimpleContentModel.java178 * @param children The children of this element. Each integer is an index within
179 * the <code>StringPool</code> of the child element name. An index
185 * @return The value -1 if fully valid, else the 0 based index of the child
200 // If there is not a child, then report an error at index 0
209 // If more than one child, report an error at index 1
217 // then its an error at index 0.
227 // bad, so report an error at index 1.
237 // type that we stored. If not, report the index of the first
242 for (int index = 0; index < lengt
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldInfo.hpp68 static FieldInfo* from_field_array(typeArrayOop fields, int index) { argument
69 return ((FieldInfo*)fields->short_at_addr(index * field_slots));
71 static FieldInfo* from_field_array(u2* fields, int index) { argument
72 return ((FieldInfo*)(fields + index * field_slots));
91 int index = name_index(); local
93 return lookup_symbol(index);
95 return cp->symbol_at(index);
99 int index = signature_index(); local
101 return lookup_symbol(index);
103 return cp->symbol_at(index);
[all...]
H A DobjArrayKlass.inline.hpp34 void objArrayKlass::oop_follow_contents(oop obj, int index) { argument
36 objarray_follow_contents<narrowOop>(obj, index);
38 objarray_follow_contents<oop>(obj, index);
43 void objArrayKlass::objarray_follow_contents(oop obj, int index) { argument
46 const size_t beg_index = size_t(index);
47 assert(beg_index < len || len == 0, "index too large");
67 int index) {
69 objarray_follow_contents<narrowOop>(cm, obj, index);
71 objarray_follow_contents<oop>(cm, obj, index);
77 int index) {
66 oop_follow_contents(ParCompactionManager* cm, oop obj, int index) argument
76 objarray_follow_contents(ParCompactionManager* cm, oop obj, int index) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DNotificationTargetImpl.java73 final int index = target.indexOf("]");
75 if(index == -1)
78 addrStr = target.substring(1, index);
79 port = Integer.parseInt(target.substring(index + 2,
88 final int index = target.indexOf(":");
90 if(index == -1) throw new
92 addrStr = target.substring(0, index);
94 port = Integer.parseInt(target.substring(index + 1,
101 final int index = target.lastIndexOf(":");
103 community = target.substring(index
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.cpp137 int index = 0; // Defined here for portability! Do not move local
142 for (index = 0; index < table_size(); index++) {
143 for (DictionaryEntry** p = bucket_addr(index); *p != NULL; ) {
169 // do anything special with the index.
179 // do anything special with the index.
201 // do anything special with the index.
297 for (int index = 0; index < table_siz
431 int index = hash_to_index(hash); local
446 get_entry(int index, unsigned int hash, Symbol* class_name, Handle class_loader) argument
463 find(int index, unsigned int hash, Symbol* name, Handle loader, Handle protection_domain, TRAPS) argument
474 find_class(int index, unsigned int hash, Symbol* name, Handle loader) argument
487 find_shared_class(int index, unsigned int hash, Symbol* name) argument
496 add_protection_domain(int index, unsigned int hash, instanceKlassHandle klass, Handle loader, Handle protection_domain, TRAPS) argument
514 is_valid_protection_domain(int index, unsigned int hash, Symbol* name, Handle loader, Handle protection_domain) argument
549 int index = hash_to_index(hash); local
567 find_entry(int index, unsigned int hash, Symbol* sym, intptr_t sym_mode) argument
580 add_entry(int index, unsigned int hash, Symbol* sym, intptr_t sym_mode) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DArrayReferenceImpl.java72 public Value getValue(int index) { argument
73 List list = getValues(index, 1);
86 private void validateArrayAccess(int index, int length) { argument
87 // because length can be computed from index,
88 // index must be tested first for correct error message
89 if ((index < 0) || (index > length())) {
91 "Invalid array index: " + index);
97 if (index
109 getValues(int index, int length) argument
128 setValue(int index, Value value) argument
142 setValues(int index, List<? extends Value> values, int srcIndex, int length) argument
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_monitor.c78 get_pkey(MonitorIndex index) argument
83 table_get_key(gdata->monitor_table, index, &key_ptr, &key_len);
90 get_info(MonitorIndex index) argument
94 HPROF_ASSERT(index!=0);
95 info = (MonitorInfo*)table_get_info(gdata->monitor_table, index);
105 MonitorIndex index; local
120 index = table_find_or_create_entry(gdata->monitor_table, &key,
122 return index;
126 cleanup_item(MonitorIndex index, void *key_ptr, int key_len, void *info_ptr, void *arg) argument
131 list_item(TableIndex index, voi argument
153 collect_iterator(MonitorIndex index, void *key_ptr, int key_len, void *info_ptr, void *arg) argument
193 clear_item(MonitorIndex index, void *key_ptr, int key_len, void *info_ptr, void *arg) argument
283 MonitorIndex index; local
308 MonitorIndex index; local
338 MonitorIndex index; local
358 MonitorIndex index; local
379 MonitorIndex index; local
406 MonitorIndex index; local
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp282 for (idx_t index = 0; index < size_in_words(); index++) {
283 bm_word_t word_union = dest_map[index] | other_map[index];
284 // If this has more bits set than dest_map[index], then other is not a
286 if (word_union != dest_map[index]) return false;
296 for (idx_t index = 0; index < size_in_words(); index
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DUtil.java46 final int index = name.lastIndexOf('.');
47 return name.substring(0, index >= 0 ? index : name.length());
55 int index = name.lastIndexOf('\\');
56 if (index < 0) {
57 index = name.lastIndexOf('/');
60 if (index >= 0)
61 return name.substring(index + 1);
76 int index = name.lastIndexOf('/');
77 if (index <
[all...]
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DStreamReaderDelegate.java156 public QName getAttributeName(int index) { argument
157 return reader.getAttributeName(index);
160 public String getAttributePrefix(int index) { argument
161 return reader.getAttributePrefix(index);
164 public String getAttributeNamespace(int index) { argument
165 return reader.getAttributeNamespace(index);
168 public String getAttributeLocalName(int index) { argument
169 return reader.getAttributeLocalName(index);
172 public String getAttributeType(int index) { argument
173 return reader.getAttributeType(index);
176 getAttributeValue(int index) argument
180 isAttributeSpecified(int index) argument
188 getNamespacePrefix(int index) argument
192 getNamespaceURI(int index) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/toa/
H A DTransientObjectManager.java74 int index = ORBUtility.bytesToInt(transientKey,0);
78 dprint( "lookupServant called with index=" + index + ", counter=" + counter ) ;
80 if (elementArray[index].counter == counter &&
81 elementArray[index].valid ) {
84 return elementArray[index].servant;
95 int index = ORBUtility.bytesToInt(transientKey,0);
99 dprint( "lookupServantData called with index=" + index + ", counter=" + counter ) ;
101 if (elementArray[index]
158 int index=-1; field in class:Element
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/util/
H A DStAXParserWrapper.java110 public QName getAttributeName(int index) { argument
111 return _reader.getAttributeName(index);
128 public String getAttributePrefix(int index) { argument
129 return _reader.getAttributePrefix(index);
131 public String getAttributeNamespace(int index) { argument
132 return _reader.getAttributeNamespace(index);
134 public String getAttributeLocalName(int index) { argument
135 return _reader.getAttributeLocalName(index);
137 public String getAttributeType(int index) { argument
138 return _reader.getAttributeType(index);
140 getAttributeValue(int index) argument
143 isAttributeSpecified(int index) argument
150 getNamespacePrefix(int index) argument
153 getNamespaceURI(int index) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderFilter.java132 public boolean isAttributeSpecified(int index) { argument
133 return reader.isAttributeSpecified(index);
180 public String getAttributeLocalName(int index) { argument
181 return reader.getAttributeLocalName(index);
184 public String getAttributeNamespace(int index) { argument
185 return reader.getAttributeNamespace(index);
188 public String getAttributePrefix(int index) { argument
189 return reader.getAttributePrefix(index);
192 public String getAttributeType(int index) { argument
193 return reader.getAttributeType(index);
196 getAttributeValue(int index) argument
200 getNamespacePrefix(int index) argument
204 getNamespaceURI(int index) argument
216 getAttributeName(int index) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DStackMapType.java75 private int index = -1; // Index to CONSTANT_Class or offset field in class:StackMapType
95 * @param index index to constant pool, or byte code offset
97 public StackMapType(byte type, int index, ConstantPool constant_pool) { argument
99 setIndex(index);
110 public void setIndex(int t) { index = t; }
112 /** @return index to constant pool if type == ITEM_Object, or offset
115 public int getIndex() { return index; }
139 return ", class=" + constant_pool.constantToString(index, Constants.CONSTANT_Class);
141 return ", offset=" + index;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLAttributes.java108 * @return Returns the attribute index.
122 * Removes the attribute at the specified index.
125 * attributes following the attribute at the specified index.
127 * @param attrIndex The attribute index.
146 * Look up the index of an attribute by XML 1.0 qualified name.
150 * @return The index of the attribute, or -1 if it does not
156 * Look up the index of an attribute by Namespace name.
162 * @return The index of the attribute, or -1 if it does not
168 * Sets the name of the attribute at the specified index.
170 * @param attrIndex The attribute index
189 getPrefix(int index) argument
202 getURI(int index) argument
215 getLocalName(int index) argument
228 getQName(int index) argument
231 getQualifiedName(int index) argument
271 getType(int index) argument
331 getValue(int index) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DValueRepositoryId.java49 private int index; // Current index in the 'logical' sequence field in class:ValueRepositoryId
61 index = 0;
74 index++;
82 types.put (entry, new Integer (index));
94 Object index = types.get (entry);
95 if (index == null)
101 addValue (((Integer)index).intValue ());
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultSingleSelectionModel.java56 private int index = -1; field in class:DefaultSingleSelectionModel
60 return index;
64 public void setSelectedIndex(int index) { argument
65 if (this.index != index) {
66 this.index = index;
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicIterator.java39 int index; field in class:CubicIterator
61 return (index > 1);
70 index++;
96 if (index == 0) {
110 affine.transform(coords, 0, coords, 0, index == 0 ? 1 : 3);
138 if (index == 0) {
152 affine.transform(coords, 0, coords, 0, index == 0 ? 1 : 3);

Completed in 81 milliseconds

1234567891011>>