| /openjdk7/langtools/test/tools/javac/generics/ |
| H A D | T4784207a.java | 38 public int compareTo(T4784207a_i other) { argument
|
| H A D | ExtendedRaw3.java | 34 int compareTo(T other); argument 37 public int compareTo(E other) { argument
|
| H A D | FinalBridge.java | 38 int compareTo(T other); argument 41 public final int compareTo(E other) { argument
|
| /openjdk7/langtools/test/tools/javac/diags/examples/ |
| H A D | StaticNotQualifiedByType.java | 28 int m(Other other) { argument 29 return other.i;
|
| /openjdk7/jdk/src/share/classes/java/nio/file/ |
| H A D | AccessDeniedException.java | 30 * 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 D | FileAlreadyExistsException.java | 55 * @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 D | NoSuchFileException.java | 55 * @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 D | NotLinkException.java | 55 * @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 D | FileSystemException.java | 43 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 D | XSWildcardFunction.java | 38 T other( XSWildcard.Other wc ); method in interface:XSWildcardFunction
|
| H A D | XSWildcardVisitor.java | 38 void other( XSWildcard.Other wc ); method in interface:XSWildcardVisitor
|
| /openjdk7/jdk/test/java/lang/ThreadLocal/ |
| H A D | InitialValue.java | 32 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 D | AmbiguousCast.java | 40 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 D | KeyTab.java | 145 * 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 D | Certificate.java | 67 * 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 D | X509CRLEntry.java | 71 * 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 D | CompositeDataInvocationHandler.java | 222 * 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 D | AbstractJavaHeapObjectVisitor.java | 43 abstract public void visit(JavaHeapObject other); argument
|
| H A D | JavaHeapObjectVisitor.java | 43 public void visit(JavaHeapObject other); argument
|
| H A D | JavaThing.java | 69 * 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 D | c1_ValueSet.hpp | 48 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 D | AquaButtonRadioUI.java | 66 public RadioButtonBorder(final RadioButtonBorder other) { argument 67 super(other);
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ |
| H A D | WildcardNameClassBuilder.java | 61 public NameClass other(XSWildcard.Other wc) { method in class:WildcardNameClassBuilder
|
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/binary/ |
| H A D | ErrorPattern.java | 55 boolean samePattern(Pattern other) { argument 56 return other instanceof ErrorPattern;
|
| H A D | NotAllowedPattern.java | 59 boolean samePattern(Pattern other) { argument 61 return other.getClass() == this.getClass();
|