Home | History | Annotate | Download | only in one

Lines Matching refs:isActive

217         public final boolean isActive;
221 * @param isActive Whether the lens is moving, e.g. because of either an
224 public FocusState(float lensDistance, boolean isActive) {
226 this.isActive = isActive;
240 if (isActive != that.isActive)
249 result = 31 * result + (isActive ? 1 : 0);
257 ", isActive=" + isActive +