Searched refs:value (Results 201 - 225 of 5466) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/basic/
H A DJDK-8074545.js1035 var value = obj["p" + i];
1036 Assert.assertTrue(typeof value === "object");
1037 Assert.assertTrue(value.x === i);
H A DNASHORN-174.js37 function check(index, value) {
38 if (nums[index] != value) {
39 fail("expected value @ " + index + " is " + value);
H A DNASHORN-428.js25 * NASHORN-428 : Redefining a non-configurable property with the "same value" is permitted, but -0.0 and +0.0 are not "same value"
34 value: -0,
40 "0": { value: +0 }
51 "0": { value: -0 }
/openjdk10/langtools/test/tools/javac/synthesize/src/
H A DFloat.java33 value = v;
37 return value;
40 private float value; field in class:Float
H A DInteger.java33 value = v;
37 return value;
40 private int value; field in class:Integer
H A DShort.java33 value = v;
37 return value;
40 private short value; field in class:Short
H A DLong.java33 value = v;
37 return value;
40 private long value; field in class:Long
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/closure/
H A DFuture.java33 private Object value ; field in class:Future
35 public Future( Closure value )
38 this.closure = (Closure)value ;
39 this.value = null ;
46 value = closure.evaluate() ;
49 return value ;
/openjdk10/jdk/src/java.management/share/classes/sun/management/counter/perf/
H A DLongCounterSnapshot.java36 long value; field in class:LongCounterSnapshot
40 long value) {
42 this.value = value;
46 return Long.valueOf(value);
50 * Get the value of this Long performance counter
53 return value;
39 LongCounterSnapshot(String name, Units u, Variability v, int flags, long value) argument
H A DStringCounterSnapshot.java36 String value; field in class:StringCounterSnapshot
40 String value) {
42 this.value = value;
46 return value;
50 return value;
39 StringCounterSnapshot(String name, Units u, Variability v, int flags, String value) argument
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DIntExpression.java41 public IntExpression(long where, int value) { argument
42 super(INTVAL, where, Type.tInt, value);
51 return value == ((IntExpression)obj).value;
61 return value;
68 out.print(value);
/openjdk10/jdk/test/java/beans/XMLEncoder/
H A DTest7092744.java51 void setValue(T value); argument
56 private Integer value; field in class:Test7092744.Bean
59 return this.value;
62 public void setValue(Integer value) { argument
63 this.value = value;
/openjdk10/langtools/test/jdk/javadoc/doclet/testRepeatedAnnotations/pkg1/
H A DC.java26 @ContainerSynthNotDoc(value={@ContaineeSynthDoc,@ContaineeSynthDoc})
27 @RegContainerValDoc(value={@RegContaineeNotDoc,@RegContaineeNotDoc},y=3)
28 @ContainerValDoc(value={@ContaineeNotDoc,@ContaineeNotDoc},x=1)
29 @RegContainerValNotDoc(value={@RegContaineeDoc,@RegContaineeDoc},y=4)
30 @ContainerValNotDoc(value={@ContaineeNotDoc,@ContaineeNotDoc},x=2)
33 @ContainerSynthNotDoc(value={@ContaineeSynthDoc})
/openjdk10/langtools/test/tools/javac/processing/model/element/repeatingAnnotations/
H A DSingularBasicTest.java38 value = Foo.class,
39 getAnnotation = "@Foo(value=0)",
40 getAnnotationsByType = {"@Foo(value=0)"},
52 @Foo(value = 0)
56 value = Foo.class,
57 getAnnotation = "@Foo(value=0)",
58 getAnnotationsByType = {"@Foo(value=0)"},
70 @Foo(value = 0)
74 value = Foo.class,
75 getAnnotation = "@Foo(value
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/
H A Dparser.js52 function (prop, value) {
53 if (typeof(value) == 'string' && prop == "value") {
56 return value.startsWith('/')? eval(value) : value.substring(1);
59 return value;
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/action/
H A DActionParameters.java26 import jdk.test.failurehandler.value.DefaultValue;
27 import jdk.test.failurehandler.value.Value;
31 @DefaultValue (value = "1")
35 @DefaultValue (value = "500")
39 @DefaultValue (value = "false")
43 @DefaultValue (value = "" + 20_000L)
/openjdk10/jdk/test/java/beans/Introspector/4058433/
H A DTestBeanProperty.java44 PropertyDescriptor pd = BeanUtils.getPropertyDescriptor(type, "value");
101 Object value = pd.getValue("enumerationValues");
102 return value instanceof Object[] && Arrays.equals((Object[]) value, expected);
106 private int value; field in class:TestBeanProperty.B
109 return this.value;
112 public void setValue(int value) { argument
113 this.value = value;
119 private int value; field in class:TestBeanProperty.BL
125 setValue(int value) argument
140 private int value; field in class:TestBeanProperty.BLF
147 setValue(int value) argument
161 private int value; field in class:TestBeanProperty.E
168 setValue(int value) argument
174 private int value; field in class:TestBeanProperty.H
181 setValue(int value) argument
187 private int value; field in class:TestBeanProperty.P
194 setValue(int value) argument
200 private int value; field in class:TestBeanProperty.R
207 setValue(int value) argument
213 private int value; field in class:TestBeanProperty.VU
220 setValue(int value) argument
226 private int value; field in class:TestBeanProperty.D
234 setValue(int value) argument
241 private int value; field in class:TestBeanProperty.EVD
248 setValue(int value) argument
255 private int value; field in class:TestBeanProperty.EVE
262 setValue(int value) argument
268 private int value; field in class:TestBeanProperty.EV
277 setValue(int value) argument
283 private int value; field in class:TestBeanProperty.EVL
290 setValue(int value) argument
299 private int value; field in class:TestBeanProperty.EVX
308 setValue(int value) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/
H A DLegacyHookPutFields.java42 * Put the value of the named boolean field into the persistent field.
44 public void put(String name, boolean value){ argument
45 fields.put(name, new Boolean(value));
49 * Put the value of the named char field into the persistent fields.
51 public void put(String name, char value){ argument
52 fields.put(name, new Character(value));
56 * Put the value of the named byte field into the persistent fields.
58 public void put(String name, byte value){ argument
59 fields.put(name, new Byte(value));
63 * Put the value o
65 put(String name, short value) argument
72 put(String name, int value) argument
79 put(String name, long value) argument
87 put(String name, float value) argument
94 put(String name, double value) argument
101 put(String name, Object value) argument
[all...]
/openjdk10/hotspot/src/cpu/sparc/vm/
H A Dvmreg_sparc.hpp28 inline bool is_Register() { return value() >= 0 && value() < ConcreteRegisterImpl::max_gpr; }
29 inline bool is_FloatRegister() { return value() >= ConcreteRegisterImpl::max_gpr &&
30 value() < ConcreteRegisterImpl::max_fpr; }
32 assert( is_Register() && is_even(value()), "even-aligned GPR name" );
34 return ::as_Register(value()>>1);
40 return ::as_FloatRegister( value() - ConcreteRegisterImpl::max_gpr );
45 int v = value();
/openjdk10/hotspot/src/share/vm/runtime/
H A DcommandLineFlagConstraintsCompiler.hpp33 * whenever flag's value changes. If the constraint fails the function should return
34 * an appropriate error value.
37 Flag::Error AliasLevelConstraintFunc(intx value, bool verbose);
39 Flag::Error CICompilerCountConstraintFunc(intx value, bool verbose);
41 Flag::Error AllocatePrefetchDistanceConstraintFunc(intx value, bool verbose);
43 Flag::Error AllocatePrefetchInstrConstraintFunc(intx value, bool verbose);
45 Flag::Error AllocatePrefetchStepSizeConstraintFunc(intx value, bool verbose);
47 Flag::Error CompileThresholdConstraintFunc(intx value, bool verbose);
49 Flag::Error OnStackReplacePercentageConstraintFunc(intx value, bool verbose);
51 Flag::Error CodeCacheSegmentSizeConstraintFunc(uintx value, boo
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/dtdparser/
H A DXmlNames.java43 * Returns true if the value is a legal XML name.
45 * @param value the string being tested
47 public static boolean isName(String value) { argument
48 if (value == null)
51 char c = value.charAt(0);
54 for (int i = 1; i < value.length(); i++)
55 if (!XmlChars.isNameChar(value.charAt(i)))
61 * Returns true if the value is a legal "unqualified" XML name, as
66 * @param value the string being tested
68 public static boolean isUnqualifiedName(String value) { argument
92 isQualifiedName(String value) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DOptionalLong.java33 * A container object which may or may not contain a {@code long} value. If a
34 * value is present, {@code isPresent()} returns {@code true} and
35 * {@code getAsLong()} returns the value.
38 * value are provided, such as {@link #orElse(long) orElse()}
39 * (returns a default value if no value is present) and
41 * action if a value is present).
43 * <p>This is a <a href="../lang/doc-files/ValueBased.html">value-based</a>
63 * If true then the value is present, otherwise indicates no value i
66 private final long value; field in class:OptionalLong
100 OptionalLong(long value) argument
111 of(long value) argument
[all...]
H A DOptionalInt.java33 * A container object which may or may not contain an {@code int} value. If a
34 * value is present, {@code isPresent()} returns {@code true} and
35 * {@code getAsInt()} returns the value.
38 * value are provided, such as {@link #orElse(int) orElse()}
39 * (returns a default value if no value is present) and
41 * action if a value is present).
43 * <p>This is a <a href="../lang/doc-files/ValueBased.html">value-based</a>
63 * If true then the value is present, otherwise indicates no value i
66 private final int value; field in class:OptionalInt
100 OptionalInt(int value) argument
111 of(int value) argument
[all...]
/openjdk10/jdk/make/src/classes/build/tools/cldrconverter/
H A DStringEntry.java29 private String value; field in class:StringEntry
35 StringEntry(String qName, Container parent, String key, String value) { argument
37 this.value = value;
43 if (value != null) {
44 value += s;
46 value = s;
52 return value;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/reflect/
H A DByteVector.java33 public void put(int index, byte value); argument
34 public void add(byte value); argument

Completed in 177 milliseconds

1234567891011>>