Searched defs:index (Results 276 - 300 of 1255) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSSStyleDeclaration.java93 * property index.
108 * property index.
119 * property index.
136 * property index.
150 * property index.
178 * @param index Index of the property name to retrieve.
182 public String item(int index); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DBuiltInEncodingAlgorithmFactory.java68 public static BuiltInEncodingAlgorithm getAlgorithm(int index) { argument
69 return table[index];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DWrapperParameter.java58 public WrapperParameter(JavaMethodImpl parent, TypeReference typeRef, Mode mode, int index) { argument
59 super(parent, typeRef, mode, index);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DAttributes.java56 * Return true if the attribute at the given index is a namespace
63 public boolean isNamespaceDeclaration(int index); argument
66 * Look up an attribute's QName by index.
69 public QName getName(int index); argument
72 * Look up an attribute's URI by index.
75 public String getURI(int index); argument
78 * Look up an attribute's local name by index.
82 public String getLocalName(int index); argument
85 * Look up an attribute's prefix by index.
88 public String getPrefix(int index); argument
94 getValue(int index) argument
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A DNetworkInterface.h45 DWORD dwIndex; /* Internal index */
47 int index; /* Friendly index */ member in struct:_netif
66 extern jfieldID ni_indexID; /* NetworkInterface.index */
/openjdk7/jdk/test/com/sun/jdi/
H A DLocalVariableEqual.java144 void printVariable(LocalVariable lv, int index) throws Exception { argument
150 println(" Var: " + lv.name() + ", index: " + index + ", type: " + tyname +
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4498236.java53 test("[propertyName=array; index=5; oldValue=old; newValue=new; propagationId=null; source=source]",
124 test("[name=index; propertyType=class [I; readMethod=public int[] Test4498236.getIndex(); writeMethod=public void Test4498236.setIndex(int[]); indexedPropertyType=int; indexedReadMethod=public int Test4498236.getIndex(int); indexedWriteMethod=public void Test4498236.setIndex(int,int)]",
125 new IndexedPropertyDescriptor("index", Test4498236.class)
172 public int getIndex(int index) { argument
176 public void setIndex(int index, int value) { argument
/openjdk7/jdk/test/java/lang/instrument/
H A DParallelTransformerLoaderAgent.java107 loadClasses( int index) argument
112 Class.forName("TestClass" + index, true, loader);
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DSetOutgoingIf.java71 int index = 1;
90 netIf.index(index++);
110 int NetIfIndex = netIf.index();
220 private int index; field in class:NetIf
252 int index() { method in class:NetIf
253 return index;
256 void index(int index) { argument
257 this.index
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DLocalVariableTable_attribute.java71 index = cr.readUnsignedShort();
82 public final int index; field in class:LocalVariableTable_attribute.Entry
H A DLocalVariableTypeTable_attribute.java71 index = cr.readUnsignedShort();
82 public final int index; field in class:LocalVariableTypeTable_attribute.Entry
/openjdk7/jdk/src/share/native/com/sun/media/sound/
H A DMidiOutDevice.c48 Java_com_sun_media_sound_MidiOutDevice_nOpen(JNIEnv* e, jobject thisObj, jint index) { argument
53 TRACE1("Java_com_sun_media_sound_MidiOutDevice_nOpen: index: %d\n", index);
56 err = MIDI_OUT_OpenDevice((INT32) index, (MidiDeviceHandle**) (&deviceHandle));
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DCanonShaping.cpp40 void CanonShaping::sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit) argument
42 for (le_int32 j = index + 1; j < limit; j += 1) {
47 for (i = j - 1; i >= index; i -= 1) {
96 le_int32 index = indices[i]; local
98 outChars[i] = inChars[index];
99 glyphStorage.setCharIndex(out, index, success);
H A DContextualGlyphSubstProc.cpp69 ByteOffset ContextualGlyphSubstitutionProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index) argument
72 const ContextualGlyphSubstitutionStateEntry *entry = entryTable.getAlias(index, success);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabInputStream.java52 int index; field in class:KeyTabInputStream
66 index = entryLen;
67 if (index == 0) { //in native implementation, when the last entry is deleted, a byte 0 is left.
70 if (index < 0) { //in native implementation, when one of the entries is deleted, the entry length turns to be negative, and
71 skip(Math.abs(index)); //the fields are left with 0 bytes
75 index -= 2;
85 index -= 4;
91 index -= 1;
93 index -= 2;
95 index
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/util/
H A DKerberosFlags.java80 public void set(int index, boolean value) { argument
81 bits.set(index, value);
84 public boolean get(int index) { argument
85 return bits.get(index);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DVertex.java54 private int index; field in class:Vertex
58 * Constructor; creates vertex with index of -1
59 * Use setIndex method to set another index.
65 this.index = -1;
78 * get the index for this vertex, where the index is the row of the
82 * @returns int index for this vertex, or -1 if no following certificates.
85 return index;
89 * set the index for this vertex, where the index i
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralNames.java88 public GeneralName get(int index) { argument
89 return names.get(index);
/openjdk7/jdk/src/share/classes/sun/text/
H A DCodePointIterator.java72 private int index; field in class:CharArrayCodePointIterator
85 this.start = this.index = start;
90 index = start;
94 index = limit;
98 if (index < limit) {
99 char cp1 = text[index++];
100 if (Character.isHighSurrogate(cp1) && index < limit) {
101 char cp2 = text[index];
103 ++index;
113 if (index > star
134 private int index; field in class:CharSequenceCodePointIterator
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java110 public void setIndex(int index) { argument
111 iterator.setIndex(index);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java50 public int index(Object obj) { method in class:ConstantPool
51 return ((ConstantPoolData)hash.get(obj)).index;
85 int index = 1, count = 0;
100 // Assign an index to each constant pool item
103 data.index = index;
104 index += data.width();
108 out.writeShort(index);
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DOptionFormat.java66 public OptionFormat getSubFormat(int index) { argument
67 return children.get(index);
70 public void insertSubFormat(int index, OptionFormat f) { argument
71 children.add(index, f);
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DDecimalFormatSymbolsProviderImpl.java65 for (int index = 0; index < avail.length; index ++) {
66 if (Utils.supportsLocale(avail[index], locale)) {
67 fdfs = new FooDecimalFormatSymbols(index);
82 public FooDecimalFormatSymbols(int index) { argument
83 super(DecimalFormatSymbolsProviderImpl.this.avail[index]);
84 dialect = DecimalFormatSymbolsProviderImpl.this.dialect[index];
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DTest6325652.java95 private static JInternalFrame create(int index) { argument
96 String text = "test" + index; // NON-NLS: frame identification
97 index = index * 3 + 1;
101 internal.setBounds(10 * index, 10 * index, WIDTH, HEIGHT);
/openjdk7/jdk/test/javax/swing/border/
H A DTest6981576.java45 private int index; field in class:Test6981576
69 if (this.index == this.infos.length) {
73 LookAndFeelInfo info = this.infos[this.index % this.infos.length];
83 this.index++;

Completed in 71 milliseconds

<<11121314151617181920>>