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

1234567891011>>

/openjdk9/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...]
/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DBooleanValueImpl.java32 private boolean value; field in class:BooleanValueImpl
37 value = aValue;
42 return (value == ((BooleanValue)obj).value())
60 public boolean value() { method in class:BooleanValueImpl
61 return value;
65 return value;
69 return(byte)((value)?1:0);
73 return(char)((value)?1:0);
77 return(short)((value)
[all...]
H A DShortValueImpl.java32 private short value; field in class:ShortValueImpl
37 value = aValue;
42 return (value == ((ShortValue)obj).value()) &&
57 short other = obj.value();
58 return value() - other;
65 public short value() { method in class:ShortValueImpl
66 return value;
70 return(value == 0)?false:true;
74 return(byte)value;
[all...]
H A DCharValueImpl.java32 private char value; field in class:CharValueImpl
37 value = aValue;
42 return (value == ((CharValue)obj).value()) &&
57 char other = obj.value();
58 return value() - other;
65 public char value() { method in class:CharValueImpl
66 return value;
70 return(value == 0)?false:true;
74 return(byte)value;
[all...]
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/jdk/src/java.desktop/share/classes/javax/print/attribute/
H A DDateTimeSyntax.java35 * implementation of all attributes whose value is a date and time.
37 * Under the hood, a date-time attribute is stored as a value of class
38 * {@code java.util.Date}. You can get a date-time attribute's Date value by
40 * Date value is established when it is constructed (see {@link
42 * constructed, a date-time attribute's value is immutable.
52 * DateTimeSyntax stores its value in the form of a {@code java.util.Date}
66 * This date-time attribute's {@code java.util.Date} value.
69 private Date value; field in class:DateTimeSyntax
75 * {@code java.util.Date} value.
77 * @param value {
82 DateTimeSyntax(Date value) argument
[all...]
/openjdk9/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 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 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 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...]
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/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());
/openjdk9/jdk/src/java.management/share/classes/sun/management/counter/perf/
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
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
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/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...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/closure/
H A DConstant.java31 private Object value ; field in class:Constant
33 public Constant( Object value )
35 this.value = value ;
40 return value ;
/openjdk9/hotspot/src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/
H A DVMFlag.java41 * The flag's value.
43 public final Object value; field in class:VMFlag
45 VMFlag(String name, String type, Object value) { argument
48 this.value = value;
53 return String.format("Flag[type=%s, name=%s, value=%s]", type, name, value);
/openjdk9/jdk/make/src/classes/build/tools/generatenimbus/
H A DUIDefault.java32 private T value; field in class:UIDefault
39 return value;
42 public void setValue(T value) { argument
43 this.value = value;
/openjdk9/hotspot/test/runtime/jni/ReturnJNIWeak/
H A DReturnJNIWeak.java40 public final int value; field in class:ReturnJNIWeak.TestObject
42 public TestObject(int value) { argument
43 this.value = value;
54 private static void remember(int value) { argument
55 TestObject o = new TestObject(value);
67 private static void checkValue(int value) throws Exception { argument
73 if (t.value != value) {
74 throw new RuntimeException("Incorrect value");
[all...]
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/ap/
H A DConst.java47 private String value; field in class:Const
49 private Const(String value) { argument
50 this.value = value;
54 return value;

Completed in 270 milliseconds

1234567891011>>