Searched defs:other (Results 1 - 25 of 262) sorted by relevance

1234567891011

/openjdk7/langtools/test/tools/javac/generics/
H A DT4784207a.java38 public int compareTo(T4784207a_i other) { argument
H A DExtendedRaw3.java34 int compareTo(T other); argument
37 public int compareTo(E other) { argument
H A DFinalBridge.java38 int compareTo(T other); argument
41 public final int compareTo(E other) { argument
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DStaticNotQualifiedByType.java28 int m(Other other) { argument
29 return other.i;
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DAccessDeniedException.java30 * due to a file permission or other access check.
60 * @param other
61 * a string identifying the other file or {@code null} if not known
65 public AccessDeniedException(String file, String other, String reason) { argument
66 super(file, other, reason);
H A DFileAlreadyExistsException.java55 * @param other
56 * a string identifying the other file or {@code null} if not known
60 public FileAlreadyExistsException(String file, String other, String reason) { argument
61 super(file, other, reason);
H A DNoSuchFileException.java55 * @param other
56 * a string identifying the other file or {@code null} if not known.
60 public NoSuchFileException(String file, String other, String reason) { argument
61 super(file, other, reason);
H A DNotLinkException.java55 * @param other
56 * a string identifying the other file or {@code null} if not known
60 public NotLinkException(String file, String other, String reason) { argument
61 super(file, other, reason);
H A DFileSystemException.java43 private final String other; field in class:FileSystemException
56 this.other = null;
66 * @param other
67 * a string identifying the other file or {@code null} if there
72 public FileSystemException(String file, String other, String reason) { argument
75 this.other = other;
88 * Returns the other file used to create this exception.
90 * @return the other file (can be {@code null})
93 return other;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/visitor/
H A DXSWildcardFunction.java38 T other( XSWildcard.Other wc ); method in interface:XSWildcardFunction
H A DXSWildcardVisitor.java38 void other( XSWildcard.Other wc ); method in interface:XSWildcardVisitor
/openjdk7/jdk/test/java/lang/ThreadLocal/
H A DInitialValue.java32 static ThreadLocal<String> other; field in class:InitialValue
38 other = new ThreadLocal<String>();
41 other.set("Other");
50 // And this should pick up the other local in this thread's locals map
51 String s2 = other.get();
/openjdk7/langtools/test/tools/javac/generics/wildcards/neg/
H A DAmbiguousCast.java40 public <T extends Elem> GenericWrapper (GenericWrapper<T> other) { argument
41 this.theObject = other.theObject;
/openjdk7/jdk/src/share/classes/javax/security/auth/kerberos/
H A DKeyTab.java145 * also save keys for other principals having keys in the same keytab object
216 * @param other the Object to compare to
219 public boolean equals(Object other) { argument
220 if (other == this)
223 if (! (other instanceof KeyTab)) {
227 KeyTab otherKtab = (KeyTab) other;
/openjdk7/jdk/src/share/classes/javax/security/cert/
H A DCertificate.java67 * object. If the <code>other</code> object is an
72 * @param other the object to test for equality with this certificate.
76 public boolean equals(Object other) { argument
77 if (this == other)
79 if (!(other instanceof Certificate))
83 byte[] otherCert = ((Certificate)other).getEncoded();
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CRLEntry.java71 * object. If the <code>other</code> object is an
76 * @param other the object to test for equality with this CRL entry.
80 public boolean equals(Object other) { argument
81 if (this == other)
83 if (!(other instanceof X509CRLEntry))
87 byte[] otherCRLEntry = ((X509CRLEntry)other).getEncoded();
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataInvocationHandler.java222 * converting the other object into a CompositeData and comparing
232 private boolean equals(Object proxy, Object other) { argument
233 if (other == null)
237 final Class<?> otherClass = other.getClass();
240 InvocationHandler otherih = Proxy.getInvocationHandler(other);
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DAbstractJavaHeapObjectVisitor.java43 abstract public void visit(JavaHeapObject other); argument
H A DJavaHeapObjectVisitor.java43 public void visit(JavaHeapObject other); argument
H A DJavaThing.java69 * Are we the same type as other?
73 public boolean isSameTypeAs(JavaThing other) { argument
74 return getClass() == other.getClass();
92 * Compare our string representation to other's
95 public int compareTo(JavaThing other) { argument
96 return toString().compareTo(other.toString());
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueSet.hpp48 bool set_intersect(ValueSet* other);
49 void set_union(ValueSet* other);
51 void set_from(ValueSet* other);
52 bool equals (ValueSet* other);
82 inline bool ValueSet::set_intersect(ValueSet* other) { argument
83 return _map.set_intersection_with_result(other->_map);
87 inline void ValueSet::set_union(ValueSet* other) { argument
88 _map.set_union(other->_map);
96 inline void ValueSet::set_from(ValueSet* other) { argument
97 _map.set_from(other
100 equals(ValueSet* other) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonRadioUI.java66 public RadioButtonBorder(final RadioButtonBorder other) { argument
67 super(other);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/
H A DWildcardNameClassBuilder.java61 public NameClass other(XSWildcard.Other wc) { method in class:WildcardNameClassBuilder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/
H A DErrorPattern.java55 boolean samePattern(Pattern other) { argument
56 return other instanceof ErrorPattern;
H A DNotAllowedPattern.java59 boolean samePattern(Pattern other) { argument
61 return other.getClass() == this.getClass();

Completed in 688 milliseconds

1234567891011