Searched defs:index (Results 1 - 25 of 110) sorted by relevance

12345

/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementationList.java19 * <code>DOMImplementationList</code> are accessible via an integral index,
26 * Returns the <code>index</code>th item in the collection. If
27 * <code>index</code> is greater than or equal to the number of
30 * @param index Index into the collection.
31 * @return The <code>DOMImplementation</code> at the <code>index</code>
33 * <code>null</code> if that is not a valid index.
35 public DOMImplementation item(int index); argument
H A DNodeList.java20 * index, starting from 0.
25 * Returns the <code>index</code>th item in the collection. If
26 * <code>index</code> is greater than or equal to the number of nodes in
28 * @param index Index into the collection.
29 * @return The node at the <code>index</code>th position in the
31 * index.
33 public Node item(int index); argument
H A DDOMStringList.java19 * <code>DOMStringList</code> are accessible via an integral index, starting
26 * Returns the <code>index</code>th item in the collection. If
27 * <code>index</code> is greater than or equal to the number of
29 * @param index Index into the collection.
30 * @return The <code>DOMString</code> at the <code>index</code>th
32 * that is not a valid index.
34 public String item(int index); argument
H A DNameList.java20 * integral index, starting from 0.
26 * Returns the <code>index</code>th name item in the collection.
27 * @param index Index into the collection.
28 * @return The name at the <code>index</code>th position in the
30 * the specified index or if the index is out of range.
32 public String getName(int index); argument
35 * Returns the <code>index</code>th namespaceURI item in the collection.
36 * @param index Index into the collection.
37 * @return The namespace URI at the <code>index</cod
41 getNamespaceURI(int index) argument
[all...]
/libcore/luni/src/main/java/java/beans/
H A DIndexedPropertyChangeEvent.java28 private final int index; field in class:IndexedPropertyChangeEvent
32 * index.
47 * @param index
48 * the index of the property.
51 Object oldValue, Object newValue, int index) {
53 this.index = index;
57 * Returns the index of the property that was changed in this event.
60 return index;
50 IndexedPropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, int index) argument
/libcore/luni/src/main/java/java/lang/
H A DArrayIndexOutOfBoundsException.java38 * {@code index}.
40 * @param index
41 * the invalid index.
43 public ArrayIndexOutOfBoundsException(int index) { argument
44 super("index=" + index);
62 public ArrayIndexOutOfBoundsException(int sourceLength, int index) { argument
63 super("length=" + sourceLength + "; index=" + index);
H A DCharSequence.java35 * Returns the character at {@code index}.
36 * @throws IndexOutOfBoundsException if {@code index < 0} or {@code index >= length()}.
38 public char charAt(int index); argument
41 * Returns a {@code CharSequence} from the {@code start} index (inclusive)
42 * to the {@code end} index (exclusive) of this sequence.
46 * is, the index of the first character that is included in the
50 * the index of the first character after those that are included
H A DStringIndexOutOfBoundsException.java38 * {@code index}.
40 * @param index
41 * the index which is out of bounds.
43 public StringIndexOutOfBoundsException(int index) { argument
44 super("String index out of range: " + index);
62 public StringIndexOutOfBoundsException(String s, int index) { argument
63 this(s.length(), index);
70 public StringIndexOutOfBoundsException(int sourceLength, int index) { argument
71 super("length=" + sourceLength + "; index
[all...]
H A DCaseMapper.java81 * True if 'index' is preceded by a sequence consisting of a cased letter and a case-ignorable
82 * sequence, and 'index' is not followed by a sequence consisting of an ignorable sequence and
85 private static boolean isFinalSigma(char[] value, int offset, int count, int index) { argument
88 if (index <= offset) {
91 char previous = value[index - 1];
95 if (index + 1 >= offset + count) {
98 char next = value[index + 1];
106 * Return the index of the specified character into the upperValues table.
110 * @return the index into the upperValues table, or -1
113 int index
[all...]
/libcore/luni/src/main/java/java/util/prefs/
H A DNodeSet.java22 public Node item(int index) { argument
25 result = list.get(index);
/libcore/luni/src/main/java/javax/xml/validation/
H A DTypeInfoProvider.java88 * @param index
89 * The index of the attribute. The same index for
94 * If the index is invalid.
109 public abstract TypeInfo getAttributeTypeInfo(int index); argument
130 * @param index
131 * The index of the attribute. The same index for
136 * If the index is invalid.
144 public abstract boolean isIdAttribute(int index); argument
180 isSpecified(int index) argument
[all...]
/libcore/libart/src/main/java/java/lang/
H A DVMClassLoader.java77 native private static String getBootClassPathResource(String name, int index); argument
/libcore/luni/src/main/java/java/net/
H A DURISyntaxException.java30 private int index; field in class:URISyntaxException
35 * index at which the error occurred.
41 * @param index
47 * if the value for {@code index} is lesser than {@code -1}.
49 public URISyntaxException(String input, String reason, int index) { argument
58 if (index < -1) {
59 throw new IllegalArgumentException("Bad index: " + index);
63 this.index = index;
[all...]
/libcore/luni/src/main/java/java/security/cert/
H A DCertPathValidatorException.java27 * path instance that failed the validation and the index of the failed
40 * the index of the certificate.
42 private int index = -1; field in class:CertPathValidatorException
46 * message , cause, certification path and certificate index in the
55 * @param index
56 * the index of the failed certificate.
58 * if {@code certPath} is {@code null} and index is not {@code
61 * if {@code certPath} is not {@code null} and index is not
65 CertPath certPath, int index) {
67 // check certPath and index parameter
64 CertPathValidatorException(String msg, Throwable cause, CertPath certPath, int index) argument
[all...]
/libcore/luni/src/main/java/java/sql/
H A DArray.java39 * starting at a particular {@code index} and comprising up to {@code count}
42 * @param index
51 public Object getArray(long index, int count) throws SQLException; argument
55 * starting at a particular {@code index} and comprising up to {@code count}
58 * @param index
70 public Object getArray(long index, int count, Map<String, Class<?>> map) argument
117 * beginning at a particular index and comprising up to {@code count}
120 * @param index
129 public ResultSet getResultSet(long index, int count) throws SQLException; argument
133 * beginning at a particular index an
149 getResultSet(long index, int count, Map<String, Class<?>> map) argument
[all...]
H A DDataTruncation.java32 private int index = 0; field in class:DataTruncation
56 * @param index
70 public DataTruncation(int index, boolean parameter, boolean read, argument
73 this.index = index;
85 * @param index
103 public DataTruncation(int index, boolean parameter, boolean read, argument
107 this.index = index;
125 * Gets the index o
[all...]
/libcore/luni/src/main/java/java/text/
H A DParsePosition.java22 * index can be set to the position where the error occurred without having to
30 * Constructs a new {@code ParsePosition} with the specified index.
32 * @param index
33 * the index to begin parsing.
35 public ParsePosition(int index) { argument
36 currentPosition = index;
42 * instance of {@code ParsePosition} and it must have the same index and
43 * error index.
62 * Returns the index at which the parse could not continue.
64 * @return the index o
90 setErrorIndex(int index) argument
100 setIndex(int index) argument
[all...]
H A DFieldPosition.java65 * of {@code FieldPosition} with the same field, begin index and end index.
77 * Returns the index of the beginning of the field.
84 * Returns the index one past the end of the field.
110 * Sets the index of the beginning of the field.
112 public void setBeginIndex(int index) { argument
113 beginIndex = index;
117 * Sets the index of the end of the field.
119 public void setEndIndex(int index) { argument
120 endIndex = index;
[all...]
/libcore/luni/src/main/java/java/util/regex/
H A DPatternSyntaxException.java25 * expression, and the index at which the error occurred.
47 * Holds the index around which the error occured, or -1, in case it is
50 private int index = -1; field in class:PatternSyntaxException
54 * error index.
62 * @param index
63 * the character index around which the error occurred, or -1 if
64 * the index is not known.
66 public PatternSyntaxException(String description, String pattern, int index) { argument
69 this.index = index;
[all...]
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DASN1TypeCollection.java29 * @see <a href="http://asn1.elibel.tm.fr/en/standards/index.htm">ASN.1</a>
56 * @param index an index of a component
58 protected final void setOptional(int index) { argument
59 OPTIONAL[index] = true;
67 * @param index an index of a component
69 protected final void setDefault(Object object, int index) { argument
70 OPTIONAL[index] = true;
71 DEFAULT[index]
[all...]
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DLeafNodeImpl.java39 int index; field in class:LeafNodeImpl
46 if (parent == null || index + 1 >= parent.children.size()) {
50 return parent.children.get(index + 1);
58 if (parent == null || index == 0) {
62 return parent.children.get(index - 1);
H A DNodeListImpl.java54 public Node item(int index) { argument
55 if (index >= children.size()) {
58 return children.get(index);
/libcore/luni/src/main/java/org/xml/sax/
H A DAttributes.java24 * <li>by attribute index;</li>
96 * Look up an attribute's Namespace URI by index.
98 * @param index The attribute index (zero-based).
100 * is available, or null if the index is out of
104 public abstract String getURI (int index);
108 * Look up an attribute's local name by index.
110 * @param index The attribute index (zero-based).
113 * if the index i
103 getURI(int index) argument
115 getLocalName(int index) argument
127 getQName(int index) argument
150 getType(int index) argument
166 getValue(int index) argument
[all...]
/libcore/luni/src/main/java/org/xml/sax/ext/
H A DAttributes2.java47 * @param index The attribute index (zero-based).
51 * supplied index does not identify an attribute.
53 public boolean isDeclared (int index); argument
94 * @param index The attribute index (zero-based).
98 * supplied index does not identify an attribute.
100 public boolean isSpecified (int index); argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMethodLogger.java57 * Returns the method name stored at the given index.
59 public String getMethod(int index) { argument
60 return methods.get(index);
72 * Returns the argument array stored at the given index. May be empty, but
75 public Object[] getArgs(int index) { argument
76 return argLists.get(index);

Completed in 796 milliseconds

12345