Searched refs:obj (Results 26 - 50 of 1610) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUnsafeQualifiedShortFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Short(getShort(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
53 public short getShort(Object obj) throws IllegalArgumentException { argument
54 ensureObj(obj);
55 return unsafe.getShortVolatile(obj, fieldOffset);
58 public int getInt(Object obj) throws IllegalArgumentException { argument
59 return getShort(obj);
62 getLong(Object obj) argument
66 getFloat(Object obj) argument
70 getDouble(Object obj) argument
74 set(Object obj, Object value) argument
95 setBoolean(Object obj, boolean z) argument
101 setByte(Object obj, byte b) argument
107 setChar(Object obj, char c) argument
113 setShort(Object obj, short s) argument
123 setInt(Object obj, int i) argument
129 setLong(Object obj, long l) argument
135 setFloat(Object obj, float f) argument
141 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeShortFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return new Short(getShort(obj));
39 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
43 public byte getByte(Object obj) throws IllegalArgumentException { argument
47 public char getChar(Object obj) throws IllegalArgumentException { argument
51 public short getShort(Object obj) throws IllegalArgumentException { argument
52 ensureObj(obj);
53 return unsafe.getShort(obj, fieldOffset);
56 public int getInt(Object obj) throws IllegalArgumentException { argument
57 return getShort(obj);
60 getLong(Object obj) argument
64 getFloat(Object obj) argument
68 getDouble(Object obj) argument
72 set(Object obj, Object value) argument
93 setBoolean(Object obj, boolean z) argument
99 setByte(Object obj, byte b) argument
105 setChar(Object obj, char c) argument
111 setShort(Object obj, short s) argument
121 setInt(Object obj, int i) argument
127 setLong(Object obj, long l) argument
133 setFloat(Object obj, float f) argument
139 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeByteFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return new Byte(getByte(obj));
39 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
43 public byte getByte(Object obj) throws IllegalArgumentException { argument
44 ensureObj(obj);
45 return unsafe.getByte(obj, fieldOffset);
48 public char getChar(Object obj) throws IllegalArgumentException { argument
52 public short getShort(Object obj) throws IllegalArgumentException { argument
53 return getByte(obj);
56 public int getInt(Object obj) throw argument
60 getLong(Object obj) argument
64 getFloat(Object obj) argument
68 getDouble(Object obj) argument
72 set(Object obj, Object value) argument
89 setBoolean(Object obj, boolean z) argument
95 setByte(Object obj, byte b) argument
105 setChar(Object obj, char c) argument
111 setShort(Object obj, short s) argument
117 setInt(Object obj, int i) argument
123 setLong(Object obj, long l) argument
129 setFloat(Object obj, float f) argument
135 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedByteFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Byte(getByte(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
46 ensureObj(obj);
47 return unsafe.getByteVolatile(obj, fieldOffset);
50 public char getChar(Object obj) throws IllegalArgumentException { argument
54 public short getShort(Object obj) throws IllegalArgumentException { argument
55 return getByte(obj);
58 public int getInt(Object obj) throw argument
62 getLong(Object obj) argument
66 getFloat(Object obj) argument
70 getDouble(Object obj) argument
74 set(Object obj, Object value) argument
91 setBoolean(Object obj, boolean z) argument
97 setByte(Object obj, byte b) argument
107 setChar(Object obj, char c) argument
113 setShort(Object obj, short s) argument
119 setInt(Object obj, int i) argument
125 setLong(Object obj, long l) argument
131 setFloat(Object obj, float f) argument
137 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeObjectFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 ensureObj(obj);
37 return unsafe.getObject(obj, fieldOffset);
40 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
44 public byte getByte(Object obj) throws IllegalArgumentException { argument
48 public char getChar(Object obj) throws IllegalArgumentException { argument
52 public short getShort(Object obj) throws IllegalArgumentException { argument
56 public int getInt(Object obj) throws IllegalArgumentException { argument
60 public long getLong(Object obj) throws IllegalArgumentException { argument
64 public float getFloat(Object obj) throw argument
68 getDouble(Object obj) argument
72 set(Object obj, Object value) argument
87 setBoolean(Object obj, boolean z) argument
93 setByte(Object obj, byte b) argument
99 setChar(Object obj, char c) argument
105 setShort(Object obj, short s) argument
111 setInt(Object obj, int i) argument
117 setLong(Object obj, long l) argument
123 setFloat(Object obj, float f) argument
129 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedObjectFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 ensureObj(obj);
39 return unsafe.getObjectVolatile(obj, fieldOffset);
42 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
46 public byte getByte(Object obj) throws IllegalArgumentException { argument
50 public char getChar(Object obj) throws IllegalArgumentException { argument
54 public short getShort(Object obj) throws IllegalArgumentException { argument
58 public int getInt(Object obj) throws IllegalArgumentException { argument
62 public long getLong(Object obj) throws IllegalArgumentException { argument
66 public float getFloat(Object obj) throw argument
70 getDouble(Object obj) argument
74 set(Object obj, Object value) argument
89 setBoolean(Object obj, boolean z) argument
95 setByte(Object obj, byte b) argument
101 setChar(Object obj, char c) argument
107 setShort(Object obj, short s) argument
113 setInt(Object obj, int i) argument
119 setLong(Object obj, long l) argument
125 setFloat(Object obj, float f) argument
131 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeCharacterFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return new Character(getChar(obj));
39 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
43 public byte getByte(Object obj) throws IllegalArgumentException { argument
47 public char getChar(Object obj) throws IllegalArgumentException { argument
48 ensureObj(obj);
49 return unsafe.getChar(obj, fieldOffset);
52 public short getShort(Object obj) throws IllegalArgumentException { argument
56 public int getInt(Object obj) throws IllegalArgumentException { argument
57 return getChar(obj);
60 getLong(Object obj) argument
64 getFloat(Object obj) argument
68 getDouble(Object obj) argument
72 set(Object obj, Object value) argument
89 setBoolean(Object obj, boolean z) argument
95 setByte(Object obj, byte b) argument
101 setChar(Object obj, char c) argument
111 setShort(Object obj, short s) argument
117 setInt(Object obj, int i) argument
123 setLong(Object obj, long l) argument
129 setFloat(Object obj, float f) argument
135 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedCharacterFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Character(getChar(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
50 ensureObj(obj);
51 return unsafe.getCharVolatile(obj, fieldOffset);
54 public short getShort(Object obj) throws IllegalArgumentException { argument
58 public int getInt(Object obj) throws IllegalArgumentException { argument
59 return getChar(obj);
62 getLong(Object obj) argument
66 getFloat(Object obj) argument
70 getDouble(Object obj) argument
74 set(Object obj, Object value) argument
91 setBoolean(Object obj, boolean z) argument
97 setByte(Object obj, byte b) argument
103 setChar(Object obj, char c) argument
113 setShort(Object obj, short s) argument
119 setInt(Object obj, int i) argument
125 setLong(Object obj, long l) argument
131 setFloat(Object obj, float f) argument
137 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedStaticBooleanFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Boolean(getBoolean(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
53 public short getShort(Object obj) throws IllegalArgumentException { argument
57 public int getInt(Object obj) throws IllegalArgumentException { argument
61 public long getLong(Object obj) throws IllegalArgumentException { argument
65 public float getFloat(Object obj) throws IllegalArgumentException { argument
69 public double getDouble(Object obj) throw argument
73 set(Object obj, Object value) argument
89 setBoolean(Object obj, boolean z) argument
98 setByte(Object obj, byte b) argument
104 setChar(Object obj, char c) argument
110 setShort(Object obj, short s) argument
116 setInt(Object obj, int i) argument
122 setLong(Object obj, long l) argument
128 setFloat(Object obj, float f) argument
134 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeStaticBooleanFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return new Boolean(getBoolean(obj));
39 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
43 public byte getByte(Object obj) throws IllegalArgumentException { argument
47 public char getChar(Object obj) throws IllegalArgumentException { argument
51 public short getShort(Object obj) throws IllegalArgumentException { argument
55 public int getInt(Object obj) throws IllegalArgumentException { argument
59 public long getLong(Object obj) throws IllegalArgumentException { argument
63 public float getFloat(Object obj) throws IllegalArgumentException { argument
67 public double getDouble(Object obj) throw argument
71 set(Object obj, Object value) argument
87 setBoolean(Object obj, boolean z) argument
96 setByte(Object obj, byte b) argument
102 setChar(Object obj, char c) argument
108 setShort(Object obj, short s) argument
114 setInt(Object obj, int i) argument
120 setLong(Object obj, long l) argument
126 setFloat(Object obj, float f) argument
132 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedStaticDoubleFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Double(getDouble(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
53 public short getShort(Object obj) throws IllegalArgumentException { argument
57 public int getInt(Object obj) throws IllegalArgumentException { argument
61 public long getLong(Object obj) throws IllegalArgumentException { argument
65 public float getFloat(Object obj) throws IllegalArgumentException { argument
69 public double getDouble(Object obj) throw argument
73 set(Object obj, Object value) argument
113 setBoolean(Object obj, boolean z) argument
119 setByte(Object obj, byte b) argument
125 setChar(Object obj, char c) argument
131 setShort(Object obj, short s) argument
137 setInt(Object obj, int i) argument
143 setLong(Object obj, long l) argument
149 setFloat(Object obj, float f) argument
155 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedStaticFloatFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Float(getFloat(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
53 public short getShort(Object obj) throws IllegalArgumentException { argument
57 public int getInt(Object obj) throws IllegalArgumentException { argument
61 public long getLong(Object obj) throws IllegalArgumentException { argument
65 public float getFloat(Object obj) throws IllegalArgumentException { argument
69 public double getDouble(Object obj) throw argument
73 set(Object obj, Object value) argument
109 setBoolean(Object obj, boolean z) argument
115 setByte(Object obj, byte b) argument
121 setChar(Object obj, char c) argument
127 setShort(Object obj, short s) argument
133 setInt(Object obj, int i) argument
139 setLong(Object obj, long l) argument
145 setFloat(Object obj, float f) argument
154 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedStaticIntegerFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Integer(getInt(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
53 public short getShort(Object obj) throws IllegalArgumentException { argument
57 public int getInt(Object obj) throws IllegalArgumentException { argument
61 public long getLong(Object obj) throws IllegalArgumentException { argument
62 return getInt(obj);
65 public float getFloat(Object obj) throw argument
69 getDouble(Object obj) argument
73 set(Object obj, Object value) argument
101 setBoolean(Object obj, boolean z) argument
107 setByte(Object obj, byte b) argument
113 setChar(Object obj, char c) argument
119 setShort(Object obj, short s) argument
125 setInt(Object obj, int i) argument
134 setLong(Object obj, long l) argument
140 setFloat(Object obj, float f) argument
146 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeQualifiedStaticLongFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return new Long(getLong(obj));
41 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
45 public byte getByte(Object obj) throws IllegalArgumentException { argument
49 public char getChar(Object obj) throws IllegalArgumentException { argument
53 public short getShort(Object obj) throws IllegalArgumentException { argument
57 public int getInt(Object obj) throws IllegalArgumentException { argument
61 public long getLong(Object obj) throws IllegalArgumentException { argument
65 public float getFloat(Object obj) throws IllegalArgumentException { argument
66 return getLong(obj);
69 getDouble(Object obj) argument
73 set(Object obj, Object value) argument
105 setBoolean(Object obj, boolean z) argument
111 setByte(Object obj, byte b) argument
117 setChar(Object obj, char c) argument
123 setShort(Object obj, short s) argument
129 setInt(Object obj, int i) argument
135 setLong(Object obj, long l) argument
144 setFloat(Object obj, float f) argument
150 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeStaticDoubleFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return new Double(getDouble(obj));
39 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
43 public byte getByte(Object obj) throws IllegalArgumentException { argument
47 public char getChar(Object obj) throws IllegalArgumentException { argument
51 public short getShort(Object obj) throws IllegalArgumentException { argument
55 public int getInt(Object obj) throws IllegalArgumentException { argument
59 public long getLong(Object obj) throws IllegalArgumentException { argument
63 public float getFloat(Object obj) throws IllegalArgumentException { argument
67 public double getDouble(Object obj) throw argument
71 set(Object obj, Object value) argument
111 setBoolean(Object obj, boolean z) argument
117 setByte(Object obj, byte b) argument
123 setChar(Object obj, char c) argument
129 setShort(Object obj, short s) argument
135 setInt(Object obj, int i) argument
141 setLong(Object obj, long l) argument
147 setFloat(Object obj, float f) argument
153 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeStaticFloatFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return new Float(getFloat(obj));
39 public boolean getBoolean(Object obj) throws IllegalArgumentException { argument
43 public byte getByte(Object obj) throws IllegalArgumentException { argument
47 public char getChar(Object obj) throws IllegalArgumentException { argument
51 public short getShort(Object obj) throws IllegalArgumentException { argument
55 public int getInt(Object obj) throws IllegalArgumentException { argument
59 public long getLong(Object obj) throws IllegalArgumentException { argument
63 public float getFloat(Object obj) throws IllegalArgumentException { argument
67 public double getDouble(Object obj) throw argument
71 set(Object obj, Object value) argument
107 setBoolean(Object obj, boolean z) argument
113 setByte(Object obj, byte b) argument
119 setChar(Object obj, char c) argument
125 setShort(Object obj, short s) argument
131 setInt(Object obj, int i) argument
137 setLong(Object obj, long l) argument
143 setFloat(Object obj, float f) argument
152 setDouble(Object obj, double d) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DOopField.java43 public Oop getValue(Oop obj) { argument
44 if (!isVMField() && !obj.isInstance() && !obj.isArray()) {
47 return obj.getHeap().newOop(getValueAsOopHandle(obj));
51 public OopHandle getValueAsOopHandle(Oop obj) { argument
52 if (!isVMField() && !obj.isInstance() && !obj.isArray()) {
53 throw new InternalError(obj.toString());
55 return obj
58 setValue(Oop obj) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/genericAbstract/
H A DA.java34 <D> D clone(D obj); argument
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicLongFieldUpdater.java96 * @param obj An object whose field to conditionally set
100 * @throws ClassCastException if {@code obj} is not an instance
103 public abstract boolean compareAndSet(T obj, long expect, long update); argument
116 * @param obj An object whose field to conditionally set
120 * @throws ClassCastException if {@code obj} is not an instance
123 public abstract boolean weakCompareAndSet(T obj, long expect, long update); argument
130 * @param obj An object whose field to set
133 public abstract void set(T obj, long newValue); argument
139 * @param obj An object whose field to set
143 public abstract void lazySet(T obj, lon argument
152 get(T obj) argument
162 getAndSet(T obj, long newValue) argument
177 getAndIncrement(T obj) argument
193 getAndDecrement(T obj) argument
210 getAndAdd(T obj, long delta) argument
226 incrementAndGet(T obj) argument
242 decrementAndGet(T obj) argument
259 addAndGet(T obj, long delta) argument
300 fullCheck(T obj) argument
307 compareAndSet(T obj, long expect, long update) argument
312 weakCompareAndSet(T obj, long expect, long update) argument
317 set(T obj, long newValue) argument
322 lazySet(T obj, long newValue) argument
327 get(T obj) argument
332 ensureProtectedAccess(T obj) argument
381 fullCheck(T obj) argument
388 compareAndSet(T obj, long expect, long update) argument
399 weakCompareAndSet(T obj, long expect, long update) argument
403 set(T obj, long newValue) argument
410 lazySet(T obj, long newValue) argument
414 get(T obj) argument
421 ensureProtectedAccess(T obj) argument
[all...]
H A DAtomicIntegerFieldUpdater.java92 * @param obj An object whose field to conditionally set
96 * @throws ClassCastException if {@code obj} is not an instance
99 public abstract boolean compareAndSet(T obj, int expect, int update); argument
112 * @param obj An object whose field to conditionally set
116 * @throws ClassCastException if {@code obj} is not an instance
119 public abstract boolean weakCompareAndSet(T obj, int expect, int update); argument
126 * @param obj An object whose field to set
129 public abstract void set(T obj, int newValue); argument
135 * @param obj An object whose field to set
139 public abstract void lazySet(T obj, in argument
149 get(T obj) argument
159 getAndSet(T obj, int newValue) argument
174 getAndIncrement(T obj) argument
190 getAndDecrement(T obj) argument
207 getAndAdd(T obj, int delta) argument
223 incrementAndGet(T obj) argument
239 decrementAndGet(T obj) argument
256 addAndGet(T obj, int delta) argument
300 fullCheck(T obj) argument
307 compareAndSet(T obj, int expect, int update) argument
312 weakCompareAndSet(T obj, int expect, int update) argument
317 set(T obj, int newValue) argument
322 lazySet(T obj, int newValue) argument
327 get(T obj) argument
332 ensureProtectedAccess(T obj) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
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...]
/openjdk7/jdk/src/share/classes/java/io/
H A DSerialCallbackContext.java40 private final Object obj; field in class:SerialCallbackContext
48 public SerialCallbackContext(Object obj, ObjectStreamClass desc) { argument
49 this.obj = obj;
56 return obj;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DReferenceChain.java43 JavaHeapObject obj; // Object referred to field in class:ReferenceChain
46 public ReferenceChain(JavaHeapObject obj, ReferenceChain next) { argument
47 this.obj = obj;
52 return obj;
/openjdk7/jdk/src/windows/native/sun/windows/
H A DObjectList.h36 obj = c;
40 AwtObject* obj; member in class:AwtObjectListItem
48 void Add(AwtObject* obj);
49 BOOL Remove(AwtObject* obj);
52 AwtObject* LookUp(AwtObject* obj);
/openjdk7/hotspot/src/share/vm/oops/
H A DcompiledICHolderKlass.cpp62 int compiledICHolderKlass::oop_size(oop obj) const {
63 assert(obj->is_compiledICHolder(), "must be compiledICHolder");
64 return compiledICHolderOop(obj)->object_size();
67 void compiledICHolderKlass::oop_follow_contents(oop obj) { argument
68 assert(obj->is_compiledICHolder(), "must be compiledICHolder");
69 compiledICHolderOop c = compiledICHolderOop(obj);
71 obj->follow_header();
78 oop obj) {
79 assert(obj->is_compiledICHolder(), "must be compiledICHolder");
80 compiledICHolderOop c = compiledICHolderOop(obj);
77 oop_follow_contents(ParCompactionManager* cm, oop obj) argument
89 oop_oop_iterate(oop obj, OopClosure* blk) argument
102 oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) argument
121 oop_adjust_pointers(oop obj) argument
135 oop_push_contents(PSPromotionManager* pm, oop obj) argument
139 oop_update_pointers(ParCompactionManager* cm, oop obj) argument
152 oop_print_on(oop obj, outputStream* st) argument
160 oop_print_value_on(oop obj, outputStream* st) argument
171 oop_verify_on(oop obj, outputStream* st) argument
[all...]

Completed in 75 milliseconds

1234567891011>>