Home
last modified time | relevance | path

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

/packages/modules/AppSearch/framework/java/external/android/app/appsearch/
DSearchResult.java87 @Nullable private List<MatchInfo> mMatchInfosCached; field in SearchResult
137 if (mMatchInfosCached == null) { in getMatchInfos()
138 mMatchInfosCached = new ArrayList<>(mMatchInfos.size()); in getMatchInfos()
142 if (mMatchInfosCached != null) { in getMatchInfos()
144 mMatchInfosCached.add(matchInfo); in getMatchInfos()
147 mMatchInfosCached = Collections.unmodifiableList(mMatchInfosCached); in getMatchInfos()
150 return Objects.requireNonNull(mMatchInfosCached); in getMatchInfos()