Searched defs:obj (Results 176 - 200 of 1229) sorted by relevance

1234567891011>>

/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;
H A DBinding.java63 * the class name of <tt>obj</tt> (or null if <tt>obj</tt> is null)
69 * @param obj The possibly null object bound to name.
72 public Binding(String name, Object obj) { argument
74 this.boundObj = obj;
81 * <tt>getClassName()</tt> will return the class name of <tt>obj</tt>
82 * (or null if <tt>obj</tt> is null) unless the class name has been
86 * @param obj The possibly null object bound to name.
95 public Binding(String name, Object obj, boolean isRelative) { argument
97 this.boundObj = obj;
113 Binding(String name, String className, Object obj) argument
136 Binding(String name, String className, Object obj, boolean isRelative) argument
176 setObject(Object obj) argument
[all...]
H A DRefAddr.java91 * Determines whether obj is equal to this RefAddr.
93 * obj is equal to this RefAddr all of these conditions are true
96 *<li> obj has the same address type as this RefAddr (using String.compareTo())
97 *<li> both obj and this RefAddr's contents are null or they are equal
100 * @param obj possibly null obj to check.
101 * @return true if obj is equal to this refaddr; false otherwise.
105 public boolean equals(Object obj) { argument
106 if ((obj != null) && (obj instanceo
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DSearchResult.java56 * <tt>getClassName()</tt> will return the class name of <tt>obj</tt>
57 * (or null if <tt>obj</tt> is null) unless the class name has been
64 * @param obj The object bound to name. Can be null.
70 public SearchResult(String name, Object obj, Attributes attrs) { argument
71 super(name, obj);
79 * <tt>getClassName()</tt> will return the class name of <tt>obj</tt>
80 * (or null if <tt>obj</tt> is null) unless the class name has been
84 * @param obj The object bound to name. Can be null.
94 public SearchResult(String name, Object obj, Attributes attrs, argument
96 super(name, obj, isRelativ
118 SearchResult(String name, String className, Object obj, Attributes attrs) argument
143 SearchResult(String name, String className, Object obj, Attributes attrs, boolean isRelative) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DDirStateFactory.java123 * @param obj A possibly null object whose state is to be retrieved.
142 public Result getStateToBind(Object obj, Name name, Context nameCtx, argument
156 private Object obj; field in class:DirStateFactory.Result
167 * @param obj The possibly null object to be bound.
170 public Result(Object obj, Attributes outAttrs) { argument
171 this.obj = obj;
179 public Object getObject() { return obj; };
H A DDirectoryManager.java219 private static Object createObjectFromFactories(Object obj, Name name, argument
236 getObjectInstance(obj, name, nameCtx, environment, attrs);
239 factory.getObjectInstance(obj, name, nameCtx, environment);
277 * @param obj The non-null object for which to get state to bind.
291 * the object (<tt>obj</tt>) itself with the original attributes.
303 getStateToBind(Object obj, Name name, Context nameCtx, argument
313 return new DirStateFactory.Result(obj, attrs);
324 getStateToBind(obj, name, nameCtx, environment, attrs);
327 factory.getStateToBind(obj, name, nameCtx, environment);
335 new DirStateFactory.Result(obj, attr
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstance.cpp69 Handle obj = get_oop(); local
70 assert(!obj.is_null(), "bad oop");
76 return ciConstant(field_btype, obj->byte_field(offset));
79 return ciConstant(field_btype, obj->char_field(offset));
82 return ciConstant(field_btype, obj->short_field(offset));
85 return ciConstant(field_btype, obj->bool_field(offset));
88 return ciConstant(field_btype, obj->int_field(offset));
91 return ciConstant(obj->float_field(offset));
94 return ciConstant(obj->double_field(offset));
97 return ciConstant(obj
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.cpp60 klassOop obj = SystemDictionary::resolve_or_fail( local
63 KlassHandle this_class(THREAD, obj);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcmsPermGen.cpp67 HeapWord* obj = gen->expand_and_allocate(size, false); local
73 return obj;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1RemSet.inline.hpp47 oop obj = oopDesc::load_decode_heap_oop(p); local
50 // assert(obj == NULL || obj->is_oop(), "expected an oop");
53 if (obj != NULL) {
55 oopDesc* o = obj.obj();
57 oopDesc* o = obj;
60 assert(Universe::heap()->is_in_reserved(obj), "must be in heap");
66 HeapRegion* to = _g1->heap_region_containing(obj);
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparOopClosures.inline.hpp34 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
37 if ((HeapWord*)obj < _boundary && !_g->to()->is_in_reserved(obj)) {
40 klassOop objK = obj->klass();
41 markOop m = obj->mark();
44 new_obj = ParNewGeneration::real_forwardee(obj);
46 size_t obj_sz = obj->size_given_klass(objK->klass_part());
48 obj, obj_sz, m);
60 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
62 if ((HeapWord*)obj < gen_boundar
78 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
85 oop obj = oop(sp->block_start(p)); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.inline.hpp35 inline void MarkSweep::mark_object(oop obj) { argument
38 markOop mark = obj->mark();
39 obj->set_mark(markOopDesc::prototype()->set_marked());
41 if (mark->must_be_preserved(obj)) {
42 preserve_mark(obj, mark);
57 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
58 if (!obj->mark()->is_marked()) {
59 mark_object(obj);
60 obj->follow_contents();
70 oop obj local
78 push_objarray(oop obj, size_t index) argument
87 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dclassify.cpp48 object_type ClassifyObjectClosure::classify_object(oop obj, bool count) { argument
51 Klass* k = obj->blueprint();
61 if (obj->is_instance()) {
67 } else if (obj->is_typeArray()) {
69 } else if (obj->is_objArray()) {
71 } else if (obj->is_klass()) {
72 Klass* k = ((klassOop)obj)->klass_part();
78 } else if (obj->is_method()) {
80 } else if (obj->is_constMethod()) {
82 } else if (obj
109 do_object(oop obj) argument
140 do_object(oop obj) argument
[all...]
H A DgenOopClosures.inline.hpp57 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
59 if ((HeapWord*)obj < _gen_boundary) {
60 _rs->inline_write_ref_field_gc(p, obj);
68 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
70 if ((HeapWord*)obj < gen_boundary()) {
71 rs()->write_ref_field_gc_par(p, obj);
79 // Should we copy the obj?
81 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
82 if ((HeapWord*)obj < _boundary) {
83 assert(!_g->to()->is_in_reserved(obj), "Scannin
104 oop obj = oopDesc::decode_heap_oop_not_null(heap_oop); local
125 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
[all...]
H A Diterator.cpp33 void ObjectToOopClosure::do_object(oop obj) { argument
34 obj->oop_iterate(_cl);
H A DthreadLocalAllocBuffer.inline.hpp36 HeapWord* obj = top(); local
37 if (pointer_delta(end(), obj) >= size) {
44 Copy::fill_to_words(obj + hdr_size, size - hdr_size, badHeapWordVal);
48 set_top(obj + size);
51 return obj;
98 " obj: "SIZE_FORMAT
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceRefKlass.hpp62 int oop_adjust_pointers(oop obj);
63 void oop_follow_contents(oop obj);
68 int oop_oop_iterate(oop obj, OopClosure* blk) { argument
69 return oop_oop_iterate_v(obj, blk);
71 int oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) { argument
72 return oop_oop_iterate_v_m(obj, blk, mr);
76 int oop_oop_iterate##nv_suffix(oop obj, OopClosureType* blk); \
77 int oop_oop_iterate##nv_suffix##_m(oop obj, OopClosureType* blk, MemRegion mr);
84 int oop_oop_iterate_backwards##nv_suffix(oop obj, OopClosureType* blk);
100 void oop_verify_on(oop obj, outputStrea
[all...]
H A DmarkOop.inline.hpp106 inline markOop markOopDesc::prototype_for_object(oop obj) { argument
108 markOop prototype_header = obj->klass()->klass_part()->prototype_header();
111 return obj->klass()->klass_part()->prototype_header();
H A DobjArrayKlass.inline.hpp34 void objArrayKlass::oop_follow_contents(oop obj, int index) { argument
36 objarray_follow_contents<narrowOop>(obj, index);
38 objarray_follow_contents<oop>(obj, index);
43 void objArrayKlass::objarray_follow_contents(oop obj, int index) { argument
44 objArrayOop a = objArrayOop(obj);
66 void objArrayKlass::oop_follow_contents(ParCompactionManager* cm, oop obj, argument
69 objarray_follow_contents<narrowOop>(cm, obj, index);
71 objarray_follow_contents<oop>(cm, obj, index);
76 void objArrayKlass::objarray_follow_contents(ParCompactionManager* cm, oop obj, argument
78 objArrayOop a = objArrayOop(obj);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DField.java127 boolean equals(Object obj); argument
H A DLocalVariable.java145 boolean equals(Object obj); argument
H A DLocation.java253 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DRMIExporter.java51 public Remote exportObject(Remote obj, argument
57 public boolean unexportObject(Remote obj, boolean force) argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DSearchResultWithControls.java35 public SearchResultWithControls(String name, Object obj, Attributes attrs, argument
38 super(name, obj, attrs, isRelative);
/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

Completed in 79 milliseconds

1234567891011>>