Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/content/om/
DOverlayConfig.java492 final ArrayList<IdmapInvocation> idmapInvocations = new ArrayList<>(); in getImmutableFrameworkOverlayIdmapInvocations() local
510 if (!idmapInvocations.isEmpty()) { in getImmutableFrameworkOverlayIdmapInvocations()
511 final IdmapInvocation last = idmapInvocations.get(idmapInvocations.size() - 1); in getImmutableFrameworkOverlayIdmapInvocations()
520 idmapInvocations.add(invocation); in getImmutableFrameworkOverlayIdmapInvocations()
525 return idmapInvocations; in getImmutableFrameworkOverlayIdmapInvocations()
538 final ArrayList<IdmapInvocation> idmapInvocations = in createImmutableFrameworkIdmapsInZygote() local
541 for (int i = 0, n = idmapInvocations.size(); i < n; i++) { in createImmutableFrameworkIdmapsInZygote()
542 final IdmapInvocation invocation = idmapInvocations.get(i); in createImmutableFrameworkIdmapsInZygote()
/frameworks/base/core/tests/coretests/src/com/android/internal/content/res/
DOverlayConfigTest.java473 final ArrayList<IdmapInvocation> idmapInvocations = in testIdmapInvocationsFrameworkImmutable() local
475 assertEquals(2, idmapInvocations.size()); in testIdmapInvocationsFrameworkImmutable()
477 final IdmapInvocation i0 = idmapInvocations.get(0); in testIdmapInvocationsFrameworkImmutable()
484 final IdmapInvocation i1 = idmapInvocations.get(1); in testIdmapInvocationsFrameworkImmutable()
510 final ArrayList<IdmapInvocation> idmapInvocations = in testIdmapInvocationsDifferentTargetSdk() local
512 assertEquals(3, idmapInvocations.size()); in testIdmapInvocationsDifferentTargetSdk()
514 final IdmapInvocation i0 = idmapInvocations.get(0); in testIdmapInvocationsDifferentTargetSdk()
520 final IdmapInvocation i1 = idmapInvocations.get(1); in testIdmapInvocationsDifferentTargetSdk()
525 final IdmapInvocation i2 = idmapInvocations.get(2); in testIdmapInvocationsDifferentTargetSdk()