Searched refs:value (Results 126 - 150 of 5466) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/basic/
H A DJDK-8006852a.js32 this.value = val;
37 get value(){
41 set value(val){
48 print(f.value);
49 f.value = "test2";
50 print(f.value);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/encoding/
H A DMarshalOutputStream.java39 public void write_boolean(boolean value); argument
40 public void write_char(char value); argument
41 public void write_wchar(char value); argument
42 public void write_octet(byte value); argument
43 public void write_short(short value); argument
44 public void write_ushort(short value); argument
45 public void write_long(int value); argument
46 public void write_ulong(int value); argument
47 public void write_longlong(long value); argument
48 public void write_ulonglong(long value); argument
49 write_float(float value) argument
50 write_double(double value) argument
51 write_string(String value) argument
52 write_wstring(String value) argument
54 write_boolean_array(boolean[] value, int offset, int length) argument
55 write_char_array(char[] value, int offset, int length) argument
56 write_wchar_array(char[] value, int offset, int length) argument
57 write_octet_array(byte[] value, int offset, int length) argument
58 write_short_array(short[] value, int offset, int length) argument
59 write_ushort_array(short[] value, int offset, int length) argument
60 write_long_array(int[] value, int offset, int length) argument
61 write_ulong_array(int[] value, int offset, int length) argument
62 write_longlong_array(long[] value, int offset, int length) argument
63 write_ulonglong_array(long[] value, int offset, int length) argument
64 write_float_array(float[] value, int offset, int length) argument
65 write_double_array(double[] value, int offset, int length) argument
67 write_Object(org.omg.CORBA.Object value) argument
68 write_TypeCode(TypeCode value) argument
69 write_any(Any value) argument
70 write_Principal(Principal value) argument
76 write_value(java.io.Serializable value) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/portable/
H A DOutputStream.java51 * Writes a boolean value to this stream.
52 * @param value the value to be written.
54 public abstract void write_boolean(boolean value); argument
56 * Writes a char value to this stream.
57 * @param value the value to be written.
59 public abstract void write_char(char value); argument
61 * Writes a wide char value to this stream.
62 * @param value th
64 write_wchar(char value) argument
69 write_octet(byte value) argument
74 write_short(short value) argument
79 write_ushort(short value) argument
84 write_long(int value) argument
89 write_ulong(int value) argument
94 write_longlong(long value) argument
99 write_ulonglong(long value) argument
104 write_float(float value) argument
109 write_double(double value) argument
114 write_string(String value) argument
119 write_wstring(String value) argument
127 write_boolean_array(boolean[] value, int offset, int length) argument
135 write_char_array(char[] value, int offset, int length) argument
143 write_wchar_array(char[] value, int offset, int length) argument
151 write_octet_array(byte[] value, int offset, int length) argument
159 write_short_array(short[] value, int offset, int length) argument
167 write_ushort_array(short[] value, int offset, int length) argument
175 write_long_array(int[] value, int offset, int length) argument
183 write_ulong_array(int[] value, int offset, int length) argument
191 write_longlong_array(long[] value, int offset, int length) argument
199 write_ulonglong_array(long[] value, int offset, int length) argument
207 write_float_array(float[] value, int offset, int length) argument
215 write_double_array(double[] value, int offset, int length) argument
221 write_Object(org.omg.CORBA.Object value) argument
226 write_TypeCode(TypeCode value) argument
231 write_any(Any value) argument
239 write_Principal(Principal value) argument
258 write_fixed(java.math.BigDecimal value) argument
[all...]
/openjdk10/jdk/test/javax/naming/module/src/person/org/example/person/
H A DPerson.java56 public void setAudio(byte[] value) { argument
57 attrs.put(new BasicAttribute("audio", value));
60 public void setBusinessCategory(String value) { argument
61 attrs.put(new BasicAttribute("businessCategory", value));
64 public void setCarLicense(String value) { argument
65 attrs.put(new BasicAttribute("carLicense", value));
68 public void setDepartmentNumber(String value) { argument
69 attrs.put(new BasicAttribute("departmentNumber", value));
72 public void setDisplayName(String value) { argument
73 attrs.put(new BasicAttribute("displayName", value));
76 setEmployeeNumber(String value) argument
80 setEmployeeType(String value) argument
84 setGivenName(String value) argument
88 setHomePhoneNumber(String value) argument
92 setHomePostalAddress(String value) argument
96 setInitials(String value) argument
100 setJPEGPhoto(String value) argument
104 setMailAddress(String value) argument
108 setManagerName(String value) argument
112 setMobileNumber(String value) argument
116 setOrganizationName(String value) argument
120 setPagerNumber(String value) argument
124 setPhoto(String value) argument
128 setRoomNumber(String value) argument
132 setSecretaryName(String value) argument
136 setUserID(String value) argument
140 setUserCertificate(String value) argument
144 setX500UniqueID(String value) argument
148 setPreferredLanguage(String value) argument
152 setUserSMIMECertificate(String value) argument
156 setUserPKCS12(String value) argument
162 setDescription(String value) argument
166 setDestinationIndicator(String value) argument
170 setFaxNumber(String value) argument
174 setISDNNumber(String value) argument
178 setLocalityName(String value) argument
182 setOrganizationalUnitName(String value) argument
186 setPhysicalDeliveryOfficeName(String value) argument
190 setPostalAddress(String value) argument
194 setPostalCode(String value) argument
198 setPostOfficeBox(String value) argument
202 setPreferredDeliveryMethod(String value) argument
206 setRegisteredAddress(String value) argument
210 setSeeAlso(String value) argument
214 setStateOrProvinceName(String value) argument
218 setStreetAddress(String value) argument
222 setTelephoneNumber(String value) argument
226 setTeletexTerminalID(String value) argument
230 setTelexNumber(String value) argument
234 setTitle(String value) argument
238 setUserPassword(String value) argument
242 setX121Address(String value) argument
[all...]
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DBooleanValueImpl.java35 private boolean value; field in class:BooleanValueImpl
39 value = aValue;
44 return (value == ((BooleanValue)obj).value()) &&
62 public boolean value() { method in class:BooleanValueImpl
63 return value;
67 return value;
71 return (byte)(value ? 1 : 0);
75 return (char)(value ? 1 : 0);
79 return (short)(value
[all...]
H A DShortValueImpl.java35 private short value; field in class:ShortValueImpl
39 value = aValue;
44 return (value == ((ShortValue)obj).value()) &&
59 short other = obj.value();
60 return value() - other;
67 public short value() { method in class:ShortValueImpl
68 return value;
72 return (value == 0 ? false : true);
76 return (byte)value;
[all...]
H A DLongValueImpl.java35 private long value; field in class:LongValueImpl
39 value = aValue;
44 return (value == ((LongValue)obj).value()) &&
59 long other = obj.value();
60 if (value() < other) {
62 } else if (value() == other) {
73 public long value() { method in class:LongValueImpl
74 return value;
78 return (value
[all...]
H A DCharValueImpl.java36 private char value; field in class:CharValueImpl
40 value = aValue;
45 return (value == ((CharValue)obj).value()) &&
60 char other = obj.value();
61 return value() - other;
68 public char value() { method in class:CharValueImpl
69 return value;
73 return (value == 0 ? false : true);
77 return (byte)value;
[all...]
/openjdk10/langtools/test/tools/javac/processing/model/element/repeatingAnnotations/
H A DOfficialContainerBasicTest.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...]
H A DUnofficialContainerBasicTest.java38 value = Foo.class,
52 value = UnofficialContainer.class,
53 getAnnotation = "@UnofficialContainer(value={@Foo(value=1), @Foo(value=2)})",
54 getAnnotationsByType = {"@UnofficialContainer(value={@Foo(value=1), @Foo(value=2)})"})
55 @UnofficialContainer(value = {@Foo(value
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DDateTimeSyntax.java33 * implementation of all attributes whose value is a date and time.
35 * Under the hood, a date-time attribute is stored as a value of class
37 * value by calling {@link #getValue() getValue()}. A date-time attribute's
38 * {@code Date} value is established when it is constructed (see
40 * date-time attribute's value is immutable.
49 * {@code DateTimeSyntax} stores its value in the form of a
66 * This date-time attribute's {@code java.util.Date} value.
70 private Date value; field in class:DateTimeSyntax
76 * value.
78 * @param value {
81 DateTimeSyntax(Date value) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/beans/decoder/
H A DAccessorElementHandler.java39 private ValueObject value; field in class:AccessorElementHandler
52 * @param value the attribute value
55 public void addAttribute(String name, String value) { argument
57 this.name = value;
59 super.addAttribute(name, value);
64 * Adds the argument that is used to set the value of this element.
66 * @param argument the value of the element that contained in this one
70 if (this.value != null) {
74 this.value
104 setValue(String name, Object value) argument
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DIntegerExpression.java38 int value; field in class:IntegerExpression
43 IntegerExpression(int op, long where, Type type, int value) { argument
45 this.value = value;
55 // even if its value is in fact 7-bit ascii. See JLS 5.2.
60 return value == (byte)value;
62 return value == (short)value;
64 return value
[all...]
H A DDoubleExpression.java39 double value; field in class:DoubleExpression
44 public DoubleExpression(long where, double value) { argument
46 this.value = value;
50 * Get the value
53 return new Double(value);
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
68 return (Double.doubleToLongBits(value)
[all...]
H A DFloatExpression.java39 float value; field in class:FloatExpression
44 public FloatExpression(long where, float value) { argument
46 this.value = value;
50 * Get the value
53 return new Float(value);
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
68 return (Float.floatToIntBits(value)
[all...]
H A DLongExpression.java39 long value; field in class:LongExpression
44 public LongExpression(long where, long value) { argument
46 this.value = value;
50 * Get the value
53 return value;
57 * Check if the expression is equal to a value
60 return value == i;
64 * Check if the expression is equal to its default static value
67 return value
[all...]
/openjdk10/jdk/test/javax/management/query/
H A DTestQuery.java79 public void setBooleanAtt(boolean value) { argument
80 booleanAtt = value;
93 public void setDoubleAtt(double value) { argument
94 doubleAtt = value;
107 public void setFloatAtt(float value) { argument
108 floatAtt = value;
121 public void setIntAtt(int value) { argument
122 intAtt = value;
135 public void setIntegerAtt(Integer value) { argument
136 integerAtt = value;
149 setLongAtt(long value) argument
163 setStringAtt(String value) argument
[all...]
/openjdk10/jdk/test/java/beans/Introspector/8130937/
H A DTestBooleanBeanProperties.java60 PropertyDescriptor pd = BeanUtils.getPropertyDescriptor(cls, "value");
84 private static boolean getValue(PropertyDescriptor pd, String value) { argument
85 return (boolean) pd.getValue(value);
91 private int value; field in class:TestBooleanBeanProperties.Empty
94 return value;
97 public void setValue(int value) { argument
98 this.value = value;
104 private int value; field in class:TestBooleanBeanProperties.All
109 return value;
115 setValue(int value) argument
133 private int value; field in class:TestBooleanBeanProperties.BoundTrue
140 setValue(int value) argument
147 private int value; field in class:TestBooleanBeanProperties.BoundFalse
154 setValue(int value) argument
163 private int value; field in class:TestBooleanBeanProperties.BoundListener
169 setValue(int value) argument
186 private int value; field in class:TestBooleanBeanProperties.BoundFalseListener
193 setValue(int value) argument
210 private int value; field in class:TestBooleanBeanProperties.BoundTrueListener
217 setValue(int value) argument
235 private int value; field in class:TestBooleanBeanProperties.ExpertTrue
242 setValue(int value) argument
249 private int value; field in class:TestBooleanBeanProperties.ExpertFalse
256 setValue(int value) argument
266 private int value; field in class:TestBooleanBeanProperties.HiddenTrue
273 setValue(int value) argument
280 private int value; field in class:TestBooleanBeanProperties.HiddenFalse
287 setValue(int value) argument
297 private int value; field in class:TestBooleanBeanProperties.PreferredTrue
304 setValue(int value) argument
311 private int value; field in class:TestBooleanBeanProperties.PreferredFalse
318 setValue(int value) argument
328 private int value; field in class:TestBooleanBeanProperties.RequiredTrue
335 setValue(int value) argument
342 private int value; field in class:TestBooleanBeanProperties.RequiredFalse
349 setValue(int value) argument
359 private int value; field in class:TestBooleanBeanProperties.VisualUpdateTrue
366 setValue(int value) argument
373 private int value; field in class:TestBooleanBeanProperties.VisualUpdateFalse
380 setValue(int value) argument
[all...]
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Dvmreg_aarch64.hpp30 return (unsigned int) value() < (unsigned int) ConcreteRegisterImpl::max_gpr;
34 return value() >= ConcreteRegisterImpl::max_gpr && value() < ConcreteRegisterImpl::max_fpr;
41 return ::as_Register(value() >> 1);
45 assert( is_FloatRegister() && is_even(value()), "must be" );
47 return ::as_FloatRegister((value() - ConcreteRegisterImpl::max_gpr) >> 1);
52 return is_even(value());
/openjdk10/jdk/src/java.management/share/classes/sun/management/counter/perf/
H A DLongArrayCounterSnapshot.java36 long[] value; field in class:LongArrayCounterSnapshot
40 int vectorLength, long[] value) {
42 this.value = value;
46 return value;
50 return value;
54 return value[index];
39 LongArrayCounterSnapshot(String name, Units u, Variability v, int flags, int vectorLength, long[] value) argument
H A DByteArrayCounterSnapshot.java36 byte[] value; field in class:ByteArrayCounterSnapshot
40 int vectorLength, byte[] value) {
42 this.value = value;
46 return value;
50 return value;
54 return value[index];
39 ByteArrayCounterSnapshot(String name, Units u, Variability v, int flags, int vectorLength, byte[] value) argument
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DModuleResolution.java36 final int value; field in class:ModuleResolution
38 ModuleResolution(int value) { argument
39 this.value = value;
42 public int value() { method in class:ModuleResolution
43 return value;
51 return (value & DO_NOT_RESOLVE_BY_DEFAULT) != 0;
55 return (value & WARN_DEPRECATED) != 0;
59 return (value & WARN_DEPRECATED_FOR_REMOVAL) != 0;
63 return (value
[all...]
/openjdk10/hotspot/test/compiler/intrinsics/mathexact/
H A DGVNTest.java36 public static int value = 93; field in class:GVNTest
39 result = runTest(value + i);
40 result = runTest(value + i);
41 result = runTest(value + i);
42 result = runTest(value + i);
43 result = runTest(value + i);
47 public static int runTest(int value) { argument
48 int v = value + value;
52 sum += Math.addExact(value, valu
[all...]
/openjdk10/hotspot/test/native/utilities/
H A Dtest_count_trailing_zeros.cpp35 uintx value = ix | jx; local
36 EXPECT_EQ(MIN2(i, j), count_trailing_zeros(value))
37 << "value = " << value;
44 uintx value = ~(uintx)0; local
45 for ( ; value != 0; value >>= 1, --i) {
46 EXPECT_EQ(0u, count_trailing_zeros(value))
47 << "value = " << value;
53 uintx value = ~(uintx)0; local
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DAttributeValue.java32 private final int value; field in class:AttributeValue
35 protected AttributeValue(int value, String[] names) { argument
37 log.finest("value = " + value + ", names = " + names);
41 if ((value < 0) || (names == null) || (value >= names.length)) {
45 this.value = value;
51 return value;
54 return names[value];
[all...]

Completed in 184 milliseconds

1234567891011>>