Home | History | Annotate | Download | only in cls

Lines Matching refs:offset

30      * Returns {@link Method_info} descriptor at a given offset.
32 * @param offset method offset [must be in [0, size()) range; input not checked]
35 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
37 Method_info get (int offset);
77 * Replaces the Method_info descriptor at a given offset. No duplicate
82 * @param offset method offset [must be in [0, size()) range; input not checked]
84 * @return previous method descriptor at this offset [never null]
86 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
88 Method_info set (int offset, Method_info method);
92 * Removes the Method_info descriptor at a given offset. It is
96 * @param offset method offset [must be in [0, size()) range; input not checked]
97 * @return method descriptor at this offset [never null]
99 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
101 Method_info remove (int offset);