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

1234567891011>>

/openjdk7/jdk/test/java/beans/Performance/
H A DTest7122740.java39 new PropertyDescriptor("value", Concrete.class);
46 private T value; field in class:Test7122740.Abstract
48 return this.value;
50 public void setValue(T value) { argument
51 this.value = value;
/openjdk7/jdk/test/sun/management/HotspotClassLoadingMBean/
H A DGetUnloadedClassSize.java32 * This test is just a sanity check and does not check for the correct value.
53 long value = mbean.getUnloadedClassSize();
56 System.out.println("Unloaded class size (bytes): " + value);
59 if (value < MIN_VALUE_FOR_PASS || value > MAX_VALUE_FOR_PASS) {
61 "illegal value: " + value + " bytes " +
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSctpResultContainer.java40 private Object value; field in class:SctpResultContainer
57 value = null;
63 return (SctpNotification) value;
69 if (value instanceof SctpMessageInfoImpl)
70 return (SctpMessageInfoImpl) value;
78 if (value instanceof SctpSendFailed)
79 return (SctpSendFailed) value;
87 if (value instanceof SctpAssocChange)
88 return (SctpAssocChange) value;
96 if (value instanceo
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DJavaOutputStream.sjava138 public final void write_boolean(boolean value) {
139 impl.write_boolean(value);
141 public final void write_char(char value) {
142 impl.write_char(value);
144 public final void write_wchar(char value) {
145 impl.write_wchar(value);
147 public final void write_octet(byte value) {
148 impl.write_octet(value);
150 public final void write_short(short value) {
151 impl.write_short(value);
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDROutputStreamBase.java68 public abstract void write_boolean(boolean value); argument
69 public abstract void write_char(char value); argument
70 public abstract void write_wchar(char value); argument
71 public abstract void write_octet(byte value); argument
72 public abstract void write_short(short value); argument
73 public abstract void write_ushort(short value); argument
74 public abstract void write_long(int value); argument
75 public abstract void write_ulong(int value); argument
76 public abstract void write_longlong(long value); argument
77 public abstract void write_ulonglong(long value); argument
78 write_float(float value) argument
79 write_double(double value) argument
80 write_string(String value) argument
81 write_wstring(String value) argument
82 write_boolean_array(boolean[] value, int offset, int length) argument
83 write_char_array(char[] value, int offset, int length) argument
84 write_wchar_array(char[] value, int offset, int length) argument
85 write_octet_array(byte[] value, int offset, int length) argument
86 write_short_array(short[] value, int offset, int length) argument
87 write_ushort_array(short[] value, int offset, int length) argument
88 write_long_array(int[] value, int offset, int length) argument
89 write_ulong_array(int[] value, int offset, int length) argument
90 write_longlong_array(long[] value, int offset, int length) argument
91 write_ulonglong_array(long[] value, int offset, int length) argument
92 write_float_array(float[] value, int offset, int length) argument
93 write_double_array(double[] value, int offset, int length) argument
94 write_Object(org.omg.CORBA.Object value) argument
95 write_TypeCode(TypeCode value) argument
96 write_any(Any value) argument
97 write_Principal(Principal value) argument
101 write_fixed(java.math.BigDecimal value) argument
110 write_value(java.io.Serializable value) argument
111 write_value(java.io.Serializable value, java.lang.Class clz) argument
112 write_value(java.io.Serializable value, String repository_id) argument
113 write_value(java.io.Serializable value, org.omg.CORBA.portable.BoxedValueHelper factory) argument
132 write_Abstract(java.lang.Object value) argument
133 write_Value(java.io.Serializable value) argument
146 setIndex(int value) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDoubleDV.java68 * string represents a valid floating point value
84 private final double value; field in class:DoubleDV.XDouble
87 value = Double.parseDouble(s);
90 value = Double.POSITIVE_INFINITY;
93 value = Double.NEGATIVE_INFINITY;
96 value = Double.NaN;
112 if (value == oval.value)
115 if (value != value
[all...]
H A DFloatDV.java68 private final float value; field in class:FloatDV.XFloat
71 value = Float.parseFloat(s);
74 value = Float.POSITIVE_INFINITY;
77 value = Float.NEGATIVE_INFINITY;
80 value = Float.NaN;
96 if (value == oval.value)
99 if (value != value && oval.value !
[all...]
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gfx_impl.h39 /* store a typed value to pointed location */
42 /* load a typed value from pointed location */
56 /* value shifted left by n bits, negative n is allowed */
57 #define LSHIFT(value,n) IFNEGPOS((n),(value)>>-(n),(value)<<(n))
59 /* value shifted right by n bits, negative n is allowed */
60 #define RSHIFT(value,n) IFNEGPOS(n,(value)<<-(n),(value)>>(
73 ditherColor(rgbquad_t value, ImageFormat * format, int row, int col) argument
139 putRGBADither(rgbquad_t value, void *ptr, ImageFormat * format, int row, int col) argument
214 rgbquad_t value = 0; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/extension/
H A DRequestPartitioningPolicy.java44 private final int value; field in class:RequestPartitioningPolicy
46 public RequestPartitioningPolicy( int value )
48 if (value < ORBConstants.REQUEST_PARTITIONING_MIN_THREAD_POOL_ID ||
49 value > ORBConstants.REQUEST_PARTITIONING_MAX_THREAD_POOL_ID) {
51 new Integer(value),
57 this.value = value;
62 return value;
82 return "RequestPartitioningPolicy[" + value + "]" ;
H A DCopyObjectPolicy.java36 private final int value ; field in class:CopyObjectPolicy
38 public CopyObjectPolicy( int value )
40 this.value = value ;
45 return value ;
65 return "CopyObjectPolicy[" + value + "]" ;
/openjdk7/jdk/src/share/classes/java/beans/
H A DExpression.java34 * <code>Expression</code> object provides a <em>value</em> which
36 * The return value is typically not provided by the caller and
51 private Object value = unbound; field in class:Expression
61 * If the {@code arguments} value is {@code null},
62 * an empty array is used as the value of the {@code arguments} property.
76 * Creates a new {@link Expression} object with the specified value
79 * The {@code value} value is used as the value of the {@code value} propert
96 Expression(Object value, Object target, String methodName, Object[] arguments) argument
168 setValue(Object value) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttribute.java34 * Represents an MBean attribute by associating its name with its value.
50 * @serial Attribute value
52 private Object value= null; field in class:Attribute
56 * Constructs an Attribute object which associates the given attribute name with the given value.
59 * @param value The Object which is assigned to the attribute. This object must be of the same type as the attribute.
62 public Attribute(String name, Object value) { argument
69 this.value = value;
83 * Returns an Object that is the value of this attribute.
85 * @return the value o
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DllvmValue.hpp35 static llvm::ConstantInt* jbyte_constant(jbyte value) argument
37 return llvm::ConstantInt::get(SharkType::jbyte_type(), value, true);
39 static llvm::ConstantInt* jint_constant(jint value) argument
41 return llvm::ConstantInt::get(SharkType::jint_type(), value, true);
43 static llvm::ConstantInt* jlong_constant(jlong value) argument
45 return llvm::ConstantInt::get(SharkType::jlong_type(), value, true);
47 static llvm::ConstantFP* jfloat_constant(jfloat value) argument
49 return llvm::ConstantFP::get(SharkContext::current(), llvm::APFloat(value));
51 static llvm::ConstantFP* jdouble_constant(jdouble value) argument
53 return llvm::ConstantFP::get(SharkContext::current(), llvm::APFloat(value));
61 bit_constant(int value) argument
65 intptr_constant(intptr_t value) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollbarPeer.java50 public native void setValues(int value, int visible, argument
75 private void postAdjustmentEvent(final int type, final int value, argument
82 sb.setValue(value);
85 type, value, isAdjusting));
90 void lineUp(int value) { argument
91 postAdjustmentEvent(AdjustmentEvent.UNIT_DECREMENT, value, false);
94 void lineDown(int value) { argument
95 postAdjustmentEvent(AdjustmentEvent.UNIT_INCREMENT, value, false);
98 void pageUp(int value) { argument
99 postAdjustmentEvent(AdjustmentEvent.BLOCK_DECREMENT, value, fals
102 pageDown(int value) argument
107 warp(int value) argument
113 drag(final int value) argument
120 dragEnd(final int value) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DFloat.java34 * The {@code Float} class wraps a value of primitive type
53 * {@code float}. It is equal to the value returned by
60 * {@code float}. It is equal to the value returned by
66 * A constant holding a Not-a-Number (NaN) value of type
67 * {@code float}. It is equivalent to the value returned by
73 * A constant holding the largest positive finite value of type
82 * A constant holding the smallest positive normal value of type
92 * A constant holding the smallest positive nonzero value of type
101 * is equal to the value returned by {@code
110 * It is equal to the value returne
484 private final float value; field in class:Float
492 Float(float value) argument
502 Float(double value) argument
712 floatToIntBits(float value) argument
758 floatToRawIntBits(float value) argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/core/native/
H A DNativeBuffer.h34 #define PUT_VALUE(type, buffer, offset, value) (*((type *)BUFFER_AT(buffer, offset)) = value)
39 #define PUT_INT_AT(buffer, offset, value) PUT_VALUE(jint, buffer, offset, value)
40 #define PUT_LONG_AT(buffer, offset, value) PUT_VALUE(jlong, buffer, offset, value)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/annotation/spec/
H A DXmlJavaTypeAdapterWriter.java37 XmlJavaTypeAdapterWriter type(Class value); argument
39 XmlJavaTypeAdapterWriter type(JType value); argument
41 XmlJavaTypeAdapterWriter value(Class value); argument
43 XmlJavaTypeAdapterWriter value(JType value); argument
H A DXmlTypeWriter.java37 XmlTypeWriter name(String value); argument
39 XmlTypeWriter namespace(String value); argument
41 XmlTypeWriter propOrder(String value); argument
43 XmlTypeWriter factoryClass(Class value); argument
45 XmlTypeWriter factoryClass(JType value); argument
47 XmlTypeWriter factoryMethod(String value); argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.cpp34 // Stack or register value
43 // First find address of value
48 // Else value was directly saved on the stack. The frame's original stack pointer,
57 // and that we store the value where the interpreter will expect
59 // using the intptr_t ensures that when a value is larger than
61 // of the value for the stack slot in question.
70 union { intptr_t p; jfloat jf; } value; local
71 value.p = (intptr_t) CONST64(0xDEADDEAFDEADDEAF);
72 value.jf = (jfloat) *(jdouble*) value_addr;
73 return new StackValue(value
81 union { intptr_t p; jint ji;} value; local
94 union { intptr_t p; narrowOop noop;} value; local
129 union { intptr_t p; jint ji;} value; local
142 union { intptr_t p; jint ji;} value; local
152 union { intptr_t p; double d; } value; local
158 union { intptr_t p; jlong jl; } value; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelStandardTransform.java46 // concave: output = (20*log10(127^2/value^2)) / 96
50 // switch: if value > avg(max,min) then max else min
76 public double transform(double value) { argument
80 value = 1.0 - value;
82 value = value * 2.0 - 1.0;
85 s = Math.signum(value);
86 a = Math.abs(value);
94 s = Math.signum(value);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DConvertExpression.java48 * Check the value
63 int value = ((IntegerExpression)right).value;
65 case TC_BYTE: return new ByteExpression(right.where, (byte)value);
66 case TC_CHAR: return new CharExpression(right.where, (char)value);
67 case TC_SHORT: return new ShortExpression(right.where, (short)value);
68 case TC_INT: return new IntExpression(right.where, (int)value);
69 case TC_LONG: return new LongExpression(right.where, (long)value);
70 case TC_FLOAT: return new FloatExpression(right.where, (float)value);
71 case TC_DOUBLE: return new DoubleExpression(right.where, (double)value);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DKeyPattern.java32 public KeyPattern(String index, String value) { argument
33 super(index,value);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/iiop/
H A DIIOPAddressBase.java46 protected short intToShort( int value )
48 if (value > 32767)
49 return (short)(value - 65536) ;
50 return (short)value ;
53 protected int shortToInt( short value )
55 if (value < 0)
56 return value + 65536 ;
57 return value ;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dvmreg_sparc.inline.hpp36 inline bool VMRegImpl::is_Register() { return value() >= 0 && value() < ConcreteRegisterImpl::max_gpr; }
37 inline bool VMRegImpl::is_FloatRegister() { return value() >= ConcreteRegisterImpl::max_gpr &&
38 value() < ConcreteRegisterImpl::max_fpr; }
41 assert( is_Register() && is_even(value()), "even-aligned GPR name" );
43 return ::as_Register(value()>>1);
49 return ::as_FloatRegister( value() - ConcreteRegisterImpl::max_gpr );
54 int v = value();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dcopy_x86.hpp45 static void pd_fill_to_words(HeapWord* tohw, size_t count, juint value) { argument
48 julong v = ((julong) value << 32) | value;
56 *to++ = value;
61 static void pd_fill_to_aligned_words(HeapWord* tohw, size_t count, juint value) { argument
62 pd_fill_to_words(tohw, count, value);
65 static void pd_fill_to_bytes(void* to, size_t count, jubyte value) { argument
66 (void)memset(to, value, count);

Completed in 112 milliseconds

1234567891011>>