Searched refs:posn (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/
H A DName.java131 * @param posn
134 * @return the component at index posn
136 * if posn is outside the specified range
138 public String get(int posn); argument
145 * @param posn
149 * the range [0,posn).
151 * if posn is outside the specified range
153 public Name getPrefix(int posn); argument
160 * @param posn
164 * the range [posn,siz
169 getSuffix(int posn) argument
226 addAll(int posn, Name n) argument
258 add(int posn, String comp) argument
276 remove(int posn) argument
[all...]
H A DCompositeName.java374 * @param posn The 0-based index of the component to retrieve.
376 * @return The non-null component at index posn.
377 * @exception ArrayIndexOutOfBoundsException if posn is outside the
380 public String get(int posn) { argument
381 return (impl.get(posn));
389 * @param posn The 0-based index of the component at which to stop.
392 * the range [0,posn).
394 * If posn is outside the specified range.
396 public Name getPrefix(int posn) { argument
397 Enumeration comps = impl.getPrefix(posn);
414 getSuffix(int posn) argument
491 addAll(int posn, Name n) argument
532 add(int posn, String comp) argument
554 remove(int posn) argument
[all...]
H A DCompoundName.java353 * @param posn The 0-based index of the component to retrieve.
355 * @return The component at index posn.
356 * @exception ArrayIndexOutOfBoundsException if posn is outside the
359 public String get(int posn) { argument
360 return (impl.get(posn));
371 * @param posn The 0-based index of the component at which to stop.
374 * the range [0,posn).
376 * If posn is outside the specified range.
378 public Name getPrefix(int posn) { argument
379 Enumeration comps = impl.getPrefix(posn);
398 getSuffix(int posn) argument
487 addAll(int posn, Name n) argument
526 add(int posn, String comp) argument
546 remove(int posn) argument
[all...]
H A DReference.java236 * Retrieves the address at index posn.
237 * @param posn The index of the address to retrieve.
238 * @return The address at the 0-based index posn. It must be in the
240 * @exception ArrayIndexOutOfBoundsException If posn not in the specified
243 public RefAddr get(int posn) { argument
244 return ((RefAddr) addrs.elementAt(posn));
280 * Adds an address to the list of addresses at index posn.
281 * All addresses at index posn or greater are shifted up
284 * @param posn The 0-based index of the list to insert addr.
286 * @exception ArrayIndexOutOfBoundsException If posn no
289 add(int posn, RefAddr addr) argument
303 remove(int posn) argument
[all...]
H A DNameImpl.java550 public String get(int posn) { argument
551 return ((String) components.elementAt(posn));
554 public Enumeration getPrefix(int posn) { argument
555 if (posn < 0 || posn > size()) {
556 throw new ArrayIndexOutOfBoundsException(posn);
558 return new NameImplEnumerator(components, 0, posn);
561 public Enumeration getSuffix(int posn) { argument
563 if (posn < 0 || posn > cn
573 startsWith(int posn, Enumeration prefix) argument
600 endsWith(int posn, Enumeration suffix) argument
650 addAll(int posn, Enumeration comps) argument
677 add(int posn, String comp) argument
685 remove(int posn) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java218 * @param posn The 0-based index of the component to retrieve.
220 * @return The non-null component at index posn.
221 * @exception IndexOutOfBoundsException if posn is outside the
224 public String get(int posn) { argument
225 return rdns.get(posn).toString();
230 * @param posn The 0-based index of the RDN to retrieve.
232 * @return The non-null RDN at index posn.
233 * @exception IndexOutOfBoundsException if posn is outside the
236 public Rdn getRdn(int posn) { argument
237 return (Rdn) rdns.get(posn);
253 getPrefix(int posn) argument
277 getSuffix(int posn) argument
453 addAll(int posn, Name suffix) argument
484 addAll(int posn, List<Rdn> suffixRdns) argument
539 add(int posn, String comp) argument
561 add(int posn, Rdn comp) argument
585 remove(int posn) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/naming/internal/
H A DFactoryEnumeration.java41 private int posn = 0; field in class:FactoryEnumeration
70 NamedWeakReference ref = (NamedWeakReference) factories.get(posn++);
85 factories.set(posn-1, ref); // replace Class object or null
107 return posn < factories.size();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNamingEnumeration.java50 private int posn = 0; field in class:LdapNamingEnumeration
131 limit = posn = 0;
137 posn = 0; // reset
215 if (posn == limit) {
220 if (posn < limit) {
262 if (posn == limit) {
263 getNextBatch(); // updates posn and limit
266 if (posn >= limit) {
271 LdapEntry result = (LdapEntry)entries.elementAt(posn++);
410 posn
[all...]
H A DObj.java396 * #posn#<type>#<address>
398 * #posn#<type>##<base64-encoded address>
404 int start, sep, posn;
441 posn = Integer.parseInt(posnStr);
465 refAddrList.setElementAt(new StringRefAddr(type, null), posn);
481 refAddrList.setElementAt(ra, posn);
485 val.substring(start)), posn);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/dk/
H A DDes3DkCrypto.java149 byte posn = 0;
158 ++posn;
160 last |= (bit<<posn);
H A DDkCrypto.java494 int posn = 0;
506 System.err.println("K: " + ++posn + " = " +
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNNameParser.java317 public Name getPrefix(int posn) { argument
318 Enumeration comps = super.getPrefix(posn).getAll();
322 public Name getSuffix(int posn) { argument
323 Enumeration comps = super.getSuffix(posn).getAll();
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DGlyphIterator.cpp513 le_int32 posn; local
515 for (posn = position; posn != markPosition; posn += direction) {
516 if (glyphStorage[posn] == 0xFFFE) {
/openjdk7/jdk/src/share/classes/java/net/
H A DURLConnection.java1619 long posn;
1621 if ((posn = skipForward(is, toSkip)) < toSkip) {
1634 posn+=2;
1650 posn += 2;
1651 toSkip = (long)0x30 - posn;
1657 posn += skipped;
1676 posn += 4;
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java161 int posn = url.indexOf("/", start);
162 if (posn >= 0) {
163 start = posn;
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java909 public Name getPrefix(int posn) { argument
910 Enumeration comps = super.getPrefix(posn).getAll();
914 public Name getSuffix(int posn) { argument
915 Enumeration comps = super.getSuffix(posn).getAll();

Completed in 59 milliseconds