Searched refs:BooleanValue (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DBooleanValue.java37 public interface BooleanValue extends PrimitiveValue interface in inherits:PrimitiveValue
40 * Returns this BooleanValue as a boolean.
47 * Compares the specified Object with this BooleanValue for equality.
49 * @return true if the Object is a BooleanValue and if applying "=="
56 * Returns the hash code value for this BooleanValue.
H A DVirtualMachine.java302 * Creates a {@link BooleanValue} for the given value. This value
307 * @return the {@link BooleanValue} for the given boolean.
309 BooleanValue mirrorOf(boolean value);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DBooleanValueImpl.java30 implements BooleanValue {
40 if ((obj != null) && (obj instanceof BooleanValue)) {
41 return (value == ((BooleanValue)obj).value())
H A DPrimitiveValueImpl.java78 if (this instanceof BooleanValue) {
H A DVirtualMachineImpl.java528 public BooleanValue mirrorOf(boolean value) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DBooleanValueImpl.java31 implements BooleanValue {
41 if ((obj != null) && (obj instanceof BooleanValue)) {
42 return (value == ((BooleanValue)obj).value())
H A DPrimitiveValueImpl.java79 if (this instanceof BooleanValue) {
H A DPacketStream.java282 if(!(val instanceof BooleanValue))
H A DVirtualMachineImpl.java472 public BooleanValue mirrorOf(boolean value) {
/openjdk7/jdk/test/com/sun/jdi/
H A DPopAndInvokeTest.java154 BooleanValue bv= (BooleanValue)targetClass.getValue(waiting);
H A DGetSetLocalTest.java229 BooleanValue incrValue(BooleanValue val) {
275 BooleanValue get = (BooleanValue) frame.getValue(lv);
276 BooleanValue set = incrValue(get);
280 get = (BooleanValue) frame.getValue(lv);
H A DFetchLocals.java114 protected void test(String name, BooleanValue testV, boolean expectV)
252 BooleanValue booleanV = (BooleanValue) sf.getValue(lv);
256 booleanV = (BooleanValue) sf.getValue(lv);
H A DEarlyReturnNegativeTest.java176 BooleanValue booleanVV;
346 booleanVV = (BooleanValue)targetClass.getValue(theValueField);
H A DEarlyReturnTest.java415 BooleanValue theValue = (BooleanValue)targetClass.getValue(theValueField);
418 boolean rv = ((BooleanValue)retValue).value();
613 BooleanValue theValue = (BooleanValue)targetClass.getValue(theValueField);
H A DMethodExitReturnValuesTest.java341 BooleanValue theValue = (BooleanValue)targetClass.getValue(theValueField);
344 boolean rv = ((BooleanValue)retValue).value();
H A DInvokeTest.java350 ((value instanceof BooleanValue)?
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTableHeaderBorder.java88 painter.state.set(selected ? BooleanValue.YES : BooleanValue.NO);
H A DAquaButtonBorder.java298 painter.state.set(model.isSelected() ? BooleanValue.YES : BooleanValue.NO);
H A DAquaInternalFrameBorder.java458 widgetPainter.state.set(dirty ? BooleanValue.YES : BooleanValue.NO);
H A DAquaSpinnerUI.java496 painter.state.set(BooleanValue.NO);
499 painter.state.set(BooleanValue.YES);
H A DAquaTabbedPaneUI.java453 painter.state.set(isSelected || (state == State.INACTIVE && frameActive) ? BooleanValue.YES : BooleanValue.NO);
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java537 public static class BooleanValue extends Property { class in class:JRSUIConstants
543 BooleanValue(final byte value) { method in class:JRSUIConstants.BooleanValue
548 public static final BooleanValue NO = new BooleanValue(_no);
550 public static final BooleanValue YES = new BooleanValue(_yes);
554 private static final byte SHIFT = BooleanValue.SHIFT + BooleanValue.SIZE;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DExpr.jj428 if (cond instanceof BooleanValue) {
429 push(((BooleanValue)cond).booleanValue()?
H A DLValue.java986 if ((right instanceof BooleanValue) ||
987 (left instanceof BooleanValue)) {
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DJRSUIConstantSync.m363 IF_CHANGED_SET_KEYED_BOOLEAN(BooleanValue, valueKey, get_boolean_number_value_for);

Completed in 100 milliseconds

12