Searched defs:obj (Results 51 - 75 of 1229) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DAnnotation.java77 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationMonitor.java83 * @param obj the marshalled form of the object's stub
89 MarshalledObject<? extends Remote> obj)
88 activeObject(ActivationID id, MarshalledObject<? extends Remote> obj) argument
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DServerRef.java46 * @param obj the remote object implementation
53 RemoteStub exportObject(Remote obj, Object data) argument
H A DSkeleton.java50 * @param obj remote implementation to dispatch call to
59 void dispatch(Remote obj, RemoteCall theCall, int opnum, long hash) argument
/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECFieldFp.java79 * @param obj the object to be compared.
80 * @return true if <code>obj</code> is an instance
83 public boolean equals(Object obj) { argument
84 if (this == obj) return true;
85 if (obj instanceof ECFieldFp) {
86 return (p.equals(((ECFieldFp)obj).p));
/openjdk7/jdk/src/share/classes/java/sql/
H A DRowId.java79 * @param obj the <code>Object</code> to compare this <code>RowId</code> object
84 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/java/util/
H A DComparator.java160 * @param obj the reference object with which to compare.
167 boolean equals(Object obj); argument
/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/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1OopClosures.inline.hpp65 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
66 if (_g1->in_cset_fast_test(obj)) {
72 Prefetch::write(obj->mark_addr(), 0);
73 Prefetch::read(obj->mark_addr(), (HeapWordSize*2));
78 assert((obj == oopDesc::load_decode_heap_oop(p)) ||
79 (obj->is_forwarded() &&
80 obj->forwardee() == oopDesc::load_decode_heap_oop(p)),
81 "p should still be pointing to obj or to its forwardee");
95 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
96 if (_g1->in_cset_fast_test(obj)) {
112 oop obj = oopDesc::load_decode_heap_oop(p); local
125 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
155 oop obj = oopDesc::load_decode_heap_oop(p); local
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlassKlass.cpp45 void typeArrayKlassKlass::oop_print_on(oop obj, outputStream* st) { argument
46 assert(obj->is_klass(), "must be klass");
47 oop_print_value_on(obj, st);
48 Klass:: oop_print_on(obj, st);
53 void typeArrayKlassKlass::oop_print_value_on(oop obj, outputStream* st) { argument
54 assert(obj->is_klass(), "must be klass");
56 switch (typeArrayKlass::cast(klassOop(obj))->element_type()) {
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DBooleanValue.java53 boolean equals(Object obj); argument
H A DByteValue.java52 boolean equals(Object obj); argument
H A DCharValue.java53 boolean equals(Object obj); argument
H A DDoubleValue.java53 boolean equals(Object obj); argument
H A DFloatValue.java53 boolean equals(Object obj); argument
H A DIntegerValue.java53 boolean equals(Object obj); argument
H A DLongValue.java53 boolean equals(Object obj); argument
H A DShortValue.java53 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsNameParser.java48 public boolean equals(Object obj) { argument
49 return (obj instanceof DnsNameParser);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBindingWithControls.java34 public BindingWithControls(String name, Object obj, Control[] controls) { argument
35 super(name, obj);
/openjdk7/jdk/src/share/classes/com/sun/java/browser/dom/
H A DDOMAccessor.java34 public org.w3c.dom.Document getDocument(Object obj) throws org.w3c.dom.DOMException; argument
H A DDOMServiceProvider.java47 * between the obj and the underlying DOM in the browser.
49 public abstract boolean canHandle(Object obj); argument
54 public abstract org.w3c.dom.Document getDocument(Object obj) throws DOMUnsupportedException; argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dhandles.inline.hpp45 inline Handle::Handle(oop obj) { argument
46 if (obj == NULL) {
49 _handle = Thread::current()->handle_area()->allocate_handle(obj);
55 inline Handle::Handle(Thread* thread, oop obj) { argument
57 if (obj == NULL) {
60 _handle = thread->handle_area()->allocate_handle(obj);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJSerializedObject.java41 private final Object obj; field in class:JSerializedObject
47 public JSerializedObject( String name, Object obj ) throws IOException {
49 this.obj = obj;
56 // serialize the obj into a ByteArrayOutputStream
58 oos.writeObject(obj);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DCmdIDList.h38 UINT Add(AwtObject* obj);
51 AwtObject *obj; // object that is assigned this id member in union:AwtCmdIDList::CmdIDEntry

Completed in 75 milliseconds

1234567891011>>