Home
last modified time | relevance | path

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

/cts/common/device-side/bedstead/queryable/src/main/java/com/android/queryable/queries/
DStringQueryHelper.java50 private String mStartsWithValue; field in StringQueryHelper
84 mStartsWithValue = in.readString(); in StringQueryHelper()
102 mStartsWithValue = string; in startsWith()
129 mStartsWithValue == null ? DEFAULT_STRING_QUERY_PARAMETERS_VALUE : mStartsWithValue, in toAnnotation()
147 && (mStartsWithValue == null || mStartsWithValue.isEmpty()); in isEmptyQuery()
158 if (mStartsWithValue != null && (value == null || !value.startsWith(mStartsWithValue))) { in matches()
194 if (mStartsWithValue != null) { in describeQuery()
195 queryStrings.add(fieldName + " starts with \"" + mStartsWithValue + "\""); in describeQuery()
211 out.writeString(mStartsWithValue); in writeToParcel()
232 mStartsWithValue, that.mStartsWithValue); in equals()
[all …]