Searched refs:value (Results 1 - 25 of 5449) sorted by relevance

1234567891011>>

/openjdk9/nashorn/test/script/basic/
H A DNASHORN-113.js31 var value = "hello"; variable
32 print(value);
33 value = 12;
34 print(value);
H A DNASHORN-19.js49 print("value is 'hello' as expected");
60 var value = "hello"; variable
61 var scope = {value:10};
62 var scope2 = {value:20};
65 print(value);
66 value = 11;
67 print(value);
69 print(value);
70 value = 21;
71 print(value);
[all...]
/openjdk9/langtools/test/tools/javac/treeannotests/
H A DTest.java30 int value(); method in interface:Test
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/util/
H A DTypeConversion.java26 * Provides low-level value checks and conversion for signed and unsigned values of size 1, 2, and 4
31 public static boolean isS1(long value) { argument
32 return value >= Byte.MIN_VALUE && value <= Byte.MAX_VALUE;
35 public static boolean isU1(long value) { argument
36 return value >= 0 && value <= 0xFF;
39 public static boolean isS2(long value) { argument
40 return value >= Short.MIN_VALUE && value <
43 isU2(long value) argument
47 isS4(long value) argument
51 isU4(long value) argument
55 asS1(long value) argument
60 asU1(long value) argument
65 asS2(long value) argument
70 asU2(long value) argument
75 asS4(long value) argument
80 asU4(long value) argument
[all...]
/openjdk9/langtools/test/tools/javac/diags/examples/
H A DDuplicateAnnotationMemberValue.java24 // key: compiler.err.duplicate.annotation.member.value
27 int value(); method in interface:Anno
30 @Anno(value=1, value=2)
H A DCyclicAnnoElement.java27 X value(); method in interface:X
H A DDefaultAllowedInIntfAnnotationMember.java27 String value() default "";
H A DInvalidAnnoMemberType.java27 Object value(); method in interface:InvalidAnnoMemberType
/openjdk9/langtools/test/tools/javac/boxing/
H A DT6348760.java33 T value; field in class:T6348760
36 T6348760(T value) { argument
37 this.value = value;
41 i.value++;
42 i.value--;
43 ++i.value;
44 --i.value;
45 n = +i.value;
46 n = -i.value;
[all...]
H A DT6369051.java34 public T value; field in class:Value
39 value = value + 1;
40 value += 1;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DIntegerEnum.java31 private int value; field in class:IntegerEnum
35 protected IntegerEnum(int value) { argument
36 this.value = value;
40 return value;
/openjdk9/jdk/test/java/beans/XMLEncoder/
H A DBean.java27 private Object value = DEFAULT; field in class:Bean
30 return this.value;
33 public void setValue(Object value) { argument
34 this.value = value;
/openjdk9/jdk/src/java.base/share/native/libfdlibm/
H A Ds_ldexp.c30 double ldexp(double value, int exp) argument
32 double ldexp(value, exp)
33 double value; int exp;
36 if(!finite(value)||value==0.0) return value;
37 value = scalbn(value,exp);
38 if(!finite(value)||value
[all...]
/openjdk9/jdk/src/java.desktop/unix/classes/sun/java2d/xr/
H A DXcbRequestCounter.java37 long value; field in class:XcbRequestCounter
39 public XcbRequestCounter(long value) { argument
40 this.value = value;
43 public void setValue(long value) { argument
44 this.value = value;
48 return value;
52 value += v;
55 if (value > MAX_UIN
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/text/
H A DAnnotation.java29 * An Annotation object is used as a wrapper for a text attribute value if
35 * the same value for this attribute, the attribute still cannot be applied to
36 * the combined range as a whole with this value.
37 * <li>The attribute or its value usually do no longer apply if the underlying text is
48 * Wrapping the attribute value into an Annotation object guarantees that
60 * Constructs an annotation record with the given value, which
63 * @param value the value of the attribute
65 public Annotation(Object value) { argument
66 this.value
87 private Object value; field in class:Annotation
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotConstantLoadAction.java31 private int value; field in class:HotSpotConstantLoadAction
33 HotSpotConstantLoadAction(int value) { argument
34 this.value = value;
37 public int value() { method in class:HotSpotConstantLoadAction
38 return value;
/openjdk9/langtools/test/tools/javac/annotations/neg/
H A DArrayLit.java12 int[] value(); method in interface:ArrayLit
/openjdk9/langtools/test/tools/javac/cast/intersection/model/
H A DIntersectionTypeInfo.java28 String[] value(); method in interface:IntersectionTypeInfo
/openjdk9/langtools/test/tools/javac/generics/bridges/
H A DBridges.java25 Bridge[] value(); method in interface:Bridges
/openjdk9/langtools/test/tools/javac/multicatch/model/
H A DUnionTypeInfo.java28 String[] value(); method in interface:UnionTypeInfo
/openjdk9/test/lib/jdk/test/lib/process/
H A DExitCode.java34 public final int value; field in class:ExitCode
36 ExitCode(int value) { argument
37 this.value = value;
/openjdk9/jdk/src/jdk.jcmd/share/classes/sun/tools/jstat/
H A DLiteral.java37 private Object value; field in class:Literal
39 public Literal(Object value) { argument
41 this.value = value;
45 return value;
48 public void setValue(Object value) { argument
49 this.value = value;
53 return value.toString();
/openjdk9/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DIntegerSyntax.java35 * integer attribute's integer value by calling {@link #getValue()
36 * getValue()}. An integer attribute's integer value is
39 * value is immutable.
49 * This integer attribute's integer value.
52 private int value; field in class:IntegerSyntax
55 * Construct a new integer attribute with the given integer value.
57 * @param value Integer value.
59 protected IntegerSyntax(int value) { argument
60 this.value
76 IntegerSyntax(int value, int lowerBound, int upperBound) argument
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/
H A DValueUtil.java36 public static boolean isIllegal(Value value) { argument
37 assert value != null;
38 return Value.ILLEGAL.equals(value);
41 public static boolean isIllegalJavaValue(JavaValue value) { argument
42 assert value != null;
43 return Value.ILLEGAL.equals(value);
46 public static boolean isLegal(Value value) { argument
47 return !isIllegal(value);
50 public static boolean isVirtualObject(JavaValue value) { argument
51 assert value !
55 asVirtualObject(JavaValue value) argument
60 isConstantJavaValue(JavaValue value) argument
65 asConstantJavaValue(JavaValue value) argument
70 isAllocatableValue(Value value) argument
75 asAllocatableValue(Value value) argument
80 isStackSlot(Value value) argument
85 asStackSlot(Value value) argument
90 isRegister(Value value) argument
95 asRegister(Value value) argument
99 asRegisterValue(Value value) argument
104 asRegister(Value value, PlatformKind kind) argument
[all...]
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DFloatValueImpl.java32 private float value; field in class:FloatValueImpl
37 value = aValue;
42 return (value == ((FloatValue)obj).value()) &&
57 float other = obj.value();
58 if (value() < other) {
60 } else if (value() == other) {
71 public float value() { method in class:FloatValueImpl
72 return value;
76 return(value
[all...]

Completed in 119 milliseconds

1234567891011>>