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

12

/openjdk10/jdk/test/java/beans/Introspector/
H A DTest6707231.java43 public boolean isValue() { method in class:Test6707231.Bean
53 public boolean isValue() { method in class:Test6707231.Public
54 return super.isValue();
63 public boolean isValue() { method in class:Test6707231.Private
64 return super.isValue();
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
/openjdk10/jdk/src/java.management/share/classes/javax/management/openmbean/
H A DOpenMBeanParameterInfo.java161 public boolean isValue(Object obj) ; method in interface:OpenMBeanParameterInfo
H A DOpenMBeanAttributeInfoSupport.java476 if (!openType.isValue(info.getDefaultValue())) {
495 if (info.hasMinValue() && !openType.isValue(info.getMinValue())) {
501 if (info.hasMaxValue() && !openType.isValue(info.getMaxValue())) {
544 if (!openType.isValue(v)) {
638 if (!openType.isValue(element)) {
673 if (openType.isValue(x)) {
935 public boolean isValue(Object obj) { method in class:OpenMBeanAttributeInfoSupport
936 return isValue(this, obj);
940 static boolean isValue(OpenMBeanParameterInfo info, Object obj) { method in class:OpenMBeanAttributeInfoSupport
944 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.java853 if ( (key[i] != null) && (! keyElementType.isValue(key[i])) ) {
878 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.java564 public boolean isValue(Object obj) { method in class:ArrayType
648 if ( (x_dim_Array[i] != null) && (! this.getElementOpenType().isValue(x_dim_Array[i])) ) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/gen/
H A DArithmeticLIRGenerator.java68 } else if (aKind.isValue() && bKind.isValue()) {
70 } else if (aKind.isValue()) {
78 } else if (bKind.isValue()) {
115 if (aKind.isValue() && bKind.isValue()) {
117 } else if (bKind.isValue()) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/
H A DLIRKind.java141 if (isValue()) {
163 } else if (!kind.isValue()) {
181 if (kind.isValue()) {
232 if (mergeKind.isValue()) {
234 if (!inputKind.isValue()) {
390 public boolean isValue() { method in class:LIRKind
394 public static boolean isValue(ValueKind<?> kind) { method in class:LIRKind
396 return ((LIRKind) kind).isValue();
402 public static boolean isValue(Value value) { method in class:LIRKind
403 return isValue(valu
[all...]
/openjdk10/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 + "]");
/openjdk10/corba/src/jdk.rmic/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
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/dfa/
H A DMarkBasePointersPhase.java72 assert !base.getValueKind(LIRKind.class).isValue();
84 assert !base.getValueKind(LIRKind.class).isValue();
H A DRegStackValueSet.java146 return isRegister(v) || !LIRKind.isValue(v);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/interpreter/
H A DOopMapCacheEntry.java32 public boolean isValue(int offset) { return !entryAt(offset); } method in class:OopMapCacheEntry
/openjdk10/corba/src/java.corba/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) &&
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/
H A DWordCastNode.java130 if (trackedPointer && LIRKind.isValue(kind) && !LIRKind.isValue(value)) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.aarch64/src/org/graalvm/compiler/core/aarch64/
H A DAArch64AddressNode.java84 if (LIRKind.isValue(indexValue.getValueKind())) {
H A DAArch64AddressLoweringByUse.java174 if (!lirKind.isValue()) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/
H A DAMD64AddressNode.java109 if (LIRKind.isValue(indexValue)) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DHotSpotReferenceMapBuilder.java69 if (!lirKind.isValue()) {
/openjdk10/jdk/test/java/lang/management/CompositeData/
H A DOpenTypeConverter.java98 public boolean isValue(Object o) { method in class:OpenTypeConverter.InProgress
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DRedundantMoveElimination.java388 assert isObjectValue(state[sourceIdx]) || LIRKind.isValue(moveOp.getInput()) : "move op moves object but input is not defined as object " + moveOp;
426 state[stateIdx] = encodeValueNum(opValueNum++, !LIRKind.isValue(operand));

Completed in 239 milliseconds

12