/aosp12/frameworks/base/libs/hwui/tests/unit/ |
H A D | SkiaPipelineTests.cpp | 55 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread); in RENDERTHREAD_SKIA_PIPELINE_TEST() local 77 auto pipeline = std::make_unique<SkiaOpenGLPipeline>(renderThread); in RENDERTHREAD_SKIA_PIPELINE_TEST() local 326 pipeline->renderFrame(layerUpdateQueue, dirty, nodes, true, in RENDERTHREAD_SKIA_PIPELINE_TEST() 363 pipeline->renderFrame(layerUpdateQueue, dirty, nodes, true, in RENDERTHREAD_SKIA_PIPELINE_TEST() 393 pipeline->renderFrame(layerUpdateQueue, dirty, nodes, true, in RENDERTHREAD_SKIA_PIPELINE_TEST() 402 EXPECT_FALSE(pipeline->isSurfaceReady()); in RENDERTHREAD_SKIA_PIPELINE_TEST() 404 EXPECT_TRUE(pipeline->isSurfaceReady()); in RENDERTHREAD_SKIA_PIPELINE_TEST() 406 EXPECT_FALSE(pipeline->isSurfaceReady()); in RENDERTHREAD_SKIA_PIPELINE_TEST() 407 LOG_ALWAYS_FATAL_IF(pipeline->isSurfaceReady()); in RENDERTHREAD_SKIA_PIPELINE_TEST() 414 pipeline->setPictureCapturedCallback( in RENDERTHREAD_SKIA_PIPELINE_TEST() [all …]
|
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | SensitiveContentCoordinatorTest.kt | 42 val pipeline: NotifPipeline = mock() 49 coordinator.attach(pipeline) 51 verify(pipeline).addPreRenderInvalidator(capture()) 67 coordinator.attach(pipeline) 69 verify(pipeline).addOnBeforeRenderListListener(capture()) 85 coordinator.attach(pipeline) 103 coordinator.attach(pipeline) 121 coordinator.attach(pipeline) 139 coordinator.attach(pipeline) 157 coordinator.attach(pipeline) [all …]
|
H A D | ShadeEventCoordinatorTest.kt | 49 @Mock private lateinit var pipeline: NotifPipeline 58 coordinator.attach(pipeline) 60 verify(pipeline).addCollectionListener(it.capture()) 64 verify(pipeline).addOnBeforeRenderListListener(it.capture())
|
H A D | RemoteInputCoordinatorTest.kt | 64 @Mock private lateinit var pipeline: NotifPipeline 79 `when`(pipeline.addNotificationLifetimeExtender(any())).thenAnswer { 82 `when`(pipeline.getInternalNotifUpdater(any())).thenReturn(notifUpdater) 83 coordinator.attach(pipeline) 88 verify(pipeline).addCollectionListener(capture())
|
H A D | ConversationCoordinatorTest.kt | 51 @Mock private lateinit var pipeline: NotifPipeline 65 coordinator.attach(pipeline) 69 verify(pipeline).addPromoter(notifPromoterCaptor.capture())
|
/aosp12/packages/modules/GeoTZ/ |
H A D | README.md | 17 - Code for a host sample / reference data generation pipeline. See 18 `run-data-pipeline.sh` below. 30 - Holds the `tzs2.dat` file generated by `run-data-pipeline.sh` along with 41 project. Used as input for the reference data generation pipeline. 55 `run-data-pipeline.sh` 56 - Runs the `data_pipeline` data generation pipeline. It takes data from
|
/aosp12/frameworks/base/libs/hwui/ |
H A D | Android.bp | 502 "pipeline/skia/HolePunch.cpp", 503 "pipeline/skia/SkiaDisplayList.cpp", 504 "pipeline/skia/SkiaRecordingCanvas.cpp", 505 "pipeline/skia/StretchMask.cpp", 506 "pipeline/skia/RenderNodeDrawable.cpp", 507 "pipeline/skia/ReorderBarrierDrawables.cpp", 508 "pipeline/skia/TransformCanvas.cpp", 556 "pipeline/skia/ATraceMemoryDump.cpp", 558 "pipeline/skia/LayerDrawable.cpp", 559 "pipeline/skia/ShaderCache.cpp", [all …]
|
/aosp12/packages/modules/GeoTZ/data_pipeline/ |
H A D | Android.bp | 36 // A library containing the code for the pipeline steps defined below. 54 // Step 1 of the OSM time zone geolocation reference data pipeline. 64 // Step 2 of the OSM time zone geolocation reference data pipeline. 74 // Step 3 of the OSM time zone geolocation reference data pipeline. 83 // Step 4 of the OSM time zone geolocation reference data pipeline. 92 // Step 5 of the OSM time zone geolocation reference data pipeline. 102 // Step 6 of the OSM time zone geolocation reference data pipeline. 135 // Tests for the pipeline steps.
|
/aosp12/frameworks/native/opengl/tools/glgen/specs/gles11/ |
H A D | GLES31.spec | 12 void glUseProgramStages ( GLuint pipeline, GLbitfield stages, GLuint program ) 13 void glActiveShaderProgram ( GLuint pipeline, GLuint program ) 15 void glBindProgramPipeline ( GLuint pipeline ) 18 GLboolean glIsProgramPipeline ( GLuint pipeline ) 19 void glGetProgramPipelineiv ( GLuint pipeline, GLenum pname, GLint *params ) 53 void glValidateProgramPipeline ( GLuint pipeline ) 54 void glGetProgramPipelineInfoLog ( GLuint pipeline, GLsizei bufSize, GLsizei *length, GLchar *infoL…
|
/aosp12/frameworks/base/libs/hwui/tests/common/ |
H A D | TestUtils.cpp | 56 android::uirenderer::renderthread::IRenderPipeline* pipeline; in createTextureLayerUpdater() local 58 pipeline = new skiapipeline::SkiaOpenGLPipeline(renderThread); in createTextureLayerUpdater() 60 pipeline = new skiapipeline::SkiaVulkanPipeline(renderThread); in createTextureLayerUpdater() 62 sp<DeferredLayerUpdater> layerUpdater = pipeline->createTextureLayer(); in createTextureLayerUpdater() 64 delete pipeline; in createTextureLayerUpdater()
|
H A D | TestUtils.h | 53 #define INNER_PIPELINE_TEST(test_case_name, test_name, pipeline, functionCall) \ argument 54 TEST(test_case_name, test_name##_##pipeline) { \ 56 Properties::overrideRenderPipelineType(RenderPipelineType::pipeline, true); \ 61 #define INNER_PIPELINE_RENDERTHREAD_TEST(test_case_name, test_name, pipeline) \ argument 62 INNER_PIPELINE_TEST(test_case_name, test_name, pipeline, \
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
H A D | ShadeEventCoordinator.kt | 42 override fun attach(pipeline: NotifPipeline) { 43 pipeline.addCollectionListener(mNotifCollectionListener) 44 pipeline.addOnBeforeRenderListListener(this::onBeforeRenderList)
|
H A D | SensitiveContentCoordinator.kt | 55 override fun attach(pipeline: NotifPipeline) { 57 pipeline.addOnBeforeRenderListListener(this) 58 pipeline.addPreRenderInvalidator(this)
|
H A D | RemoteInputCoordinator.kt | 90 override fun attach(pipeline: NotifPipeline) { 92 mRemoteInputLifetimeExtenders.forEach { pipeline.addNotificationLifetimeExtender(it) } 93 mNotifUpdater = pipeline.getInternalNotifUpdater(TAG) 94 pipeline.addCollectionListener(mCollectionListener)
|
H A D | NotifCoordinators.kt | 105 override fun attach(pipeline: NotifPipeline) { 107 c.attach(pipeline) 109 pipeline.setSections(mOrderedSections)
|
H A D | HeadsUpCoordinator.java | 91 public void attach(NotifPipeline pipeline) { in attach() argument 93 pipeline.addCollectionListener(mNotifCollectionListener); in attach() 94 pipeline.addPromoter(mNotifPromoter); in attach() 95 pipeline.addNotificationLifetimeExtender(mLifetimeExtender); in attach()
|
H A D | HideLocallyDismissedNotifsCoordinator.java | 39 public void attach(NotifPipeline pipeline) { in attach() argument 40 pipeline.addPreGroupFilter(mFilter); in attach()
|
H A D | MediaCoordinator.java | 51 public void attach(NotifPipeline pipeline) { in attach() argument 52 pipeline.addFinalizeFilter(mMediaFilter); in attach()
|
H A D | RankingCoordinator.java | 71 public void attach(NotifPipeline pipeline) { in attach() argument 74 pipeline.addPreGroupFilter(mSuspendedFilter); in attach() 75 pipeline.addPreGroupFilter(mDndVisualEffectsFilter); in attach()
|
H A D | PreparationCoordinator.java | 125 public void attach(NotifPipeline pipeline) { in attach() argument 128 pipeline.addCollectionListener(mNotifCollectionListener); in attach() 130 pipeline.addOnBeforeFinalizeFilterListener(mOnBeforeFinalizeFilterListener); in attach() 131 pipeline.addFinalizeFilter(mNotifInflationErrorFilter); in attach() 132 pipeline.addFinalizeFilter(mNotifInflatingFilter); in attach()
|
H A D | SmartspaceDedupingCoordinator.kt | 62 override fun attach(pipeline: NotifPipeline) { 63 pipeline.addPreGroupFilter(filter) 64 pipeline.addCollectionListener(collectionListener)
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotifBindPipelineInitializer.java | 33 NotifBindPipeline pipeline, in NotifBindPipelineInitializer() argument 35 mNotifBindPipeline = pipeline; in NotifBindPipelineInitializer()
|
/aosp12/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES31.java | 329 int pipeline, in glUseProgramStages() argument 337 int pipeline, in glActiveShaderProgram() argument 351 int pipeline in glBindProgramPipeline() argument 387 int pipeline in glIsProgramPipeline() argument 393 int pipeline, in glGetProgramPipelineiv() argument 402 int pipeline, in glGetProgramPipelineiv() argument 941 int pipeline in glValidateProgramPipeline() argument
|
/aosp12/frameworks/base/packages/SystemUI/docs/ |
H A D | media-controls.md | 7 Describe how events flow through the media controls pipeline, and provide a high level overview of … 11  64 …* Exit point for the pipeline: "external listeners" (currently `MediaHost` and `MediaCarouselContr… 66 …* Entry point for the pipeline; initializes listener connections and assigns external listeners to…
|
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
H A D | ImageSavingTask.java | 17 package com.android.gallery3d.filtershow.pipeline; 157 CachingPipeline pipeline = new CachingPipeline(FiltersManager.getManager(), "Thumb"); in createNotificationBitmap() local 158 return pipeline.renderFinalImage(bitmap, preset); in createNotificationBitmap()
|