Searched refs:isValue (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanParameterInfo.java161 public boolean isValue(Object obj) ; method in interface:OpenMBeanParameterInfo
H A DOpenMBeanAttributeInfoSupport.java478 if (!openType.isValue(info.getDefaultValue())) {
497 if (info.hasMinValue() && !openType.isValue(info.getMinValue())) {
503 if (info.hasMaxValue() && !openType.isValue(info.getMaxValue())) {
546 if (!openType.isValue(v)) {
640 if (!openType.isValue(element)) {
675 if (openType.isValue(x)) {
932 public boolean isValue(Object obj) { method in class:OpenMBeanAttributeInfoSupport
933 return isValue(this, obj);
937 static boolean isValue(OpenMBeanParameterInfo info, Object obj) { method in class:OpenMBeanAttributeInfoSupport
941 info.getOpenType().isValue(ob
[all...]
H A DOpenMBeanParameterInfoSupport.java504 public boolean isValue(Object obj) { method in class:OpenMBeanParameterInfoSupport
505 return OpenMBeanAttributeInfoSupport.isValue(this, obj);
H A DSimpleType.java200 public boolean isValue(Object obj) { method in class:SimpleType
H A DTabularDataSupport.java842 if ( (key[i] != null) && (! keyElementType.isValue(key[i])) ) {
867 if (!tabularType.getRowType().isValue(value)) {
H A DOpenType.java355 public abstract boolean isValue(Object obj) ; method in class:OpenType
H A DTabularType.java210 * <code>isValue</code> returns <code>false</code>.</p>
217 * CompositeType#isValue CompositeType.isValue}.</p>
225 public boolean isValue(Object obj) { method in class:TabularType
H A DArrayType.java546 public boolean isValue(Object obj) { method in class:ArrayType
630 if ( (x_dim_Array[i] != null) && (! this.getElementOpenType().isValue(x_dim_Array[i])) ) {
H A DCompositeDataSupport.java233 if (!itemType.isValue(value)) {
H A DCompositeType.java255 * <code>isValue</code> returns <code>false</code>.</p>
301 public boolean isValue(Object obj) { method in class:CompositeType
/openjdk7/jdk/test/javax/management/openmbean/
H A DIsValueTest.java27 * @summary Test new rules for isValue
56 // Check that adding fields doesn't make isValue return false
57 check(ctOld.isValue(cdNew), "isValue: " + ctOld + "[" + cdNew + "]");
59 // Check that removing fields does make isValue return false
60 check(!ctNew.isValue(cdOld), "isValue: " + ctNew + "[" + cdOld + "]");
H A DConstraintTest.java256 if (!info.isValue(x)) {
263 if (info.isValue(x)) {
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DContextStack.java312 return stack[currentIndex - 1].isValue();
391 isValue = true;
393 isValue = false;
429 public boolean isValue () { method in class:TypeContext
430 return isValue;
446 private boolean isValue = false; field in class:TypeContext
H A DCompoundType.java1355 !stack.isParentAValue() && !stack.getContext().isValue()) {
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DIDLTypesUtil.java123 public boolean isValue(Class c) method in class:IDLTypesUtil
151 isValue(componentType) || isObjectReference(componentType) );
168 return isCheckedException(c) && !isRemoteException(c) && isValue(c);
468 // (isCheckedException(E) => (isValue(E) || RemoteException.isAssignableFrom( E ) )
472 if (isCheckedException(exception) && !isValue(exception) &&
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapCacheEntry.java32 public boolean isValue(int offset) { return !entryAt(offset); } method in class:OopMapCacheEntry
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapValue.java108 public boolean isValue() { return (getValue() & TYPE_MASK_IN_PLACE) == VALUE_VALUE; } method in class:OopMapValue
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4498236.java103 test("[name=value; propertyType=boolean; readMethod=public boolean Test4498236.isValue(); writeMethod=public void Test4498236.setValue(boolean)]",
157 public boolean isValue() { method in class:Test4498236
/openjdk7/jdk/test/java/lang/management/CompositeData/
H A DOpenTypeConverter.java98 public boolean isValue(Object o) { method in class:OpenTypeConverter.InProgress
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java151 public boolean isValue() { return ((_state & bits_mask) == val_bit); } method in class:CellTypeState
H A DGenerateOopMap.java447 Assert.that(cts.isReference() || cts.isValue() || cts.isAddress(),
1599 Assert.that(in.isReference() | in.isValue(), "sanity check");
/openjdk7/jdk/src/share/classes/sun/management/
H A DMappedMXBeanType.java777 public boolean isValue(Object o) { method in class:MappedMXBeanType.InProgress
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanTest.java378 } else if (!openType.isValue(gotOpen)) {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DParser.java711 else if (!isValue (realOEntry))
741 if (isValue (realParent) && !(realParent instanceof ValueBoxEntry))
3658 private boolean isValue (SymtabEntry entry) method in class:Parser

Completed in 336 milliseconds