Home
last modified time | relevance | path

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

/packages/modules/AppSearch/framework/java/external/android/app/appsearch/
DSearchSpec.java568 for (String propertyPath : propertyPaths) { in getPropertyWeights()
570 propertyPath, propertyPathBundle.getDouble(propertyPath)); in getPropertyWeights()
598 for (String propertyPath : propertyPaths) { in getPropertyWeightPaths()
600 new PropertyPath(propertyPath), in getPropertyWeightPaths()
601 propertyPathBundle.getDouble(propertyPath)); in getPropertyWeightPaths()
887 for (String propertyPath : propertyPaths) { in addFilterProperties()
888 Objects.requireNonNull(propertyPath); in addFilterProperties()
889 propertyPathsArrayList.add(propertyPath); in addFilterProperties()
914 for (PropertyPath propertyPath : propertyPaths) { in addFilterPropertyPaths()
915 propertyPathsArrayList.add(propertyPath.toString()); in addFilterPropertyPaths()
[all …]
DGetByDocumentIdRequest.java213 for (String propertyPath : propertyPaths) { in addProjection()
214 Objects.requireNonNull(propertyPath); in addProjection()
215 propertyPathsList.add(propertyPath); in addProjection()
244 for (PropertyPath propertyPath : propertyPaths) { in addProjectionPaths()
245 propertyPathsList.add(propertyPath.toString()); in addProjectionPaths()
DSearchSuggestionSpec.java367 for (String propertyPath : propertyPaths) { in addFilterProperties()
368 Objects.requireNonNull(propertyPath); in addFilterProperties()
369 propertyPathsArrayList.add(propertyPath); in addFilterProperties()
400 for (PropertyPath propertyPath : propertyPaths) { in addFilterPropertyPaths()
401 propertyPathsArrayList.add(propertyPath.toString()); in addFilterPropertyPaths()
DSearchResult.java503 @Param(id = 1) @NonNull String propertyPath, in MatchInfo()
510 mPropertyPath = Objects.requireNonNull(propertyPath); in MatchInfo()
731 public Builder(@NonNull String propertyPath) { in Builder() argument
732 mPropertyPath = Objects.requireNonNull(propertyPath); in Builder()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/converter/
DSearchResultToProtoConverter.java128 @NonNull SnippetMatchProto snippetMatchProto, @NonNull String propertyPath) { in toMatchInfo() argument
130 return new SearchResult.MatchInfo.Builder(propertyPath) in toMatchInfo()