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

1234567891011>>

/openjdk9/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);
/openjdk9/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...]
/openjdk9/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;
/openjdk9/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
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DDoubleValueImpl.java32 private double value; field in class:DoubleValueImpl
37 value = aValue;
42 return (value == ((DoubleValue)obj).value()) &&
50 double other = obj.value();
51 if (value() < other) {
53 } else if (value() == other) {
71 public double value() { method in class:DoubleValueImpl
72 return value;
76 return(value
[all...]
H A DIntegerValueImpl.java32 private int value; field in class:IntegerValueImpl
37 value = aValue;
42 return (value == ((IntegerValue)obj).value()) &&
57 int other = obj.value();
58 return (value()<other ? -1 : (value()==other ? 0 : 1));
65 public int value() { method in class:IntegerValueImpl
66 return value;
70 return(value
[all...]
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DPUSH.java42 * @param value to be pushed
44 public PUSH(ConstantPoolGen cp, int value) { argument
45 if((value >= -1) && (value <= 5)) // Use ICONST_n
46 instruction = INSTRUCTIONS[Constants.ICONST_0 + value];
47 else if((value >= -128) && (value <= 127)) // Use BIPUSH
48 instruction = new BIPUSH((byte)value);
49 else if((value >= -32768) && (value <
59 PUSH(ConstantPoolGen cp, boolean value) argument
67 PUSH(ConstantPoolGen cp, float value) argument
82 PUSH(ConstantPoolGen cp, long value) argument
95 PUSH(ConstantPoolGen cp, double value) argument
108 PUSH(ConstantPoolGen cp, String value) argument
119 PUSH(ConstantPoolGen cp, Number value) argument
136 PUSH(ConstantPoolGen cp, Character value) argument
144 PUSH(ConstantPoolGen cp, Boolean value) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
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
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
/openjdk9/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;
/openjdk9/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
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/xml/ws/
H A DHolder.java31 * Holds a value of type {@code T}.
33 * @param <T> Type of the value in the holder.
41 * The value contained in the holder.
43 public T value; field in class:Holder
46 * Creates a new holder with a {@code null} value.
52 * Create a new holder with the specified value.
54 * @param value The value to be stored in the holder.
56 public Holder(T value) { argument
57 this.value
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DOutputInt.java44 * The value field.
49 public int value; field in class:OutputInt

Completed in 287 milliseconds

1234567891011>>