Searched refs:value (Results 176 - 200 of 5466) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/memo/
H A DMemoizedChar.java32 private char value; field in class:MemoizedChar
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedByte.java32 private byte value; field in class:MemoizedByte
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedObject.java32 private Object value; field in class:MemoizedObject
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedFloat.java32 private float value; field in class:MemoizedFloat
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedShort.java32 private short value; field in class:MemoizedShort
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedLong.java32 private long value; field in class:MemoizedLong
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
H A DMemoizedInt.java32 private int value; field in class:MemoizedInt
34 /** Should compute the value of this memoized object. This will only
38 /** Public accessor for the memoized value. */
41 value = computeValue();
44 return value;
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DTextSyntax.java33 * implementation of all attributes whose value is a string. The text attribute
36 * value is immutable.
49 * String value of this text attribute.
53 private String value; field in class:TextSyntax
65 * @param value text string
69 * @throws NullPointerException if {@code value} is {@code null}
71 protected TextSyntax(String value, Locale locale) { argument
72 this.value = verify (value);
76 private static String verify(String value) { argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/editors/
H A DNumberEditor.java38 Object value = getValue();
39 return (value != null)
40 ? value.toString()
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DEnumControl.java32 * value or setting. For example, a reverb control might provide several preset
59 * The current value.
61 private Object value; field in class:EnumControl
69 * @param value the initial control value
71 protected EnumControl(Type type, Object[] values, Object value) { argument
74 this.value = value;
78 * Sets the current value for the control. The default implementation simply
79 * sets the value a
87 setValue(Object value) argument
126 isValueSupported(Object value) argument
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/connect/
H A DConnector.java81 * information about the argument and its default value.
84 * information and default value.
89 * Specification for and value of a Connector argument.
121 * Returns the current value of the argument. Initially, the
122 * default value is returned. If the value is currently unspecified,
125 * @return the current value of the argument.
127 String value(); method in interface:Connector.Argument
130 * Sets the value of the argument.
131 * The value shoul
136 setValue(String value) argument
143 isValid(String value) argument
166 setValue(boolean value) argument
174 isValid(String value) argument
184 stringValueOf(boolean value) argument
211 setValue(int value) argument
218 isValid(String value) argument
225 isValid(int value) argument
235 stringValueOf(int value) argument
269 isValid(String value) argument
287 isValid(String value) argument
[all...]
/openjdk10/jdk/test/java/beans/XMLEncoder/4741757/
H A DTestFieldAccess.java39 private int value = -1; field in class:TestFieldAccess
43 public TestFieldAccess(int value) { argument
44 this.property = value;
/openjdk10/jdk/test/java/text/Format/DateFormat/
H A DDateFormatSymbolsCloneTest.java34 private int value; field in class:DateFormatSymbolsCloneTest
37 value = 1;
42 if (this.value == 0) {
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/arrays/
H A DDuplicateAnnotationValue.java11 String @A(value = 2, value = 1) [] s;
16 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/typeparams/
H A DDuplicateAnnotationValue.java9 class DuplicateAnnotationValue<@A(value = 2, value = 1) K> {
13 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/typeArgs/
H A DDuplicateAnnotationValue.java10 DuplicateAnnotationValue<@A(value = 2, value = 1) String> l;
14 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/parambounds/
H A DDuplicateAnnotationValue.java9 class DuplicateAnnotationValue<K extends @A(value = 2, value = 1) Object> {
13 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/receiver/
H A DDuplicateAnnotationValue.java10 void test(@A(value = 2, value = 1) DuplicateAnnotationValue this) { }
14 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/newarray/
H A DDuplicateAnnotationValue.java11 String[] a = new String @A(value = 2, value = 1) [5] ;
16 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/wildcards/
H A DDuplicateAnnotationValue.java10 DuplicateAnnotationValue<@A(value = 2, value = 1) ?> l;
14 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/common/innertypeparams/
H A DDuplicateAnnotationValue.java11 class Inner<@A(value = 2, value = 1) K> {}
16 @interface A { int value(); } method in interface:A
/openjdk10/langtools/test/tools/javac/synthesize/src/
H A DDouble.java33 value = v;
37 return value;
40 private double value; field in class:Double
H A DCharacter.java33 value = v;
37 return value;
40 private char value; field in class:Character
H A DBoolean.java33 value = v;
37 return value;
40 private boolean value; field in class:Boolean
H A DByte.java33 value = v;
37 return value;
40 private byte value; field in class:Byte

Completed in 95 milliseconds

1234567891011>>