Searched refs:value (Results 26 - 50 of 5449) sorted by relevance

1234567891011>>

/openjdk9/nashorn/test/examples/
H A Dint-micro.js41 function uint32(value) {
43 value >>> 0;
44 value >>> 0;
45 value >>> 0;
46 value >>> 0;
47 value >>> 0;
48 value >>> 0;
49 value >>> 0;
50 value >>> 0;
51 value >>>
[all...]
/openjdk9/jdk/test/java/text/Format/NumberFormat/
H A DBug4990596.java40 public int value; field in class:Bug4990596.MutableInteger
44 public MutableInteger(int value) { argument
45 this.value = value;
48 return this.value;
51 return this.value;
54 return this.value;
57 return this.value;
/openjdk9/langtools/test/tools/javac/diags/examples/
H A DAnnoValueMustBeAnnotation.java24 // key: compiler.err.annotation.value.must.be.annotation
27 String value(); method in interface:Anno1
31 Anno1 value(); method in interface:Anno2
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/corba/
H A DPrincipalImpl.java37 private byte[] value; field in class:PrincipalImpl
39 public void name(byte[] value) argument
41 this.value = value;
46 return value;
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/
H A DJAnnotationStringValue.java31 * Captures the value of the annotation.
39 * The value of the Annotation member
41 private final JExpression value; field in class:JAnnotationStringValue
43 JAnnotationStringValue(JExpression value) { argument
44 this.value = value;
48 f.g(value);
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLESwaps.h53 #define SWAPW(value) (value)
55 #define SWAPW(value) LESwaps::swapWord(value)
58 #define SWAPW(value) (LESwaps::isBigEndian() ? (value) : LESwaps::swapWord(value))
69 #define SWAPL(value) (value)
71 #define SWAPL(value) LESwap
121 swapWord(le_uint16 value) argument
136 swapLong(le_uint32 value) argument
[all...]
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DByteValueImpl.java32 private byte value; field in class:ByteValueImpl
37 value = aValue;
42 return (value == ((ByteValue)obj).value())
57 byte other = obj.value();
58 return value() - other;
66 public byte value() { method in class:ByteValueImpl
67 return value;
71 return(value == 0)?false:true;
75 return value;
[all...]
H A DLongValueImpl.java32 private long value; field in class:LongValueImpl
37 value = aValue;
42 return (value == ((LongValue)obj).value()) &&
57 long other = obj.value();
58 if (value() < other) {
60 } else if (value() == other) {
71 public long value() { method in class:LongValueImpl
72 return value;
76 return(value
[all...]
/openjdk9/jdk/test/java/beans/XMLEncoder/4741757/
H A DTestSecurityManager.java37 private int value; field in class:TestSecurityManager
39 public TestSecurityManager(int value) { argument
40 this.value = value;
44 return this.value;
/openjdk9/langtools/make/test/crules/CodingRulesAnalyzerPlugin/
H A DTest.java11 public void check1(String value) { argument
12 Assert.check(value.trim().length() > 0, "value=" + value); //fail
14 public void check2(String value) { argument
15 Assert.check(value.trim().length() > 0, "value=" + "value"); //ok
17 public void check3(String value) { argument
18 Assert.check(value
20 check4(String value) argument
23 check5(String value) argument
26 check6(String value) argument
29 check7(String value) argument
32 check8(String value) argument
[all...]
/openjdk9/test/lib/jdk/test/lib/hprof/model/
H A DJavaByte.java44 byte value; field in class:JavaByte
46 public JavaByte(byte value) { argument
47 this.value = value;
51 return "0x" + Integer.toString(((int) value) & 0xff, 16);
H A DJavaBoolean.java44 boolean value; field in class:JavaBoolean
46 public JavaBoolean(boolean value) { argument
47 this.value = value;
51 return "" + value;
H A DJavaChar.java44 char value; field in class:JavaChar
46 public JavaChar(char value) { argument
47 this.value = value;
51 return "" + value;
H A DJavaShort.java44 short value; field in class:JavaShort
46 public JavaShort(short value) { argument
47 this.value = value;
51 return "" + value;
H A DJavaDouble.java44 double value; field in class:JavaDouble
46 public JavaDouble(double value) { argument
47 this.value = value;
51 return Double.toString(value);
H A DJavaFloat.java44 float value; field in class:JavaFloat
46 public JavaFloat(float value) { argument
47 this.value = value;
51 return Float.toString(value);
H A DJavaLong.java44 long value; field in class:JavaLong
46 public JavaLong(long value) { argument
47 this.value = value;
51 return Long.toString(value);
H A DJavaInt.java44 int value; field in class:JavaInt
46 public JavaInt(int value) { argument
47 this.value = value;
51 return "" + value;
/openjdk9/nashorn/test/script/basic/
H A DJDK-8058179.js33 Object.defineProperty(global, "value", {
35 print("getting value");
36 global["value"] = "value 2";
37 return "value 1";
39 set: function(value) {
40 print("setting value: " + value);
41 delete global["value"];
42 global["value"]
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.api.directives/src/org/graalvm/compiler/api/directives/
H A DGraalDirectives.java55 * Returns a boolean value indicating whether the method is executed in Graal-compiled code.
69 * instruction. The probability must be a value between 0.0 and 1.0 (inclusive).
83 * @param probability the probability value between 0.0 and 1.0 that should be injected
112 * Consume a value, making sure the compiler doesn't optimize away the computation of this
113 * value, even if it is otherwise unused.
116 public static void blackhole(boolean value) { argument
120 * Consume a value, making sure the compiler doesn't optimize away the computation of this
121 * value, even if it is otherwise unused.
124 public static void blackhole(byte value) { argument
128 * Consume a value, makin
132 blackhole(short value) argument
140 blackhole(char value) argument
148 blackhole(int value) argument
156 blackhole(long value) argument
164 blackhole(float value) argument
172 blackhole(double value) argument
180 blackhole(Object value) argument
187 bindToRegister(boolean value) argument
194 bindToRegister(byte value) argument
201 bindToRegister(short value) argument
208 bindToRegister(char value) argument
215 bindToRegister(int value) argument
222 bindToRegister(long value) argument
229 bindToRegister(float value) argument
236 bindToRegister(double value) argument
243 bindToRegister(Object value) argument
259 opaque(boolean value) argument
270 opaque(byte value) argument
281 opaque(short value) argument
292 opaque(char value) argument
303 opaque(int value) argument
314 opaque(long value) argument
325 opaque(float value) argument
336 opaque(double value) argument
347 opaque(T value) argument
351 guardingNonNull(T value) argument
[all...]
/openjdk9/langtools/test/tools/javac/processing/model/element/repeatingAnnotations/
H A DMixRepeatableAndOfficialContainerBasicTest.java39 value = Bar.class,
40 getAnnotation = "@Bar(value=0)",
42 "@Bar(value=0)",
43 "@Bar(value=1)",
44 "@Bar(value=2)"
59 value = BarContainer.class,
60 getAnnotation = "@BarContainer(value={@Bar(value=1), @Bar(value=2)})",
61 getAnnotationsByType = {"@BarContainer(value
[all...]
H A DMixSingularAndUnofficialContainerBasicTest.java38 value = Foo.class,
39 getAnnotation = "@Foo(value=0)",
40 getAnnotationsByType = {"@Foo(value=0)"},
54 value = UnofficialContainer.class,
56 + "value={@Foo(value=1), @Foo(value=2)})",
58 + "value={@Foo(value=1), @Foo(value
[all...]
H A DRepeatableOfficialContainerBasicTest.java38 value = Bar.class,
52 value = BarContainer.class,
55 "@BarContainer(value={@Bar(value=1)})",
56 "@BarContainer(value={@Bar(value=2)})"})
57 @BarContainer(value = {@Bar(value = 1)})
58 @BarContainer(value = {@Bar(value
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DConstantDoubleValue.java34 private double value; field in class:ConstantDoubleValue
36 public ConstantDoubleValue(double value) { argument
37 this.value = value;
45 return value;
50 value = stream.readDouble();
63 tty.print(value);
H A DConstantIntValue.java34 private int value; field in class:ConstantIntValue
36 public ConstantIntValue(int value) { argument
37 this.value = value;
45 return value;
50 value = stream.readSignedInt();
63 tty.print(value);

Completed in 220 milliseconds

1234567891011>>