Searched refs:value (Results 51 - 75 of 5466) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DConstantLongValue.java34 private long value; field in class:ConstantLongValue
36 public ConstantLongValue(long value) { argument
37 this.value = value;
45 return value;
50 value = stream.readLong();
63 tty.print(value);
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/decoder/
H A DVarElementHandler.java29 * This element retrieves the value of specified variable.
46 private ValueObject value; field in class:VarElementHandler
59 * @param value the attribute value
62 public void addAttribute(String name, String value) { argument
64 this.value = ValueObjectImpl.create(getVariable(value));
66 super.addAttribute(name, value);
71 * Returns the value of this element.
73 * @return the value o
[all...]
/openjdk10/jdk/src/java.desktop/unix/classes/sun/java2d/xr/
H A DMutableInteger.java35 private int value; field in class:MutableInteger
37 public MutableInteger(int value) { argument
38 this.setValue(value);
50 public void setValue(int value) { argument
51 this.value = value;
55 return value;
/openjdk10/langtools/test/tools/javac/processing/model/element/repeatingAnnotations/
H A DMixRepeatableAndOfficialContainerInheritedB2Test.java38 @BarInheritedContainer(value = {@BarInherited(value = 1), @BarInherited(value = 2)})
39 @BarInherited(value = 3)
43 value = BarInherited.class,
44 getAnnotation = "@BarInherited(value=0)",
45 getAnnotationsByType = {"@BarInherited(value=0)"},
58 value = BarInheritedContainer.class,
60 + "value={@BarInherited(value
[all...]
H A DMixSingularAndUnofficialContainerInheritedA2Test.java38 @FooInherited(value = 0)
42 value = FooInherited.class,
43 getAnnotation = "@FooInherited(value=3)",
44 getAnnotationsByType = {"@FooInherited(value=3)"},
58 value = UnofficialInheritedContainer.class,
60 + "value={@FooInherited(value=1), @FooInherited(value=2)})",
62 + "value={@FooInherited(value
[all...]
H A DMixRepeatableAndOfficialContainerInheritedA2Test.java38 @BarInherited(value = 0)
42 value = BarInherited.class,
43 getAnnotation = "@BarInherited(value=3)",
45 "@BarInherited(value=1)",
46 "@BarInherited(value=2)",
47 "@BarInherited(value=3)"
62 value = BarInheritedContainer.class,
64 + "value={@BarInherited(value=1), @BarInherited(value
[all...]
H A DMixSingularAndUnofficialContainerInheritedB2Test.java38 @UnofficialInheritedContainer(value = {@FooInherited(value = 1), @FooInherited(value = 2)})
39 @FooInherited(value = 3)
43 value = FooInherited.class,
44 getAnnotation = "@FooInherited(value=0)",
45 getAnnotationsByType = {"@FooInherited(value=0)"},
58 value = UnofficialInheritedContainer.class,
60 + "value={@FooInherited(value
[all...]
H A DRepeatableBasicTest.java38 value = Bar.class,
41 "@Bar(value=1)",
42 "@Bar(value=2)"
55 value = BarContainer.class,
56 getAnnotation = "@BarContainer(value={@Bar(value=1), @Bar(value=2)})",
57 getAnnotationsByType = {"@BarContainer(value={@Bar(value=1), @Bar(value
[all...]
/openjdk10/jdk/test/javax/management/query/
H A DTestQueryMBean.java39 public void setBooleanAtt(boolean value); argument
49 public void setDoubleAtt(double value); argument
59 public void setFloatAtt(float value); argument
69 public void setIntAtt(int value); argument
79 public void setIntegerAtt(Integer value); argument
89 public void setLongAtt(long value); argument
99 public void setStringAtt(String value); argument
/openjdk10/jdk/src/java.base/share/classes/java/util/function/
H A DDoublePredicate.java46 * @param value the input argument
50 boolean test(double value); argument
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
[all...]
H A DIntPredicate.java46 * @param value the input argument
50 boolean test(int value); argument
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
[all...]
H A DLongPredicate.java46 * @param value the input argument
50 boolean test(long value); argument
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DDoubleValueImpl.java35 private double value; field in class:DoubleValueImpl
39 value = aValue;
44 return (value == ((DoubleValue)obj).value()) &&
52 double other = obj.value();
53 if (value() < other) {
55 } else if (value() == other) {
73 public double value() { method in class:DoubleValueImpl
74 return value;
78 return (value
[all...]
H A DIntegerValueImpl.java35 private int value; field in class:IntegerValueImpl
39 value = aValue;
44 return (value == ((IntegerValue)obj).value()) &&
59 int other = obj.value();
60 return (value()<other ? -1 : (value()==other ? 0 : 1));
67 public int value() { method in class:IntegerValueImpl
68 return value;
72 return (value
[all...]
H A DFloatValueImpl.java35 private float value; field in class:FloatValueImpl
39 value = aValue;
44 return (value == ((FloatValue)obj).value()) &&
59 float other = obj.value();
60 if (value() < other) {
62 } else if (value() == other) {
73 public float value() { method in class:FloatValueImpl
74 return value;
78 return (value
[all...]
/openjdk10/nashorn/test/src/jdk/nashorn/test/models/
H A DOuterClass.java30 private final String value; field in class:OuterClass
32 public OuterClass(final String value) { argument
33 this.value = value;
42 private final String value; field in class:OuterClass.InnerStaticClass
44 public InnerStaticClass(final String value) { argument
45 this.value = value;
50 return "InnerStaticClass[value=" + value
57 InnerNonStaticClass(final String value) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/net/ftp/
H A DFtpReplyCode.java29 * to the numerical value according to the various RFCs (RFC 959 in
87 private final int value; field in class:FtpReplyCode
90 this.value = val;
94 * Returns the numerical value of the code.
96 * @return the numerical value.
99 return value;
104 * This means beginning with a 1 (which means a value between 100 and 199)
110 return value >= 100 && value < 200;
115 * This means beginning with a 2 (which means a value betwee
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DPUSH.java40 * @param value to be pushed
42 public PUSH(final ConstantPoolGen cp, final int value) { argument
43 if ((value >= -1) && (value <= 5)) {
44 instruction = InstructionConst.getInstruction(Const.ICONST_0 + value);
45 } else if (Instruction.isValidByte(value)) {
46 instruction = new BIPUSH((byte) value);
47 } else if (Instruction.isValidShort(value)) {
48 instruction = new SIPUSH((short) value);
50 instruction = new LDC(cp.addInteger(value));
59 PUSH(final ConstantPoolGen cp, final boolean value) argument
68 PUSH(final ConstantPoolGen cp, final float value) argument
85 PUSH(final ConstantPoolGen cp, final long value) argument
100 PUSH(final ConstantPoolGen cp, final double value) argument
115 PUSH(final ConstantPoolGen cp, final String value) argument
129 PUSH(final ConstantPoolGen cp, final ObjectType value) argument
141 PUSH(final ConstantPoolGen cp, final Number value) argument
163 PUSH(final ConstantPoolGen cp, final Character value) argument
172 PUSH(final ConstantPoolGen cp, final Boolean value) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DCTX_RESTRICT_SCOPE.java39 * CTX_RESTRICT_SCOPE.value, "id*");
48 * The field containing the <code>int</code> value of a
51 int value = 15; field in interface:CTX_RESTRICT_SCOPE
H A DARG_INOUT.java32 * <code>ARG_INOUT.value</code> is one of the possible values used to
41 * "argumentIdentifier", myAny, org.omg.CORBA.ARG_INOUT.value);
50 * The constant value indicating an argument used for both
53 int value = 3; field in interface:ARG_INOUT
H A DARG_IN.java32 * <code>ARG_IN.value</code> is one of the possible values used to
41 * "IDLArgumentIdentifier", myAny, org.omg.CORBA.ARG_IN.value);
50 * The value indicating an input argument.
52 int value = 1; field in interface:ARG_IN
H A DARG_OUT.java32 * <code>ARG_OUT.value</code> is one of the possible values used
41 * "argumentIdentifier", myAny, org.omg.CORBA.ARG_OUT.value);
50 * The constant value indicating an output argument.
52 int value = 2; field in interface:ARG_OUT
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DGCWhen.java34 private final String value; field in class:GCWhen
37 this.value = val;
39 public String value() { method in class:GCWhen
40 return value;
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DOutputInt.java44 * The value field.
49 public int value; field in class:OutputInt
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLDescriptorKind.java55 WSDLDescriptorKind(int value) { argument
56 this.value = value;
59 private final int value; field in class:WSDLDescriptorKind

Completed in 148 milliseconds

1234567891011>>