Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DGroupWhenCoordinator.kt41 private val invalidator = object : Invalidator("GroupWhenCoordinator") {} regex
46 invalidator.invalidateList("future notification invalidation")
52 pipeline.addPreRenderInvalidator(invalidator)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
H A DShadeListBuilderTest.java1754 CountingInvalidator invalidator = new CountingInvalidator(filter); in testOutOfOrderPreGroupFilterInvalidationDoesNotThrowBeforeTooManyRuns() local
1764 invalidator.setInvalidationCount(MAX_CONSECUTIVE_REENTRANT_REBUILDS); in testOutOfOrderPreGroupFilterInvalidationDoesNotThrowBeforeTooManyRuns()
1776 CountingInvalidator invalidator = new CountingInvalidator(filter); in testOutOfOrderPreGroupFilterInvalidationThrowsAfterTooManyRuns() local
1801 CountingInvalidator invalidator = new CountingInvalidator(filter); in testNonConsecutiveOutOfOrderInvalidationsDontThrowAfterTooManyRuns() local
1812 invalidator.setInvalidationCount(MAX_CONSECUTIVE_REENTRANT_REBUILDS); in testNonConsecutiveOutOfOrderInvalidationsDontThrowAfterTooManyRuns()
1815 invalidator.setInvalidationCount(MAX_CONSECUTIVE_REENTRANT_REBUILDS); in testNonConsecutiveOutOfOrderInvalidationsDontThrowAfterTooManyRuns()
1828 CountingInvalidator invalidator = new CountingInvalidator(promoter); in testOutOfOrderPrompterInvalidationDoesNotThrowBeforeTooManyRuns() local
1838 invalidator.setInvalidationCount(MAX_CONSECUTIVE_REENTRANT_REBUILDS); in testOutOfOrderPrompterInvalidationDoesNotThrowBeforeTooManyRuns()
1851 CountingInvalidator invalidator = new CountingInvalidator(promoter); in testOutOfOrderPrompterInvalidationThrowsAfterTooManyRuns() local
1919 CountingInvalidator invalidator = new CountingInvalidator(filter); in testOutOfOrderPreRenderFilterInvalidationDoesNotThrowBeforeTooManyRuns() local
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotifPipeline.kt216 fun addPreRenderInvalidator(invalidator: Invalidator) {
217 mShadeListBuilder.addPreRenderInvalidator(invalidator)
H A DShadeListBuilder.java212 void addPreRenderInvalidator(Invalidator invalidator) { in addPreRenderInvalidator() argument
216 invalidator.setInvalidationListener(this::onPreRenderInvalidated); in addPreRenderInvalidator()
329 private void onPreRenderInvalidated(Invalidator invalidator, @Nullable String reason) { in onPreRenderInvalidated() argument
332 mLogger.logPreRenderInvalidated(invalidator, mPipelineState.getState(), reason); in onPreRenderInvalidated()
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DViewPropertyAlphaActivity.java68 Button invalidator = findViewById(R.id.invalidateButton); in onCreate() local
69 invalidator.setOnClickListener(new View.OnClickListener() { in onCreate()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DSensitiveContentCoordinatorTest.kt71 val invalidator = withArgCaptor<Invalidator> { regex
79 invalidator.setInvalidationListener(invalidationListener)
83 verify(invalidationListener).onPluggableInvalidated(eq(invalidator), any())
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
H A DShadeListBuilderLogger.kt87 invalidator: Invalidator,
90 ) = logPluggableInvalidated("Pre-render Invalidator", invalidator, pipelineState, reason)
/aosp14/frameworks/base/core/java/android/widget/
H A DSmartSelectSprite.java334 final Runnable invalidator) { in SmartSelectSprite() argument
339 mInvalidator = Objects.requireNonNull(invalidator); in SmartSelectSprite()