Searched refs:value (Results 251 - 275 of 5449) sorted by relevance

<<11121314151617181920>>

/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DOMGVMCID.java37 * The vendor minor code ID reserved for OMG. This value is or'd with
38 * the high order 20 bits of the minor code to produce the minor value
41 static final int value = 0x4f4d0000; field in interface:OMGVMCID
H A DPRIVATE_MEMBER.java45 final short value = (short) (0L); field in interface:PRIVATE_MEMBER
H A DPUBLIC_MEMBER.java46 final short value = (short) (1L); field in interface:PUBLIC_MEMBER
H A DBAD_POLICY_TYPE.java38 final short value = (short) (2L); field in interface:BAD_POLICY_TYPE
H A DBAD_POLICY.java38 final short value = (short) (0L); field in interface:BAD_POLICY
H A DBAD_POLICY_VALUE.java29 * Contains the value used to indicate a policy value that is
36 * The value used to represent a bad policy value error
40 final short value = (short) (3L); field in interface:BAD_POLICY_VALUE
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/
H A DGCName.java41 private final String value; field in class:GCName
44 this.value = val;
46 public String value() { method in class:GCName
47 return value;
H A DG1HeapRegionType.java39 private final String value; field in class:G1HeapRegionType
42 this.value = val;
44 public String value() { method in class:G1HeapRegionType
45 return value;
H A DG1YCType.java37 private final String value; field in class:G1YCType
40 this.value = val;
42 public String value() { method in class:G1YCType
43 return value;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DFlags.java30 // value origin
40 private final String value; field in class:Flags
43 this.value = val;
45 public String value() { method in class:Flags
46 return value;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/memory/
H A DReferenceType.java37 private final String value; field in class:ReferenceType
40 this.value = val;
42 public String value() { method in class:ReferenceType
43 return value;
/openjdk9/jdk/src/java.base/share/classes/java/nio/file/attribute/
H A DDosFileAttributeView.java106 * Updates the value of the read-only attribute.
110 * implementation may, for example, require to read the existing value of
113 * @param value
114 * the new value of the attribute
123 void setReadOnly(boolean value) throws IOException; argument
126 * Updates the value of the hidden attribute.
130 * implementation may, for example, require to read the existing value of
133 * @param value
134 * the new value of the attribute
143 void setHidden(boolean value) throw argument
163 setSystem(boolean value) argument
183 setArchive(boolean value) argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/util/function/
H A DDoubleToLongFunction.java44 * @param value the function argument
47 long applyAsLong(double value); argument
H A DDoubleToIntFunction.java44 * @param value the function argument
47 int applyAsInt(double value); argument
H A DIntToDoubleFunction.java44 * @param value the function argument
47 double applyAsDouble(int value); argument
H A DIntToLongFunction.java44 * @param value the function argument
47 long applyAsLong(int value); argument
H A DLongToDoubleFunction.java44 * @param value the function argument
47 double applyAsDouble(long value); argument
H A DLongToIntFunction.java44 * @param value the function argument
47 int applyAsInt(long value); argument
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/
H A DJavacBug.java35 String value() default "";
/openjdk9/jdk/src/java.base/share/classes/java/lang/
H A DLiveStackFrameInfo.java76 * Convert primitive value to {@code PrimitiveSlot} object to represent
80 static PrimitiveSlot asPrimitive(int value) { argument
81 return new PrimitiveSlot32(value);
84 static PrimitiveSlot asPrimitive(long value) { argument
85 return new PrimitiveSlot64(value);
89 final int value; field in class:LiveStackFrameInfo.PrimitiveSlot32
90 PrimitiveSlot32(int value) { argument
91 this.value = value;
101 return value;
111 final long value; field in class:LiveStackFrameInfo.PrimitiveSlot64
112 PrimitiveSlot64(long value) argument
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/beans/decoder/
H A DElementHandler.java88 * Returns the value of the variable with specified identifier.
91 * @return the value of the variable
95 ValueObject value = getValueObject();
96 if (value.isVoid()) {
97 throw new IllegalStateException("The element does not return value");
99 return value.getValue();
107 * Returns the value of the parent element.
109 * @return the value of the parent element
113 ValueObject value = this.parent.getValueObject();
114 if (!value
138 addAttribute(String name, String value) argument
[all...]
/openjdk9/jdk/src/java.sql/share/classes/java/sql/
H A DDriverPropertyInfo.java42 * name and value. The <code>description</code> and <code>choices</code>
47 * @param value the current value, which may be null
49 public DriverPropertyInfo(String name, String value) { argument
51 this.value = value;
65 * The <code>required</code> field is <code>true</code> if a value must be
72 * The <code>value</code> field specifies the current value of
76 * may be null if no value i
78 public String value = null; field in class:DriverPropertyInfo
[all...]
/openjdk9/jdk/test/java/lang/annotation/ExceptionalToString/version1/
H A DFleeting.java28 int value(); method in interface:Fleeting
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DStringReference.java44 * @return the string value.
46 String value(); method in interface:StringReference
/openjdk9/jdk/test/java/beans/Statement/
H A DTest6707226.java27 * @summary Tests the value updating in Expression
35 Object value = new Object();
37 Expression expression = new Expression(value, Object.class, "new", null);
38 if (!value.equals(expression.getValue()))
39 throw new Error("the value is updated unexpectedly");
42 if (value.equals(expression.getValue()))
43 throw new Error("the value is not updated as expected");

Completed in 362 milliseconds

<<11121314151617181920>>