Searched refs:obj (Results 426 - 450 of 1610) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeWithKlass.java40 ConstantPool.CPSlot obj = method().getConstants().getSlotAt(index());
41 if (obj.isMetaData()) {
42 return obj.getSymbol();
44 return ((Klass)obj.getOop()).getName();
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DATR.java136 * @param obj the object to be compared for equality with this ATR
139 public boolean equals(Object obj) { argument
140 if (this == obj) {
143 if (obj instanceof ATR == false) {
146 ATR other = (ATR)obj;
H A DResponseAPDU.java156 * @param obj the object to be compared for equality with this response APDU
159 public boolean equals(Object obj) { argument
160 if (this == obj) {
163 if (obj instanceof ResponseAPDU == false) {
166 ResponseAPDU other = (ResponseAPDU)obj;
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DChannelBinding.java165 * @param obj another ChannelBinding to compare this one with
170 public boolean equals(Object obj) { argument
172 if (this == obj)
175 if (! (obj instanceof ChannelBinding))
178 ChannelBinding cb = (ChannelBinding) obj;
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMKeyName.java83 public boolean equals(Object obj) { argument
84 if (this == obj) {
87 if (!(obj instanceof KeyName)) {
90 KeyName okn = (KeyName) obj;
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectOutput.java45 * @param obj the object to be written
48 public void writeObject(Object obj) argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DStackTraceElement.java193 * @param obj the object to be compared with this stack trace element.
198 public boolean equals(Object obj) { argument
199 if (obj==this)
201 if (!(obj instanceof StackTraceElement))
203 StackTraceElement e = (StackTraceElement)obj;
/openjdk7/jdk/src/share/classes/java/net/
H A DProxy.java143 * @param obj the object to compare against.
148 public final boolean equals(Object obj) { argument
149 if (obj == null || !(obj instanceof Proxy))
151 Proxy p = (Proxy) obj;
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSigner.java123 * @param obj the object to test for equality with this object.
127 public boolean equals(Object obj) { argument
128 if (obj == null || (!(obj instanceof CodeSigner))) {
131 CodeSigner that = (CodeSigner)obj;
H A DTimestamp.java120 * @param obj the object to test for equality with this timestamp.
124 public boolean equals(Object obj) { argument
125 if (obj == null || (!(obj instanceof Timestamp))) {
128 Timestamp that = (Timestamp)obj;
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DRC2ParameterSpec.java129 * @param obj the object to test for equality with this object.
132 * <code>obj</code> is null or otherwise.
134 public boolean equals(Object obj) { argument
135 if (obj == this) {
138 if (!(obj instanceof RC2ParameterSpec)) {
141 RC2ParameterSpec other = (RC2ParameterSpec) obj;
H A DRC5ParameterSpec.java169 * @param obj the object to test for equality with this object.
172 * <code>obj</code> is null or otherwise.
174 public boolean equals(Object obj) { argument
175 if (obj == this) {
178 if (!(obj instanceof RC5ParameterSpec)) {
181 RC5ParameterSpec other = (RC5ParameterSpec) obj;
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeData.java112 * Compares the specified <var>obj</var> parameter with this
117 * <li><var>obj</var> is non null,</li>
118 * <li><var>obj</var> also implements the <code>CompositeData</code> interface,</li>
128 * <var>obj</var> parameters which are different implementations of the
133 * @param obj the object to be compared for equality with this
138 public boolean equals(Object obj) ; argument
H A DOpenMBeanOperationInfo.java132 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanOperationInfo</code> instance for equality.
136 * <li><var>obj</var> is non null,</li>
137 * <li><var>obj</var> also implements the <code>OpenMBeanOperationInfo</code> interface,</li>
143 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
146 * @param obj the object to be compared for equality with this <code>OpenMBeanOperationInfo</code> instance;
150 public boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/javax/naming/
H A DBinaryRefAddr.java117 * Determines whether obj is equal to this address. It is equal if
120 * @param obj The possibly null object to check.
123 public boolean equals(Object obj) { argument
124 if ((obj != null) && (obj instanceof BinaryRefAddr)) {
125 BinaryRefAddr target = (BinaryRefAddr)obj;
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DDirObjectFactory.java106 * @param obj The possibly null object containing location or reference
115 * @param attrs The possibly null attributes containing some of <tt>obj</tt>'s
116 * attributes. <tt>attrs</tt> might not necessarily have all of <tt>obj</tt>'s
118 * to get it, either using <tt>obj</tt>, or <tt>name</tt> and <tt>nameCtx</tt>.
128 public Object getObjectInstance(Object obj, Name name, Context nameCtx, argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocalVariable.java145 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DEnumerated.java152 * @param obj The object to compare with.
154 * @return True if this and obj are the same; false otherwise
156 public boolean equals(Object obj) { argument
158 return ((obj != null) &&
159 (getClass() == obj.getClass()) &&
160 (value == ((Enumerated)obj).value)) ;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DConnectionDesc.java67 public boolean equals(Object obj) { argument
68 return obj != null
69 && obj instanceof ConnectionDesc
70 && ((ConnectionDesc)obj).conn == conn;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/x509/
H A DXMLX509SubjectName.java86 public boolean equals(Object obj) { argument
87 if (obj == null) {
91 if (!this.getClass().getName().equals(obj.getClass().getName())) {
95 XMLX509SubjectName other = (XMLX509SubjectName) obj;
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DBaseRow.java89 * @param obj the <code>Object</code> to which the element at index
93 public abstract void setColumnObject(int idx, Object obj) throws SQLException; argument
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJavaAdapter.java59 JavaAdapter obj = new JavaAdapter(engine);
60 obj.setParentScope(scope);
61 obj.setPrototype(getFunctionPrototype(scope));
67 ScriptableObject.putProperty(topLevel, "JavaAdapter", obj);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DReferenceTypeSpec.java51 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DInstancesQuery.java80 JavaHeapObject obj = (JavaHeapObject) objects.nextElement();
81 if (newObjects && !obj.isNew())
83 printThing(obj);
85 totalSize += obj.getSize();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DMirrorImpl.java49 public boolean equals(Object obj) { argument
50 if ((obj != null) && (obj instanceof Mirror)) {
51 Mirror other = (Mirror)obj;

Completed in 2620 milliseconds

<<11121314151617181920>>