Searched refs:value (Results 151 - 175 of 5449) sorted by relevance

1234567891011>>

/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/generator/
H A DGeneratorConstants.java49 private String value; field in class:GeneratorConstants
51 private GeneratorConstants(String value) { argument
52 this.value = value;
56 return value;
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceConstants.java45 private String value; field in class:WebServiceConstants
47 private WebServiceConstants(String value) { argument
48 this.value = value;
52 return value;
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/xml/soap/
H A DMimeHeader.java30 * An object that stores a MIME header name and its value. One or more
40 private String value; field in class:MimeHeader
44 * name and value.
47 * @param value a {@code String} giving the value of the header
49 public MimeHeader(String name, String value) { argument
51 this.value = value;
64 * Returns the value of this {@code MimeHeader} object.
66 * @return the value o
[all...]
/openjdk9/jdk/test/java/beans/Introspector/4750368/com/foo/test/
H A DComponent.java28 private int value; field in class:Component
39 return this.value;
42 public void setValue(int value) { argument
43 this.value = value;
/openjdk9/jdk/test/java/beans/Introspector/
H A DTest7189112.java34 if (null == BeanUtils.findPropertyDescriptor(MyBean.class, "value").getWriteMethod()) {
41 private Object value; field in class:Test7189112.BaseBean
44 return this.value;
47 public void setValue(Object value) { argument
48 this.value = value;
H A DTest7186794.java36 if (null == BeanUtils.findPropertyDescriptor(MyBean.class, "value").getWriteMethod()) {
43 protected List<String> value; field in class:Test7186794.BaseBean
45 public void setValue(List<String> value) { argument
46 this.value = value;
52 return super.value;
/openjdk9/langtools/test/tools/javac/DefiniteAssignment/8156180/
H A DT8156180.java13 T8156180(int value) { argument
18 a1 = value;
19 b1 = value;
20 c1 = value;
21 d1 = value;
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/options/
H A DOption.java35 * @param <T> option value type, for example a boolean or something more complex
38 /** the option value */
39 protected T value; field in class:Option
41 Option(final T value) { argument
42 this.value = value;
46 * Return the value of an option
47 * @return the option value
50 return value;
/openjdk9/langtools/test/tools/javac/processing/model/element/repeatingAnnotations/
H A DRepeatableOverrideATest.java37 @BarInherited(value = 1)
38 @BarInherited(value = 2)
42 value = BarInherited.class,
43 getAnnotation = "@BarInherited(value=3)",
44 getAnnotationsByType = {"@BarInherited(value=3)"},
57 value = BarInheritedContainer.class,
59 + "value={@BarInherited(value=1), @BarInherited(value=2)})",
61 + "value
[all...]
H A DOfficialContainerInheritedTest.java37 @BarInheritedContainer(value = {@BarInherited(value = 1), @BarInherited(value = 2)})
41 value = BarInherited.class,
44 "@BarInherited(value=1)",
45 "@BarInherited(value=2)"
57 value = BarInheritedContainer.class,
59 + "value={@BarInherited(value=1), @BarInherited(value
[all...]
H A DRepeatableOverrideBTest.java37 @BarInherited(value = 0)
41 value = BarInherited.class,
42 getAnnotation = "@BarInherited(value=0)",
44 "@BarInherited(value=1)",
45 "@BarInherited(value=2)"
59 value = BarInheritedContainer.class,
61 + "value={@BarInherited(value=1), @BarInherited(value=2)})",
63 + "value
[all...]
H A DUnofficialContainerInheritedTest.java38 @UnofficialInheritedContainer(value = {@FooInherited(value = 1),@FooInherited(value = 2)})
42 value = FooInherited.class,
55 value = UnofficialInheritedContainer.class,
57 + "value={@FooInherited(value=1), @FooInherited(value=2)})",
59 + "value={@FooInherited(value
[all...]
/openjdk9/test/lib/jdk/test/lib/hprof/model/
H A DHackJavaValue.java49 private String value; field in class:HackJavaValue
52 public HackJavaValue(String value, int size) { argument
53 this.value = value;
58 return value;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/
H A DLog.java49 private static native void log(@ConstantNodeParameter ForeignCallDescriptor logPrimitive, int typeChar, long value, boolean newline); argument
54 public static void print(boolean value) { argument
55 log(LOG_PRIMITIVE, JavaKind.Boolean.getTypeChar(), value ? 1L : 0L, false);
58 public static void print(byte value) { argument
59 log(LOG_PRIMITIVE, JavaKind.Byte.getTypeChar(), value, false);
62 public static void print(char value) { argument
63 log(LOG_PRIMITIVE, JavaKind.Char.getTypeChar(), value, false);
66 public static void print(short value) { argument
67 log(LOG_PRIMITIVE, JavaKind.Short.getTypeChar(), value, false);
70 public static void print(int value) { argument
74 print(long value) argument
85 printf(String format, long value) argument
97 print(float value) argument
109 print(double value) argument
121 print(String value) argument
129 println(boolean value) argument
133 println(byte value) argument
137 println(char value) argument
141 println(short value) argument
145 println(int value) argument
149 println(long value) argument
153 println(float value) argument
165 println(double value) argument
177 println(String value) argument
[all...]
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/util/
H A DConstants.java46 public static Object decode(Object value, Type type) { argument
47 if (value instanceof Integer) {
48 int i = (Integer) value;
56 return value;
60 * Returns a string representation of a constant value (given in
63 public static String format(Object value, Type type) { argument
64 value = decode(value, type);
66 case BYTE: return formatByte((Byte) value);
67 case LONG: return formatLong((Long) value);
82 format(Object value) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DDataOutputStream.java29 * for marshalling custom value types. This interface is used by user
30 * written custom marshalling code for custom value types.
37 * Writes the Any value to the output stream.
38 * @param value The value to be written.
40 void write_any (org.omg.CORBA.Any value); argument
43 * Writes the boolean value to the output stream.
44 * @param value The value to be written.
46 void write_boolean (boolean value); argument
52 write_char(char value) argument
58 write_wchar(char value) argument
64 write_octet(byte value) argument
70 write_short(short value) argument
77 write_ushort(short value) argument
83 write_long(int value) argument
89 write_ulong(int value) argument
95 write_longlong(long value) argument
102 write_ulonglong(long value) argument
108 write_float(float value) argument
114 write_double(double value) argument
122 write_string(String value) argument
128 write_wstring(String value) argument
134 write_Object(org.omg.CORBA.Object value) argument
140 write_Abstract(java.lang.Object value) argument
146 write_Value(java.io.Serializable value) argument
152 write_TypeCode(org.omg.CORBA.TypeCode value) argument
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.asm.amd64/src/org/graalvm/compiler/asm/amd64/
H A DAMD64MacroAssembler.java45 public final void decrementq(Register reg, int value) { argument
46 if (value == Integer.MIN_VALUE) {
47 subq(reg, value);
50 if (value < 0) {
51 incrementq(reg, -value);
54 if (value == 0) {
57 if (value == 1 && UseIncDec) {
60 subq(reg, value);
64 public final void decrementq(AMD64Address dst, int value) { argument
65 if (value
83 incrementq(Register reg, int value) argument
102 incrementq(AMD64Address dst, int value) argument
141 decrementl(Register reg, int value) argument
160 decrementl(AMD64Address dst, int value) argument
179 incrementl(Register reg, int value) argument
198 incrementl(AMD64Address dst, int value) argument
274 flog(Register dest, Register value, boolean base10) argument
285 fsin(Register dest, Register value) argument
291 fcos(Register dest, Register value) argument
297 ftan(Register dest, Register value) argument
309 trigPrologue(Register value) argument
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/memo/
H A DMemoizedBoolean.java32 private boolean value; field in class:MemoizedBoolean
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 DMemoizedDouble.java32 private double value; field in class:MemoizedDouble
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 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 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 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;

Completed in 337 milliseconds

1234567891011>>