Searched refs:obj (Results 151 - 175 of 2493) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/nosecurity/treeapi/
H A Dspread.js46 visitFunctionCall: function (node, obj) {
47 obj.push(convert(node))
49 visitVariable: function (node, obj) {
50 obj.push(convert(node))
H A Dtemplate_literal.js36 visitTemplateLiteral : function (node, obj) {
37 obj.push(convert(node))
H A Ddestructuring_assign.js43 visitAssignment : function (node, obj) {
44 obj.push(convert(node))
46 visitVariable : function (node, obj) {
47 obj.push(convert(node))
H A Dgenerator.js42 var obj = {
60 visitFunctionDeclaration : function (node, obj) {
61 obj.push(convert(node))
63 visitVariable : function (node, obj) {
64 obj.push(convert(node))
H A Ddestructuring_decl.js38 var { x, y } = obj;
42 visitAssignment : function (node, obj) {
43 obj.push(convert(node))
45 visitVariable : function (node, obj) {
46 obj.push(convert(node))
/openjdk10/nashorn/test/script/sandbox/
H A Dclassbind.js32 var obj = {}
35 Object.bindProperties(obj, Java.type("java.lang.Class"));
/openjdk10/nashorn/test/script/basic/
H A DJDK-8041995.js35 var obj = {
38 print(obj.z);
41 var obj = {
47 return Array.prototype.lastIndexOf.call(obj, -Infinity) === 4;
56 var obj = {
64 for (var i in obj) {
65 print(obj[i]);
H A DNASHORN-86.js31 var obj = {};
34 print(obj instanceof true);
43 print(obj instanceof 3.14);
52 print(obj instanceof "hello");
61 print(obj instanceof foo);
H A Dassign_builtin_func_props.js37 function assignAll(obj) {
38 if (! (obj instanceof ObjectType)) {
41 var props = PropNamesGetter(obj);
43 var value = obj[props[p]];
44 obj[props[p]] = value;
H A DNASHORN-691.js53 var obj = {};
54 obj.__noSuchProperty__ = func(3);
55 f(obj);
56 obj.__noSuchProperty__ = func("hello");
57 f(obj);
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/
H A DBinding.java63 * the class name of {@code obj} (or null if {@code obj} 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 * {@code getClassName()} will return the class name of {@code obj}
82 * (or null if {@code obj} 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...]
/openjdk10/test/lib/sun/hotspot/code/
H A DNMethod.java32 Object[] obj = wb.getNMethod(method, isOsr);
33 return obj == null ? null : new NMethod(obj);
35 private NMethod(Object[] obj) { argument
36 super((Object[])obj[0]);
37 assert obj.length == 5;
38 comp_level = (Integer) obj[1];
39 insts = (byte[]) obj[2];
40 compile_id = (Integer) obj[3];
41 entry_point = (Long) obj[
[all...]
/openjdk10/jdk/src/java.desktop/windows/native/libawt/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);
/openjdk10/nashorn/samples/
H A Dfjson.js34 var obj = FlexiJSON.parse(<<EOF variable
55 print(obj.foo);
56 print(obj.bar);
57 print(obj.regex);
58 print(obj.str);
/openjdk10/test/lib/jdk/test/lib/hprof/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;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DOopField.java45 public Oop getValue(Oop obj) { argument
46 if (!isVMField() && !obj.isInstance() && !obj.isArray()) {
49 return obj.getHeap().newOop(getValueAsOopHandle(obj));
53 public OopHandle getValueAsOopHandle(Oop obj) { argument
54 if (!isVMField() && !obj.isInstance() && !obj.isArray()) {
55 throw new InternalError(obj.toString());
57 return obj
60 getValue(VMObject obj) argument
65 getValueAsOopHandle(VMObject obj) argument
69 setValue(Oop obj) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/reflect/
H A DUnsafeStaticBooleanFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return Boolean.valueOf(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 DUnsafeQualifiedStaticBooleanFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return Boolean.valueOf(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 DUnsafeQualifiedDoubleFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return Double.valueOf(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
74 set(Object obj, Object value) argument
115 setBoolean(Object obj, boolean z) argument
121 setByte(Object obj, byte b) argument
127 setChar(Object obj, char c) argument
133 setShort(Object obj, short s) argument
139 setInt(Object obj, int i) argument
145 setLong(Object obj, long l) argument
151 setFloat(Object obj, float f) argument
157 setDouble(Object obj, double d) argument
[all...]
H A DUnsafeStaticFloatFieldAccessorImpl.java35 public Object get(Object obj) throws IllegalArgumentException { argument
36 return Float.valueOf(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...]
H A DUnsafeQualifiedStaticIntegerFieldAccessorImpl.java37 public Object get(Object obj) throws IllegalArgumentException { argument
38 return Integer.valueOf(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...]
/openjdk10/hotspot/src/share/vm/oops/
H A DoopsHierarchy.hpp93 oop(const oop& o) { set_obj(o.obj()); }
94 oop(const volatile oop& o) { set_obj(o.obj()); }
100 oopDesc* obj() const volatile { return _o; } function in class:oop
103 oopDesc* operator->() const { return obj(); }
104 bool operator==(const oop o) const { return obj() == o.obj(); }
105 bool operator==(void *p) const { return obj() == p; }
106 bool operator!=(const volatile oop o) const { return obj() != o.obj(); }
107 bool operator!=(void *p) const { return obj() !
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/util/concurrent/atomic/
H A DAtomicIntegerFieldUpdater.java110 * @param obj An object whose field to conditionally set
115 public abstract boolean compareAndSet(T obj, int expect, int update); argument
128 * @param obj An object whose field to conditionally set
133 public abstract boolean weakCompareAndSet(T obj, int expect, int update); argument
140 * @param obj An object whose field to set
143 public abstract void set(T obj, int newValue); argument
149 * @param obj An object whose field to set
153 public abstract void lazySet(T obj, int newValue); argument
159 * @param obj An object whose field to get
162 public abstract int get(T obj); argument
172 getAndSet(T obj, int newValue) argument
187 getAndIncrement(T obj) argument
203 getAndDecrement(T obj) argument
220 getAndAdd(T obj, int delta) argument
236 incrementAndGet(T obj) argument
252 decrementAndGet(T obj) argument
269 addAndGet(T obj, int delta) argument
291 getAndUpdate(T obj, IntUnaryOperator updateFunction) argument
313 updateAndGet(T obj, IntUnaryOperator updateFunction) argument
338 getAndAccumulate(T obj, int x, IntBinaryOperator accumulatorFunction) argument
364 accumulateAndGet(T obj, int x, IntBinaryOperator accumulatorFunction) argument
466 accessCheck(T obj) argument
475 throwAccessCheckException(T obj) argument
489 compareAndSet(T obj, int expect, int update) argument
494 weakCompareAndSet(T obj, int expect, int update) argument
499 set(T obj, int newValue) argument
504 lazySet(T obj, int newValue) argument
509 get(T obj) argument
514 getAndSet(T obj, int newValue) argument
519 getAndAdd(T obj, int delta) argument
524 getAndIncrement(T obj) argument
528 getAndDecrement(T obj) argument
532 incrementAndGet(T obj) argument
536 decrementAndGet(T obj) argument
540 addAndGet(T obj, int delta) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/
H A DBC_instanceof.java41 Object obj;
43 obj = object2;
45 obj = object3;
47 obj = object4;
49 obj = null;
51 return obj instanceof TestClass;
81 public static boolean testEmpty(Object obj) { argument
82 if (obj instanceof TestClass) {
85 if (!(obj instanceof TestClass)) {
/openjdk10/hotspot/src/share/vm/gc/serial/
H A DdefNewGeneration.inline.hpp43 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
44 assert (oopDesc::is_oop(obj), "expected an oop while scanning weak refs");
64 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
65 _rs->inline_write_ref_field_gc(p, obj);
76 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
77 assert (oopDesc::is_oop(obj), "expected an oop while scanning weak refs");
86 oop obj = oopDesc::load_decode_heap_oop_not_null(p); local
87 if (((HeapWord*)obj < _boundary) && GenCollectedHeap::heap()->is_in_reserved(p)) {
88 _rs->inline_write_ref_field_gc(p, obj);

Completed in 125 milliseconds

1234567891011>>