Searched defs:obj (Results 301 - 325 of 1229) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DJSList.java114 private Object wrapObject(Object obj) { argument
115 return factory.newJSJavaWrapper(obj);
H A DJSMap.java88 private Object wrapObject(Object obj) { argument
89 return factory.newJSJavaWrapper(obj);
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DResolveResult.java189 * Sets the resolved Object field of this result to obj.
191 * @param obj The object to use for setting the resolved obj field.
195 public void setResolvedObj(Object obj) { argument
196 this.resolvedObj = obj;
/openjdk7/jdk/src/share/classes/javax/smartcardio/
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/javax/sound/sampled/
H A DLineEvent.java179 * @param obj the reference object with which to compare
181 * <code>obj</code>; <code>false</code> otherwise
183 public final boolean equals(Object obj) { argument
184 return super.equals(obj);
H A DReverbType.java264 * @param obj the reference object with which to compare
266 * <code>obj</code>; <code>false</code> otherwise
268 public final boolean equals(Object obj) { argument
269 return super.equals(obj);
/openjdk7/jdk/src/share/classes/javax/sql/rowset/spi/
H A DSyncResolver.java313 * Sets <i>obj</i> as the value in column <i>index</i> in the current row of the
314 * <code>RowSet</code> object that is being synchronized. <i>obj</i>
319 * @param obj an <code>Object</code> that is the value to be set in the
323 public void setResolvedValue(int index, Object obj) throws SQLException; argument
326 * Sets <i>obj</i> as the value in column <i>columnName</i> in the current row of the
327 * <code>RowSet</code> object that is being synchronized. <i>obj</i>
332 * @param obj an <code>Object</code> that is the value to be set in the
336 public void setResolvedValue(String columnName, Object obj) throws SQLException; argument
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMX509IssuerSerial.java113 public boolean equals(Object obj) { argument
114 if (this == obj) {
117 if (!(obj instanceof X509IssuerSerial)) {
120 X509IssuerSerial ois = (X509IssuerSerial) obj;
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java174 public boolean action(Event evt, Object obj) { argument
175 if (amh.getMessage("button.apply").equals(obj)) {
179 if (amh.getMessage("button.reset").equals(obj)) {
183 if (amh.getMessage("button.cancel").equals(obj)) {
/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/rmi/
H A DNaming.java108 * @param obj a reference for the remote object (usually a stub)
117 public static void bind(String name, Remote obj) argument
125 if (obj == null)
128 registry.bind(parsed.name, obj);
160 * @param obj new remote object to associate with the name
168 public static void rebind(String name, Remote obj) argument
174 if (obj == null)
177 registry.rebind(parsed.name, obj);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationDesc.java292 * @param obj the Object to compare with
297 public boolean equals(Object obj) { argument
299 if (obj instanceof ActivationDesc) {
300 ActivationDesc desc = (ActivationDesc) obj;
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteObject.java88 * Returns the stub for the remote object <code>obj</code> passed
91 * @param obj the remote object whose stub is needed
92 * @return the stub for the remote object, <code>obj</code>.
97 public static Remote toStub(Remote obj) throws NoSuchObjectException { argument
98 if (obj instanceof RemoteStub ||
99 (obj != null &&
100 Proxy.isProxyClass(obj.getClass()) &&
101 Proxy.getInvocationHandler(obj) instanceof
104 return obj;
106 return sun.rmi.transport.ObjectTable.getStub(obj);
134 equals(Object obj) argument
[all...]
H A DUnicastRemoteObject.java222 * @param obj the remote object to be exported
227 public static RemoteStub exportObject(Remote obj) argument
237 return (RemoteStub) exportObject(obj, new UnicastServerRef(true));
243 * @param obj the remote object to be exported
249 public static Remote exportObject(Remote obj, int port) argument
252 return exportObject(obj, new UnicastServerRef(port));
258 * @param obj the remote object to be exported
267 public static Remote exportObject(Remote obj, int port, argument
273 return exportObject(obj, new UnicastServerRef2(port, csf, ssf));
277 * Removes the remote object, obj, fro
294 unexportObject(Remote obj, boolean force) argument
303 exportObject(Remote obj, UnicastServerRef sref) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DAllPermission.java101 * @param obj the object we are testing for equality with this object.
102 * @return true if <i>obj</i> is an AllPermission, false otherwise.
104 public boolean equals(Object obj) { argument
105 return (obj instanceof AllPermission);
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DEllipticCurve.java166 * @param obj the object to be compared.
167 * @return true if <code>obj</code> is an instance of
170 public boolean equals(Object obj) { argument
171 if (this == obj) return true;
172 if (obj instanceof EllipticCurve) {
173 EllipticCurve curve = (EllipticCurve) obj;
/openjdk7/jdk/src/share/classes/java/util/
H A DObjects.java194 * @param obj the object reference to check for nullity
196 * @return {@code obj} if not {@code null}
197 * @throws NullPointerException if {@code obj} is {@code null}
199 public static <T> T requireNonNull(T obj) { argument
200 if (obj == null)
202 return obj;
217 * @param obj the object reference to check for nullity
221 * @return {@code obj} if not {@code null}
222 * @throws NullPointerException if {@code obj} is {@code null}
224 public static <T> T requireNonNull(T obj, Strin argument
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCryptoAllPermission.java74 * @param obj the object to test for equality with this object.
76 * @return true if <i>obj</i> is a CryptoAllPermission object.
78 public boolean equals(Object obj) { argument
79 return (obj == INSTANCE);
/openjdk7/jdk/src/share/classes/javax/management/
H A DDescriptor.java603 * @param obj the object to compare with.
610 public boolean equals(Object obj); argument
/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 DOpenMBeanConstructorInfoSupport.java154 * <p>Compares the specified {@code obj} parameter with this
162 * <li>{@code obj} is non null,</li>
163 * <li>{@code obj} also implements the {@code
170 * {@code obj} parameters which are different implementations of
173 * @param obj the object to be compared for equality with this
179 public boolean equals(Object obj) { argument
181 // if obj is null, return false
183 if (obj == null) {
187 // if obj is not a OpenMBeanConstructorInfo, return false
191 other = (OpenMBeanConstructorInfo) obj;
[all...]
H A DOpenMBeanParameterInfo.java151 * Tests whether <var>obj</var> is a valid value for the parameter
154 * @param obj the object to be tested.
156 * @return <code>true</code> if <var>obj</var> is a valid value
161 public boolean isValue(Object obj) ; argument
165 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanParameterInfo</code> instance for equality.
169 * <li><var>obj</var> is non null,</li>
170 * <li><var>obj</var> also implements the <code>OpenMBeanParameterInfo</code> interface,</li>
175 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
178 * @param obj the object to be compared for equality with this <code>OpenMBeanParameterInfo</code> instance;
182 public boolean equals(Object obj); argument
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciSymbol.hpp109 bool equals(ciSymbol* obj) { return this->_symbol == obj->get_symbol(); } argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.inline.hpp105 oop obj = oop(q); local
106 if (obj->klass_or_null() == NULL) return q;
107 n += obj->size();
112 oop obj = oop(q); variable
113 if (obj->klass_or_null() == NULL) return q;
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.cpp105 bool PSPromotionLAB::unallocate_object(HeapWord* obj, size_t obj_size) { argument
106 assert(Universe::heap()->is_in(obj), "Object outside heap");
108 if (contains(obj)) {
109 HeapWord* object_end = obj + obj_size;
112 set_top(obj);
128 HeapWord* obj = top();
134 _start_array->allocate_block(obj);

Completed in 119 milliseconds

<<11121314151617181920>>