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

<<11121314151617181920>>

/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DPUBLIC_MEMBER.java46 final short value = (short) (1L); field in interface:PUBLIC_MEMBER
H A DVM_TRUNCATABLE.java28 /** Defines the code used to represent a truncatable value type in
29 * a typecode. A value type is truncatable if it inherits "safely"
30 * from another value type, which means it can be cast to a more
37 /** The value representing a truncatable value type in
40 final short value = (short) (3L); field in interface:VM_TRUNCATABLE
H A DVM_CUSTOM.java28 /** Defines the code used to represent a custom marshalled value type in
35 /** The value representing a custom marshalled value type in
38 final short value = (short) (1L); field in interface:VM_CUSTOM
H A DVM_NONE.java29 * Defines the code used to represent the one of the values of a value type
40 * The value representing the value type in a typecode as per
43 final short value = (short) (0L); field in interface:VM_NONE
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
H A DUNSUPPORTED_POLICY_VALUE.java29 * A {@code PolicyErrorCode} which would be filled if the value
31 * valid type and within the valid range for that type, but this valid value
40 final short value = (short) (4L); field in interface:UNSUPPORTED_POLICY_VALUE
H A DUNSUPPORTED_POLICY.java39 final short value = (short) (1L); field in interface:UNSUPPORTED_POLICY
H A DVM_ABSTRACT.java35 /** The value representing an abstract interface value type in
38 final short value = (short) (2L); field in interface:VM_ABSTRACT
/openjdk10/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;
/openjdk10/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;
/openjdk10/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;
/openjdk10/hotspot/src/share/vm/metaprogramming/
H A DisIntegral.hpp48 : public IntegralConstant<bool, IsIntegral<T>::value && IsSigned<T>::value>
56 : public IntegralConstant<bool, IsIntegral<T>::value && !IsSigned<T>::value>
/openjdk10/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...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DModelTransform.java35 double transform(double value); argument
/openjdk10/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...]
/openjdk10/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...]
/openjdk10/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

Completed in 104 milliseconds

<<11121314151617181920>>