Home
last modified time | relevance | path

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

/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/
DSchemaCache.java328 String prefixedParentType = currentSchema.getParentTypes(i); in calculateTransitiveUnprefixedParentSchemaTypes() local
330 Objects.requireNonNull(inDegreeMap.get(prefixedParentType)) - 1; in calculateTransitiveUnprefixedParentSchemaTypes()
331 inDegreeMap.put(prefixedParentType, parentInDegree); in calculateTransitiveUnprefixedParentSchemaTypes()
333 result.add(PrefixUtil.removePrefix(prefixedParentType)); in calculateTransitiveUnprefixedParentSchemaTypes()
334 queue.add(prefixedParentType); in calculateTransitiveUnprefixedParentSchemaTypes()
353 String prefixedParentType = schema.getParentTypes(i); in collectParentTypeInDegrees() local
354 Integer parentInDegree = inDegreeMap.get(prefixedParentType); in collectParentTypeInDegrees()
358 inDegreeMap.put(prefixedParentType, parentInDegree + 1); in collectParentTypeInDegrees()
359 collectParentTypeInDegrees(prefixedParentType, schemaTypeMap, visited, inDegreeMap); in collectParentTypeInDegrees()