| // Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| package com.android.tools.r8.utils; |
| import java.util.function.BooleanSupplier; |
| public class BooleanBox { |
| private boolean assigned = false; |
| public BooleanBox(boolean initialValue) { |
| public void computeIfNotSet(BooleanSupplier supplier) { |
| set(supplier.getAsBoolean()); |
| public boolean isFalse() { |
| public boolean isTrue() { |
| public void set(boolean value) { |
| public void and(boolean value) { |
| set(value && this.value); |
| public void or(boolean value) { |
| set(value || this.value); |
| public boolean isAssigned() { |