Searched refs:value (Results 226 - 250 of 5466) sorted by relevance

1234567891011>>

/openjdk10/jdk/test/com/sun/corba/se/impl/io/
H A DCustomOutputStream.java35 public void write_value(Serializable value, Class clz) { argument
44 public void write_boolean(boolean value) { argument
48 public void write_char(char value) { argument
52 public void write_wchar(char value) { argument
56 public void write_octet(byte value) { argument
60 public void write_short(short value) { argument
64 public void write_ushort(short value) { argument
68 public void write_long(int value) { argument
72 public void write_ulong(int value) { argument
76 public void write_longlong(long value) { argument
80 write_ulonglong(long value) argument
84 write_float(float value) argument
88 write_double(double value) argument
92 write_string(String value) argument
96 write_wstring(String value) argument
100 write_boolean_array(boolean[] value, int offset, int length) argument
105 write_char_array(char[] value, int offset, int length) argument
110 write_wchar_array(char[] value, int offset, int length) argument
115 write_octet_array(byte[] value, int offset, int length) argument
120 write_short_array(short[] value, int offset, int length) argument
125 write_ushort_array(short[] value, int offset, int length) argument
130 write_long_array(int[] value, int offset, int length) argument
135 write_ulong_array(int[] value, int offset, int length) argument
140 write_longlong_array(long[] value, int offset, int length) argument
145 write_ulonglong_array(long[] value, int offset, int length) argument
150 write_float_array(float[] value, int offset, int length) argument
155 write_double_array(double[] value, int offset, int length) argument
160 write_Object(org.omg.CORBA.Object value) argument
164 write_TypeCode(TypeCode value) argument
168 write_any(Any value) argument
172 write_Principal(Principal value) argument
180 write_fixed(java.math.BigDecimal value) argument
[all...]
/openjdk10/jdk/test/sun/security/krb5/config/
H A Dcomments.conf12 value = true
/openjdk10/langtools/test/tools/javac/annotations/
H A DT7043371.java32 String value(); method in interface:Anno
36 @Anno(value=A.a)
/openjdk10/langtools/test/tools/javac/annotations/neg/
H A DRecovery1.java13 String value(); method in interface:MyAnnotation
18 @MyAnnotation (value="baz", markerToo="not default")
/openjdk10/langtools/test/tools/javac/annotations/pos/
H A DPrimitives.java34 Class value() default void.class;
39 Class[] value() default { void.class };
57 check(T1.class.getAnnotation(A.class).value(), void.class);
58 check(T1.class.getAnnotation(B.class).value().length, 1);
59 check(T1.class.getAnnotation(B.class).value()[0], void.class);
61 check(T2.class.getAnnotation(A.class).value(), int.class);
62 check(T2.class.getAnnotation(B.class).value().length, 11);
63 check(T2.class.getAnnotation(B.class).value()[0], void.class);
64 check(T2.class.getAnnotation(B.class).value()[1], byte.class);
65 check(T2.class.getAnnotation(B.class).value()[
[all...]
/openjdk10/langtools/test/tools/javac/
H A DFinalThisReference.java36 System.out.println(b.value);
41 final B value = this; field in class:B
/openjdk10/langtools/test/tools/javac/annotations/repeatingAnnotations/
H A DWrongVersion.java18 int value(); method in interface:Ann
22 Ann[] value(); method in interface:AnnContainer
/openjdk10/langtools/test/tools/javac/processing/model/element/repeatingAnnotations/
H A DSingularInheritedATest.java37 @FooInherited(value = 0)
41 value = FooInherited.class,
42 getAnnotation = "@FooInherited(value=0)",
43 getAnnotationsByType = {"@FooInherited(value=0)"},
/openjdk10/langtools/test/tools/javac/generics/
H A DCrash01.java34 public A value; field in class:Crash01
36 value.testClass();
/openjdk10/test/failure_handler/src/share/classes/jdk/test/failurehandler/value/
H A DValueParser.java24 package jdk.test.failurehandler.value;
27 Object parse(Class<?> type, String value, String delimiter); argument
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DPropUtil.java33 * Properties can be strings or type-specific value objects.
58 String value = System.getProperty(name);
59 if (value == null) {
63 return !value.equalsIgnoreCase("false");
65 return value.equalsIgnoreCase("true");
73 * Get the value of the specified property.
87 * Interpret the value object as a boolean,
90 private static boolean getBoolean(Object value, boolean def) { argument
91 if (value == null) {
94 if (value instanceo
[all...]
/openjdk10/jdk/make/src/classes/build/tools/cldrconverter/
H A DStringArrayEntry.java29 private String[] value; field in class:StringArrayEntry
33 value = new String[length];
37 if (value[index] != null) {
38 StringBuilder sb = new StringBuilder(value[index]);
40 value[index] = sb.toString();
42 value[index] = new String(characters, start, length);
56 // supposed to be inherited separately. Although value is the partially filled array,
61 if (getKey().startsWith("Month") && value[0] != null && value[12] == null) {
62 value[1
[all...]
/openjdk10/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/
H A DUnits.java46 private final int value; field in class:Units
49 * An Invalid Units value.
75 * a unit of measure, this Units value serves to distinguish String
100 return value;
104 * Maps an integer value to its corresponding Units attribute.
105 * If the integer value does not have a corresponding Units enum
106 * value, then {@link Units#INVALID} is returned.
108 * @param value an integer representation of counter Units
109 * @return Units - the Units object for the given <code>value</code>
112 public static Units toUnits(int value) { argument
121 Units(String name, int value) argument
[all...]
H A DVariability.java45 private int value; field in class:Variability
48 * An invalid Variablity value.
82 return value;
86 * Maps an integer value its corresponding Variability attribute.
87 * If the integer value does not have a corresponding Variability enum
88 * value, the {@link Variability#INVALID} is returned
90 * @param value an integer representation of a Variability attribute
92 * <code>value</code> or {@link Variability#INVALID}
95 public static Variability toVariability(int value) { argument
97 if (value <
104 Variability(String name, int value) argument
[all...]
/openjdk10/jdk/src/java.management/share/classes/sun/management/counter/
H A DUnits.java46 private final int value; field in class:Units
49 * An Invalid Units value.
75 * a unit of measure, this Units value serves to distinguish String
100 return value;
104 * Maps an integer value to its corresponding Units attribute.
105 * If the integer value does not have a corresponding Units enum
106 * value, then {@link Units#INVALID} is returned.
108 * @param value an integer representation of counter Units
109 * @return Units - the Units object for the given <code>value</code>
112 public static Units toUnits(int value) { argument
121 Units(String name, int value) argument
[all...]
H A DVariability.java45 private int value; field in class:Variability
48 * An invalid Variablity value.
82 return value;
86 * Maps an integer value its corresponding Variability attribute.
87 * If the integer value does not have a corresponding Variability enum
88 * value, the {@link Variability#INVALID} is returned
90 * @param value an integer representation of a Variability attribute
92 * <code>value</code> or {@link Variability#INVALID}
95 public static Variability toVariability(int value) { argument
97 if (value <
104 Variability(String name, int value) argument
[all...]
/openjdk10/test/lib/jdk/test/lib/hprof/model/
H A DJavaStatic.java41 * Represents the value of a static field of a JavaClass
47 private JavaThing value; field in class:JavaStatic
49 public JavaStatic(JavaField field, JavaThing value) { argument
51 this.value = value;
56 if (value instanceof JavaObjectRef) {
57 id = ((JavaObjectRef)value).getId();
59 value = value.dereference(snapshot, field);
60 if (value
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/runtime/
H A DVMReg.java37 private int value; field in class:VMReg
59 value = i;
63 return value;
68 return (int) matcherRegEncodeAddr.getCIntegerAt(value, 1, true);
70 return value;
78 return ((VMReg) arg).value == value;
81 public boolean lessThan(VMReg arg) { return value < arg.value; }
82 public boolean lessThanOrEqual(VMReg arg) { return value <
[all...]
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/
H A DDecodingCallback.java46 * DecodingCallback callback = (name, value) -> System.out.println(name + ", " + value);
68 * @param value
69 * header value
71 void onDecoded(CharSequence name, CharSequence value); argument
75 * CharSequence)} that also reports on value sensitivity.
78 * an intermediary. A {@code value} is sensitive if it was represented as <a
84 * for encoding this header field in order to protect its value which is not
89 * <p> The default implementation invokes {@code onDecoded(name, value)}.
93 * @param value
101 onDecoded(CharSequence name, CharSequence value, boolean sensitive) argument
122 onIndexed(int index, CharSequence name, CharSequence value) argument
145 onLiteral(int index, CharSequence name, CharSequence value, boolean valueHuffman) argument
169 onLiteral(CharSequence name, boolean nameHuffman, CharSequence value, boolean valueHuffman) argument
193 onLiteralNeverIndexed(int index, CharSequence name, CharSequence value, boolean valueHuffman) argument
218 onLiteralNeverIndexed(CharSequence name, boolean nameHuffman, CharSequence value, boolean valueHuffman) argument
242 onLiteralWithIndexing(int index, CharSequence name, CharSequence value, boolean valueHuffman) argument
267 onLiteralWithIndexing(CharSequence name, boolean nameHuffman, CharSequence value, boolean valueHuffman) argument
[all...]
/openjdk10/jdk/src/jdk.net/share/classes/jdk/net/
H A DSocketFlow.java38 * immediately. If the value of the socket option is obtained with
106 private final int value; field in class:SocketFlow.Status
107 Status(int value) { this.value = value; } argument
109 static Status from(int value) { argument
110 if (value == NO_STATUS.value) return NO_STATUS;
111 else if (value == OK.value) retur
[all...]
/openjdk10/hotspot/src/share/vm/runtime/
H A DcommandLineFlagConstraintsGC.hpp33 * whenever flag's value changes. If the constraint fails the function should return
34 * an appropriate error value.
37 Flag::Error ParallelGCThreadsConstraintFunc(uint value, bool verbose);
38 Flag::Error ConcGCThreadsConstraintFunc(uint value, bool verbose);
39 Flag::Error YoungPLABSizeConstraintFunc(size_t value, bool verbose);
40 Flag::Error OldPLABSizeConstraintFunc(size_t value, bool verbose);
41 Flag::Error MinHeapFreeRatioConstraintFunc(uintx value, bool verbose);
42 Flag::Error MaxHeapFreeRatioConstraintFunc(uintx value, bool verbose);
43 Flag::Error SoftRefLRUPolicyMSPerMBConstraintFunc(intx value, bool verbose);
44 Flag::Error MinMetaspaceFreeRatioConstraintFunc(uintx value, boo
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DStringConcatHelper.java50 * Mix value length into current length
52 * @param value value to mix in
55 static int mixLen(int current, boolean value) { argument
56 return checkOverflow(current + (value ? 4 : 5));
60 * Mix value length into current length
62 * @param value value to mix in
65 static int mixLen(int current, byte value) { argument
66 return mixLen(current, (int)value);
75 mixLen(int current, char value) argument
85 mixLen(int current, short value) argument
95 mixLen(int current, int value) argument
105 mixLen(int current, long value) argument
115 mixLen(int current, String value) argument
125 mixCoder(byte current, char value) argument
135 mixCoder(byte current, String value) argument
145 mixCoder(byte current, boolean value) argument
156 mixCoder(byte current, byte value) argument
167 mixCoder(byte current, short value) argument
178 mixCoder(byte current, int value) argument
189 mixCoder(byte current, long value) argument
204 prepend(int index, byte[] buf, byte coder, boolean value) argument
245 prepend(int index, byte[] buf, byte coder, byte value) argument
259 prepend(int index, byte[] buf, byte coder, char value) argument
278 prepend(int index, byte[] buf, byte coder, short value) argument
292 prepend(int index, byte[] buf, byte coder, int value) argument
310 prepend(int index, byte[] buf, byte coder, long value) argument
328 prepend(int index, byte[] buf, byte coder, String value) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/
H A DJavacBug.java35 String value() default "";
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DOMGVMCID.java37 * The vendor minor code ID reserved for OMG. This value is or'd with
38 * the high order 20 bits of the minor code to produce the minor value
41 static final int value = 0x4f4d0000; field in interface:OMGVMCID
H A DPRIVATE_MEMBER.java45 final short value = (short) (0L); field in interface:PRIVATE_MEMBER

Completed in 329 milliseconds

1234567891011>>