Searched refs:another (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/acl/
H A DPermission.java41 * @param another the Permission object to compare with.
45 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DPermissionImpl.java51 * @param another The Permission object to compare with.
54 public boolean equals(Object another) { argument
55 if (another instanceof Permission) {
56 Permission p = (Permission) another;
H A DPrincipalImpl.java50 * @param another the Principal to compare with.
54 public boolean equals(Object another) { argument
55 if (another instanceof PrincipalImpl) {
56 PrincipalImpl p = (PrincipalImpl) another;
H A DAllPermissionsImpl.java44 * @param another The Permission object to compare with.
47 public boolean equals(Permission another) { argument
H A DGroupImpl.java86 * @param another The group to compare this group to.
95 Group another = (Group)obj;
96 return group.equals(another.toString());
100 public boolean equals(Group another) { argument
101 return equals((Object)another);
/openjdk7/jdk/src/share/classes/java/security/
H A DPrincipal.java44 * @param another principal to compare with.
50 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpPrincipal.java55 * if <i>another</i> is an instance of HttpPrincipal, and its
59 public boolean equals (Object another) { argument
60 if (!(another instanceof HttpPrincipal)) {
63 HttpPrincipal theother = (HttpPrincipal)another;
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSNameSpi.java56 * Compares this <code>GSSNameSpi</code> object to another Object
62 * @param another the object to be compared to
66 public boolean equals(Object another); argument
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DGSSName.java170 * @param another the <code>GSSName</code> to compare this name with
180 public boolean equals(GSSName another) throws GSSException; argument
183 * Compares this <code>GSSName</code> object to another Object that might be a
190 * @param another the object to compare this name to
193 public boolean equals(Object another); argument
H A DGSSCredential.java359 * @param another another GSSCredential for comparison to this one
361 public boolean equals(Object another); argument
/openjdk7/jdk/test/java/net/Socket/
H A DLingerTest.java118 // another thread that will connect after 5 seconds.
119 Another another = new Another(ss.getLocalPort(), 5000);
120 thr = new Thread(another);
129 // give another time to run
133 // check that another is done
134 if (!another.connected()) {
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5NameElement.java221 * Compares this <code>GSSNameSpi</code> object to another Object
227 * @param another the object to be compared to
231 public boolean equals(Object another) { argument
232 if (this == another) {
237 if (another instanceof Krb5NameElement)
238 return equals((Krb5NameElement) another);
/openjdk7/hotspot/agent/test/jdi/
H A Dmultivm.sh30 simultaneousely. i.e, before detaching one attach another.
H A Dserialvm.sh30 after another in serial fashion.
/openjdk7/jdk/src/share/classes/java/awt/
H A DModalEventFilter.java84 int compareTo(ModalEventFilter another) { argument
85 Dialog anotherDialog = another.getModalDialog();
102 // check if one dialog blocks (directly or indirectly) another
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSNameImpl.java359 public boolean equals(Object another) { argument
365 if (another instanceof GSSName)
366 return equals((GSSName) another);
H A DGSSCredentialImpl.java417 * mechanism, one that will have usage INITIATE_ONLY and another
420 * usage INITIATE_ONLY or ACCEPT_ONLY prompting it to make another
458 public boolean equals(Object another) { argument
465 if (this == another) {
469 if (!(another instanceof GSSCredentialImpl)) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/doc-files/
H A DModality.txt64 WM_TRANSIENT_FOR is used to mark one window to be a child of another
105 Let's iconify another window, F2. prev/nextTransientFor field
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java1257 * Compares this X509Serial with another and returns true if they
1296 public int compareTo(X509IssuerSerial another) { argument
1298 .compareTo(another.issuer.toString());
1300 return this.serial.compareTo(another.serial);
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s30 ! mlib_v_ImageCopy_blk - Copy an image into another
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContext.java54 // another? see composeName()
858 // getNodeName() didn't find it -- that it was populated by another
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec130 "the target VM prepares to accept another subsequent connection "
131 "from this debugger or another debugger, including the "
1725 "thread holds a monitor needed by another running thread, "
1869 "the java.lang.Object.wait method, for another thread to invoke the "
2153 "loading was delegated by this class loader to another class loader. "
2735 "to enter a monitor that is already acquired by another thread. "
2748 "after waiting for it to be released by another thread. "

Completed in 101 milliseconds