Home
last modified time | relevance | path

Searched refs:readNullableLong (Results 1 – 2 of 2) sorted by relevance

/cts/common/device-side/bedstead/queryable/src/main/java/com/android/queryable/queries/
DLongQueryHelper.java19 import static com.android.queryable.util.ParcelableUtils.readNullableLong;
77 mEqualToValue = readNullableLong(in); in LongQueryHelper()
78 mGreaterThanValue = readNullableLong(in); in LongQueryHelper()
79 mGreaterThanOrEqualToValue = readNullableLong(in); in LongQueryHelper()
80 mLessThanValue = readNullableLong(in); in LongQueryHelper()
81 mLessThanOrEqualToValue = readNullableLong(in); in LongQueryHelper()
/cts/common/device-side/bedstead/queryable/src/main/java/com/android/queryable/util/
DParcelableUtils.java74 public static Long readNullableLong(Parcel parcel) { in readNullableLong() method in ParcelableUtils