Searched refs:mVal2 (Results 1 – 2 of 2) sorted by relevance
38 public final String mVal2; field in TestParcelable43 mVal2 = val2; in TestParcelable()49 mVal2 = in.readString(); in TestParcelable()73 dest.writeString(mVal2); in writeToParcel()82 return mVal1 == that.mVal1 && Objects.equals(mVal2, that.mVal2) in equals()88 return Objects.hash(mVal1, mVal2, mVal3); in hashCode()93 new TestParcelable(mVal1, mVal2, mVal3)); in copyIntoBundle()
1410 bundle.putString(TestParcelable.VAL_2_KEY, parcelable.mVal2);1428 assertEquals(originalParcelable.mVal2, receivedBundle.getString(TestParcelable.VAL_2_KEY));