Searched refs:value (Results 276 - 300 of 3502) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DEnumSyntax.java83 * You can convert an enumeration value to a string by calling {@link
87 * Under the hood, an enumeration value is just an integer, a different integer
88 * for each enumeration value within an enumeration class. You can get an
89 * enumeration value's integer value by calling {@link #getValue()
90 * <CODE>getValue()</CODE>}. An enumeration value's integer value is established
115 * This enumeration value's integer value.
118 private int value; field in class:EnumSyntax
125 EnumSyntax(int value) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DBooleanExpression.java41 boolean value; field in class:BooleanExpression
46 public BooleanExpression(long where, boolean value) { argument
48 this.value = value;
52 * Get the value
55 return new Integer(value ? 1 : 0);
59 * Check if the expression is equal to a value
62 return value == b;
67 * Check if the expression is equal to its default static value
70 return !value;
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DSPARCSethiInstruction.java32 final private ImmediateOrRegister value; field in class:SPARCSethiInstruction
35 public SPARCSethiInstruction(int value, SPARCRegister register) { argument
38 value <<= 10;
39 this.value = new Immediate(new Integer(value));
40 description = initDescription(value);
68 return value;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DbytecodeInterpreter_sparc.hpp70 #define SET_STACK_SLOT(value, offset) (*(intptr_t*)&topOfStack[-(offset)] = *(intptr_t*)(value))
71 #define SET_STACK_ADDR(value, offset) (*((address *)&topOfStack[-(offset)]) = (value))
72 #define SET_STACK_INT(value, offset) (*((jint *)&topOfStack[-(offset)]) = (value))
73 #define SET_STACK_FLOAT(value, offset) (*((jfloat *)&topOfStack[-(offset)]) = (value))
74 #define SET_STACK_OBJECT(value, offset) (*((oop *)&topOfStack[-(offset)]) = (value))
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DbytecodeInterpreter_x86.hpp80 #define SET_STACK_SLOT(value, offset) (*(intptr_t*)&topOfStack[-(offset)] = *(intptr_t*)(value))
81 #define SET_STACK_ADDR(value, offset) (*((address *)&topOfStack[-(offset)]) = (value))
82 #define SET_STACK_INT(value, offset) (*((jint *)&topOfStack[-(offset)]) = (value))
83 #define SET_STACK_FLOAT(value, offset) (*((jfloat *)&topOfStack[-(offset)]) = (value))
84 #define SET_STACK_OBJECT(value, offset) (*((oop *)&topOfStack[-(offset)]) = (value))
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBlock.hpp92 SharkValue *value = current_state()->local(index); local
93 assert(value != NULL, "shouldn't be");
94 assert(value->is_one_word() ||
97 return value;
99 void set_local(int index, SharkValue* value) { argument
100 assert(value != NULL, "shouldn't be");
101 current_state()->set_local(index, value);
102 if (value->is_two_word())
108 void xpush(SharkValue* value) { argument
109 current_state()->push(value);
115 SharkValue *value = current_state()->stack(slot); local
128 push(SharkValue* value) argument
138 SharkValue *value = xpop(); local
182 check_divide_by_zero(SharkValue* value) argument
186 zero_check(SharkValue* value) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXmlString.java44 * Textual value. AKA lexical representation.
46 public final String value; field in class:XmlString
56 public XmlString(String value, ValidationContext context) { argument
57 this.value = value;
66 public XmlString(String value) { argument
67 this(value,NULL_CONTEXT);
73 * This method is used for resolving prefixes in the {@link #value}
74 * (such as when {@link #value} represents a QName type.)
95 return value;
[all...]
/openjdk7/jdk/test/sun/management/HotspotClassLoadingMBean/
H A DGetInitializedClassCount.java32 * This test is just a sanity check and does not check for the correct value.
53 long value = mbean.getInitializedClassCount();
56 System.out.println("Initialized class count: " + value);
59 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
61 "illegal value: " + value + " " +
79 if (value2 < value + 1) {
82 "(value = " + value
[all...]
H A DGetLoadedClassSize.java32 * This test is just a sanity check and does not check for the correct value.
53 long value = mbean.getLoadedClassSize();
56 System.out.println("Loaded class size (bytes): " + value);
59 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
61 "illegal value: " + value + " bytes " +
76 if (value2 <= value) {
79 "(value = " + value
[all...]
H A DGetMethodDataSize.java32 * This test is just a sanity check and does not check for the correct value.
53 long value = mbean.getMethodDataSize();
56 System.out.println("Method data size (bytes): " + value);
59 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
61 "illegal value: " + value + " bytes " +
75 if (value2 <= value) {
78 "(value = " + value
[all...]
/openjdk7/jdk/test/sun/management/HotspotRuntimeMBean/
H A DGetSafepointCount.java32 * This test is just a sanity check and does not check for the correct value.
62 long value = mbean.getSafepointCount();
65 System.out.println("Safepoint count: " + value);
68 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
70 "illegal value: " + value + " " +
85 if (value2 <= value) {
88 "(value = " + value
[all...]
H A DGetSafepointSyncTime.java32 * This test is just a sanity check and does not check for the correct value.
62 long value = mbean.getSafepointSyncTime();
65 System.out.println("Safepoint sync time (ms): " + value);
68 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
70 "illegal value: " + value + " ms " +
85 if (value2 <= value) {
88 "(value = " + value
[all...]
H A DGetTotalSafepointTime.java32 * This test is just a sanity check and does not check for the correct value.
62 long value = mbean.getTotalSafepointTime();
65 System.out.println("Total safepoint time (ms): " + value);
68 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
70 "illegal value: " + value + " ms " +
84 if (value2 <= value) {
87 "(value = " + value
[all...]
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestEditor.java41 void testJava(Object value) { argument
42 this.editor.setValue(value);
46 System.out.println("Property value before: " + value);
47 System.out.println("Property value after: " + object);
49 if (!areEqual(value, object))
53 void testValue(Object value, String text) { argument
54 this.editor.setValue(value);
55 validate(value, text);
58 void testText(String text, Object value) { argument
63 validate(Object value, String text) argument
77 execute(String classname, String methodname, String value) argument
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djmorecfg.h50 /* Representation of a single sample (pixel element value).
64 #define GETJSAMPLE(value) ((int) (value))
70 #define GETJSAMPLE(value) ((int) (value))
72 #define GETJSAMPLE(value) ((int) (value) & 0xFF)
89 #define GETJSAMPLE(value) ((int) (value))
98 * This should be a signed value o
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDROutputStream.java134 public final void write_boolean(boolean value) { argument
135 impl.write_boolean(value);
137 public final void write_char(char value) { argument
138 impl.write_char(value);
140 public final void write_wchar(char value) { argument
141 impl.write_wchar(value);
143 public final void write_octet(byte value) { argument
144 impl.write_octet(value);
146 public final void write_short(short value) { argument
147 impl.write_short(value);
149 write_ushort(short value) argument
152 write_long(int value) argument
155 write_ulong(int value) argument
158 write_longlong(long value) argument
161 write_ulonglong(long value) argument
164 write_float(float value) argument
167 write_double(double value) argument
170 write_string(String value) argument
173 write_wstring(String value) argument
177 write_boolean_array(boolean[] value, int offset, int length) argument
180 write_char_array(char[] value, int offset, int length) argument
183 write_wchar_array(char[] value, int offset, int length) argument
186 write_octet_array(byte[] value, int offset, int length) argument
189 write_short_array(short[] value, int offset, int length) argument
192 write_ushort_array(short[] value, int offset, int length) argument
195 write_long_array(int[] value, int offset, int length) argument
198 write_ulong_array(int[] value, int offset, int length) argument
201 write_longlong_array(long[] value, int offset, int length) argument
204 write_ulonglong_array(long[] value, int offset,int length) argument
207 write_float_array(float[] value, int offset, int length) argument
210 write_double_array(double[] value, int offset, int length) argument
213 write_Object(org.omg.CORBA.Object value) argument
216 write_TypeCode(TypeCode value) argument
219 write_any(Any value) argument
223 write_Principal(Principal value) argument
231 write_fixed(java.math.BigDecimal value) argument
245 write_value(java.io.Serializable value) argument
249 write_value(java.io.Serializable value, java.lang.Class clz) argument
253 write_value(java.io.Serializable value, String repository_id) argument
257 write_value(java.io.Serializable value, org.omg.CORBA.portable.BoxedValueHelper factory) argument
307 write_Abstract(java.lang.Object value) argument
311 write_Value(java.io.Serializable value) argument
348 setIndex(int value) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpinnerDateModel.java42 * The value of the <code>calendarField</code> property must be one of the
49 * hours after the current <code>value</code>, and <code>previousValue</code>
76 * <code>value</code>, <code>calendarField</code>,
92 private Calendar value; field in class:SpinnerDateModel
125 * the current date <code>value</code> by the
133 * upper or lower bound. If <code>value</code> or
138 * Similarly if <code>(minimum &lt;= value &lt;= maximum)</code> is false,
141 * @param value the current (non <code>null</code>) value of the model
163 * @throws IllegalArgumentException if <code>value</cod
175 SpinnerDateModel(Date value, Comparable start, Comparable end, int calendarField) argument
455 setValue(Object value) argument
[all...]
H A DUIDefaults.java86 * so as to avoid an exception being thrown when a value is asked for.
116 * key/value pairs. For example:
125 * @param keyValueList an array of objects containing the key/value
136 * Returns the value for key. If the value is a
138 * value is computed with <code>LazyValue.createValue()</code>,
139 * the table entry is replaced, and the real value is returned.
140 * If the value is an <code>UIDefaults.ActiveValue</code>
141 * the table entry is not replaced - the value is computed
153 * @return the value fo
345 put(Object key, Object value) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DcompressedStream.hpp47 static inline juint encode_sign(jint value); // for Pack200 SIGNED5
48 static inline jint decode_sign(juint value); // for Pack200 SIGNED5
104 void write_int_mb(jint value); // UNSIGNED5 coding, 1-5 byte cases
114 void write_bool(jboolean value) { write(value); } argument
115 void write_byte(jbyte value) { write(value); } argument
116 void write_char(jchar value) { write_int(value); } argument
117 void write_short(jshort value) { write_signed_in argument
118 write_int(jint value) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DUnsafeDoubleFieldAccessorImpl.java72 public void set(Object obj, Object value) argument
77 throwFinalFieldIllegalAccessException(value);
79 if (value == null) {
80 throwSetIllegalArgumentException(value);
82 if (value instanceof Byte) {
83 unsafe.putDouble(obj, fieldOffset, ((Byte) value).byteValue());
86 if (value instanceof Short) {
87 unsafe.putDouble(obj, fieldOffset, ((Short) value).shortValue());
90 if (value instanceof Character) {
91 unsafe.putDouble(obj, fieldOffset, ((Character) value)
[all...]
H A DUnsafeQualifiedDoubleFieldAccessorImpl.java74 public void set(Object obj, Object value) argument
79 throwFinalFieldIllegalAccessException(value);
81 if (value == null) {
82 throwSetIllegalArgumentException(value);
84 if (value instanceof Byte) {
85 unsafe.putDoubleVolatile(obj, fieldOffset, ((Byte) value).byteValue());
88 if (value instanceof Short) {
89 unsafe.putDoubleVolatile(obj, fieldOffset, ((Short) value).shortValue());
92 if (value instanceof Character) {
93 unsafe.putDoubleVolatile(obj, fieldOffset, ((Character) value)
[all...]
H A DUnsafeQualifiedStaticDoubleFieldAccessorImpl.java73 public void set(Object obj, Object value) argument
77 throwFinalFieldIllegalAccessException(value);
79 if (value == null) {
80 throwSetIllegalArgumentException(value);
82 if (value instanceof Byte) {
83 unsafe.putDoubleVolatile(base, fieldOffset, ((Byte) value).byteValue());
86 if (value instanceof Short) {
87 unsafe.putDoubleVolatile(base, fieldOffset, ((Short) value).shortValue());
90 if (value instanceof Character) {
91 unsafe.putDoubleVolatile(base, fieldOffset, ((Character) value)
[all...]
H A DUnsafeStaticDoubleFieldAccessorImpl.java71 public void set(Object obj, Object value) argument
75 throwFinalFieldIllegalAccessException(value);
77 if (value == null) {
78 throwSetIllegalArgumentException(value);
80 if (value instanceof Byte) {
81 unsafe.putDouble(base, fieldOffset, ((Byte) value).byteValue());
84 if (value instanceof Short) {
85 unsafe.putDouble(base, fieldOffset, ((Short) value).shortValue());
88 if (value instanceof Character) {
89 unsafe.putDouble(base, fieldOffset, ((Character) value)
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.hpp118 #define SET_STACK_SLOT(value, offset) (*(intptr_t*)&topOfStack[-(offset)] = *(intptr_t*)(value))
119 #define SET_STACK_ADDR(value, offset) (*((address *)&topOfStack[-(offset)]) = (value))
120 #define SET_STACK_INT(value, offset) (*((jint *)&topOfStack[-(offset)]) = (value))
121 #define SET_STACK_FLOAT(value, offset) (*((jfloat *)&topOfStack[-(offset)]) = (value))
122 #define SET_STACK_OBJECT(value, offset) (*((oop *)&topOfStack[-(offset)]) = (value))
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals_extension.hpp36 #define RUNTIME_PRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
38 #define RUNTIME_DIAGNOSTIC_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
39 #define RUNTIME_EXPERIMENTAL_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
40 #define RUNTIME_MANAGEABLE_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
41 #define RUNTIME_PRODUCT_RW_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
43 #define RUNTIME_DEVELOP_FLAG_MEMBER(type, name, value, doc) /* flag is constant */
45 #define RUNTIME_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc)
47 #define RUNTIME_DEVELOP_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
49 #define RUNTIME_NOTPRODUCT_FLAG_MEMBER(type, name, value, doc) FLAG_MEMBER(name),
52 #define RUNTIME_LP64_PRODUCT_FLAG_MEMBER(type, name, value, do
[all...]

Completed in 98 milliseconds

<<11121314151617181920>>