Home
last modified time | relevance | path

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

/packages/modules/AppSearch/framework/java/external/android/app/appsearch/
DSearchSpec.java611 for (String propertyPath : propertyPaths) { in getPropertyWeights()
613 propertyPath, propertyPathBundle.getDouble(propertyPath)); in getPropertyWeights()
640 for (String propertyPath : propertyPaths) { in getPropertyWeightPaths()
642 new PropertyPath(propertyPath), in getPropertyWeightPaths()
643 propertyPathBundle.getDouble(propertyPath)); in getPropertyWeightPaths()
952 for (String propertyPath : propertyPaths) { in addFilterProperties()
953 Objects.requireNonNull(propertyPath); in addFilterProperties()
954 propertyPathsArrayList.add(propertyPath); in addFilterProperties()
978 for (PropertyPath propertyPath : propertyPaths) { in addFilterPropertyPaths()
979 propertyPathsArrayList.add(propertyPath.toString()); in addFilterPropertyPaths()
[all …]
DGetByDocumentIdRequest.java203 for (String propertyPath : propertyPaths) { in addProjection()
204 Objects.requireNonNull(propertyPath); in addProjection()
205 propertyPathsList.add(propertyPath); in addProjection()
233 for (PropertyPath propertyPath : propertyPaths) { in addProjectionPaths()
234 propertyPathsList.add(propertyPath.toString()); in addProjectionPaths()
DSearchSuggestionSpec.java378 for (String propertyPath : propertyPaths) { in addFilterProperties()
379 Objects.requireNonNull(propertyPath); in addFilterProperties()
380 propertyPathsArrayList.add(propertyPath); in addFilterProperties()
410 for (PropertyPath propertyPath : propertyPaths) { in addFilterPropertyPaths()
411 propertyPathsArrayList.add(propertyPath.toString()); in addFilterPropertyPaths()
DSearchResult.java521 @Param(id = 1) @NonNull String propertyPath, in MatchInfo()
530 mPropertyPath = Objects.requireNonNull(propertyPath); in MatchInfo()
730 public Builder(@NonNull String propertyPath) { in Builder() argument
731 mPropertyPath = Objects.requireNonNull(propertyPath); in Builder()
1115 void setPropertyPath(@NonNull String propertyPath) { in setPropertyPath() argument
1116 mPropertyPath = Objects.requireNonNull(propertyPath); in setPropertyPath()
/packages/modules/AppSearch/framework/java/external/android/app/appsearch/ast/operators/
DPropertyRestrictNode.java57 public PropertyRestrictNode(@NonNull PropertyPath propertyPath, @NonNull Node childNode) { in PropertyRestrictNode() argument
58 mPropertyPath = Objects.requireNonNull(propertyPath); in PropertyRestrictNode()
91 public void setPropertyPath(@NonNull PropertyPath propertyPath) { in setPropertyPath() argument
92 mPropertyPath = Objects.requireNonNull(propertyPath); in setPropertyPath()
DComparatorNode.java86 @Comparator int comparator, @NonNull PropertyPath propertyPath, long value) { in ComparatorNode() argument
90 mPropertyPath = Objects.requireNonNull(propertyPath); in ComparatorNode()
126 public void setPropertyPath(@NonNull PropertyPath propertyPath) { in setPropertyPath() argument
127 mPropertyPath = Objects.requireNonNull(propertyPath); in setPropertyPath()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/converter/
DSearchResultToProtoConverter.java167 @NonNull SnippetMatchProto snippetMatchProto, @NonNull String propertyPath) { in toMatchInfoWithTextMatch() argument
169 return new SearchResult.MatchInfo.Builder(propertyPath) in toMatchInfoWithTextMatch()
191 @NonNull String propertyPath) { in toMatchInfoWithEmbeddingMatch() argument
197 return new SearchResult.MatchInfo.Builder(propertyPath) in toMatchInfoWithEmbeddingMatch()
/packages/modules/AppSearch/framework/java/external/android/app/appsearch/ast/query/
DHasPropertyNode.java45 public HasPropertyNode(@NonNull PropertyPath propertyPath) { in HasPropertyNode() argument
46 mPropertyPath = Objects.requireNonNull(propertyPath); in HasPropertyNode()
DPropertyDefinedNode.java47 public PropertyDefinedNode(@NonNull PropertyPath propertyPath) { in PropertyDefinedNode() argument
48 mPropertyPath = Objects.requireNonNull(propertyPath); in PropertyDefinedNode()
DSearchNode.java121 public void addPropertyPath(@NonNull PropertyPath propertyPath) { in addPropertyPath() argument
122 mPropertyPaths.add(Objects.requireNonNull(propertyPath)); in addPropertyPath()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/appsindexer/
DAppFunctionDocumentParserImpl.java500 String propertyPath = createQualifiedPropertyName(schemaType, property.getName()); in buildQualifiedPropertyNameToPropertyConfigMap() local
501 propertyMap.put(propertyPath, property); in buildQualifiedPropertyNameToPropertyConfigMap()