Home
last modified time | relevance | path

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

/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/
DPersonBuilderHelper.java306 Object propertyElement = Array.get(property, i); in appendPropertyString() local
307 if (propertyElement instanceof String) { in appendPropertyString()
308 builder.append("\"").append((String) propertyElement).append("\""); in appendPropertyString()
309 } else if (propertyElement instanceof byte[]) { in appendPropertyString()
310 builder.append(Arrays.toString((byte[]) propertyElement)); in appendPropertyString()
312 builder.append(propertyElement.toString()); in appendPropertyString()
/packages/modules/AppSearch/framework/java/external/android/app/appsearch/
DGenericDocument.java1019 Object propertyElement = Array.get(property, i); in appendPropertyString() local
1020 if (propertyElement instanceof String) { in appendPropertyString()
1021 builder.append("\"").append((String) propertyElement).append("\""); in appendPropertyString()
1022 } else if (propertyElement instanceof byte[]) { in appendPropertyString()
1023 builder.append(Arrays.toString((byte[]) propertyElement)); in appendPropertyString()
1024 } else if (propertyElement != null) { in appendPropertyString()
1025 builder.append(propertyElement.toString()); in appendPropertyString()