Home
last modified time | relevance | path

Searched refs:recorder (Results 101 - 123 of 123) sorted by relevance

12345

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkAllocationCallbackUtil.cpp362 void validateAllocationCallbacks (const AllocationCallbackRecorder& recorder, AllocationCallbackValidationResults* results) in validateAllocationCallbacks() argument
369 for (AllocationCallbackRecorder::RecordIterator callbackIter = recorder.getRecordsBegin(); in validateAllocationCallbacks()
370 callbackIter != recorder.getRecordsEnd(); in validateAllocationCallbacks()
637 bool validateAndLog (tcu::TestLog& log, const AllocationCallbackRecorder& recorder, deUint32 allowedLiveAllocScopeBits) in validateAndLog() argument
641 validateAllocationCallbacks(recorder, &validationResults); in validateAndLog()
/third_party/skia/tests/
H A DFlattenDrawableTest.cpp252 SkPictureRecorder recorder; in DEF_TEST() local
253 SkCanvas* canvas = recorder.beginRecording(1000.0f, 1000.0f); in DEF_TEST()
273 sk_sp<SkDrawable> recordedDrawable = recorder.finishRecordingAsDrawable(); in DEF_TEST()
H A DImageTest.cpp120 SkPictureRecorder recorder; in create_picture_image() local
121 SkCanvas* canvas = recorder.beginRecording(10, 10); in create_picture_image()
123 return SkImage::MakeFromPicture(recorder.finishRecordingAsPicture(), SkISize::Make(10, 10), in create_picture_image()
232 SkPictureRecorder recorder; in DEF_TEST() local
233 SkCanvas* canvas = recorder.beginRecording(100, 100); in DEF_TEST()
235 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in DEF_TEST()
1174 SkPictureRecorder recorder; in create_picture_image() local
1175 SkCanvas* canvas = recorder.beginRecording(10, 10); in create_picture_image()
1177 return SkImage::MakeFromPicture(recorder.finishRecordingAsPicture(), SkISize::Make(10, 10), in create_picture_image()
H A DCanvasTest.cpp334 SkPictureRecorder recorder;
335 SkCanvas* testCanvas = recorder.beginRecording(SkIntToScalar(kWidth),
340 c->drawPicture(recorder.finishRecordingAsPicture());
/third_party/skia/modules/skottie/src/effects/
H A DDisplacementMapEffect.cpp182 SkPictureRecorder recorder; local
183 node->render(recorder.beginRecording(bounds));
184 return recorder.finishRecordingAsPicture();
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryAddressBindingTests.cpp122 const BindingCallbackRecorder* recorder; member
143 , recorder (recorder_) in Environment()
1624 static deBool validateCallbackRecords (Context& context, const BindingCallbackRecorder& recorder) in validateCallbackRecords() argument
1630 for (auto record = recorder.getRecordsBegin(); record != recorder.getRecordsEnd(); record++) in validateCallbackRecords()
1643 for (auto record = recorder.getRecordsBegin(); record != recorder.getRecordsEnd(); record++) in validateCallbackRecords()
1693 BindingCallbackRecorder recorder; in createDestroyObjectTest() local
1705 &recorder); in createDestroyObjectTest()
1720 if (!validateCallbackRecords(context, recorder)) in createDestroyObjectTest()
[all...]
H A DvktMemoryMappingTests.cpp785 AllocationCallbackRecorder recorder (getSystemAllocator());
786 const VkAllocationCallbacks* allocator = config.implicitUnmap ? recorder.getCallbacks() : DE_NULL;
869 validateAllocationCallbacks(recorder, &results);
/third_party/skia/bench/
H A Dnanobench.cpp720 SkPictureRecorder recorder; in ReadSVGPicture() local
721 svgDom->render(recorder.beginRecording(svgDom->containerSize().width(), in ReadSVGPicture()
723 return recorder.finishRecordingAsPicture(); in ReadSVGPicture()
816 SkPictureRecorder recorder; in rawNext() variable
817 pic->playback(recorder.beginRecording(pic->cullRect().width(), in rawNext()
820 pic = recorder.finishRecordingAsPicture(); in rawNext()
/third_party/skia/tools/fm/
H A Dfm.cpp273 SkPictureRecorder recorder; in draw_as_skp() local
274 if (draw(recorder.beginRecording(info.width(), info.height()))) { in draw_as_skp()
275 return recorder.finishRecordingAsPicture()->serialize(); in draw_as_skp()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/dynamic_state/
H A DvktDynamicStateComputeTests.cpp518 RecordStateFunction recorder; // Function that records the state to the command buffer being used. member
908 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateTransfer()
916 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateTransfer()
1058 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateCompute()
1070 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateCompute()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/dynamic_state/
H A DvktDynamicStateComputeTests.cpp516 RecordStateFunction recorder; // Function that records the state to the command buffer being used. member
893 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateTransfer()
901 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateTransfer()
1035 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateCompute()
1047 stateInfo.recorder(&vkd, cmdBuffer, statesData.back().get()); in iterateCompute()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DShaderModule.cpp1233 ObjectContentHasher recorder;
1234 recorder.Record(mType);
1235 recorder.Record(mOriginalSpirv);
1236 recorder.Record(mWgsl);
1237 return recorder.GetContentHash();
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/
H A DvktTestCase.cpp230 Move<VkInstance> createInstance (const PlatformInterface& vkp, deUint32 apiVersion, const vector<string>& enabledExtensions, const tcu::CommandLine& cmdLine, DebugReportRecorder* recorder) in createInstance() argument
236 const bool isValidationEnabled = (recorder != nullptr); in createInstance()
259 return createDefaultInstance(vkp, apiVersion, vector<string>(begin(enabledLayers), end(enabledLayers)), nonCoreExtensions, cmdLine, recorder); in createInstance()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/
H A DvktTestCase.cpp202 Move<VkInstance> createInstance (const PlatformInterface& vkp, deUint32 apiVersion, const vector<string>& enabledExtensions, const tcu::CommandLine& cmdLine, DebugReportRecorder* recorder) in createInstance() argument
208 const bool isValidationEnabled = (recorder != nullptr); in createInstance()
231 return createDefaultInstance(vkp, apiVersion, vector<string>(begin(enabledLayers), end(enabledLayers)), nonCoreExtensions, cmdLine, recorder); in createInstance()
/test/xts/acts/multimedia/media/media_js_standard/
H A DAVRecorderTestBase.js27 media.createAVRecorder((error, recorder) => {
28 if (recorder != null) {
29 avRecorder = recorder;
42 await media.createAVRecorder().then((recorder) => {
43 if (recorder != null) {
44 avRecorder = recorder;
/third_party/skia/tools/viewer/
H A DViewer.cpp1480 SkPictureRecorder recorder; in drawSlide() local
1481 SkCanvas* recorderCanvas = recorder.beginRecording( in drawSlide()
1484 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in drawSlide()
1532 SkPictureRecorder recorder; in drawSlide() local
1536 slideCanvas = recorder.beginRecording( in drawSlide()
1584 sk_sp<SkPicture> picture(recorder.finishRecordingAsPicture()); in drawSlide()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiDeviceInitializationTests.cpp598 AllocationCallbackRecorder recorder (objAllocator.getCallbacks(), 128); in enumerateDevicesAllocLeakTest()
599 const auto instance = createCustomInstanceFromContext(context, recorder.getCallbacks(), true); in enumerateDevicesAllocLeakTest()
602 RecordIterator recordToCheck (recorder.getRecordsEnd()); in enumerateDevicesAllocLeakTest()
616 RecordIterator lastRecordToCheck (recorder.getRecordsEnd()); in enumerateDevicesAllocLeakTest()
H A DvktApiObjectManagementTests.cpp3051 // Supply a separate callback recorder just for object construction in createSingleAllocCallbacksTest()
3133 AllocationCallbackRecorder recorder (objAllocator.getCallbacks(), 128); in allocCallbackFailTest()
3142 recorder.getCallbacks(), in allocCallbackFailTest()
3170 if (!validateAndLog(context.getTestContext().getLog(), recorder, 0u)) in allocCallbackFailTest()
3251 AllocationCallbackRecorder recorder (objAllocator.getCallbacks(), 128); in allocCallbackFailMultipleObjectsTest()
3260 recorder.getCallbacks(), in allocCallbackFailMultipleObjectsTest()
3299 if (!validateAndLog(context.getTestContext().getLog(), recorder, 0u)) in allocCallbackFailMultipleObjectsTest()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiDeviceInitializationTests.cpp598 AllocationCallbackRecorder recorder (objAllocator.getCallbacks(), 128); in enumerateDevicesAllocLeakTest()
599 const auto instance = createCustomInstanceFromContext(context, recorder.getCallbacks(), true); in enumerateDevicesAllocLeakTest()
602 RecordIterator recordToCheck (recorder.getRecordsEnd()); in enumerateDevicesAllocLeakTest()
616 RecordIterator lastRecordToCheck (recorder.getRecordsEnd()); in enumerateDevicesAllocLeakTest()
H A DvktApiObjectManagementTests.cpp3051 // Supply a separate callback recorder just for object construction in createSingleAllocCallbacksTest()
3133 AllocationCallbackRecorder recorder (objAllocator.getCallbacks(), 128); in allocCallbackFailTest()
3142 recorder.getCallbacks(), in allocCallbackFailTest()
3170 if (!validateAndLog(context.getTestContext().getLog(), recorder, 0u)) in allocCallbackFailTest()
3251 AllocationCallbackRecorder recorder (objAllocator.getCallbacks(), 128); in allocCallbackFailMultipleObjectsTest()
3260 recorder.getCallbacks(), in allocCallbackFailMultipleObjectsTest()
3299 if (!validateAndLog(context.getTestContext().getLog(), recorder, 0u)) in allocCallbackFailMultipleObjectsTest()
/third_party/skia/fuzz/
H A DFuzzCanvas.cpp1532 SkPictureRecorder recorder;
1533 fuzz_canvas(fuzz, recorder.beginRecording(SkIntToScalar(kCanvasSize.width()),
1535 sk_sp<SkPicture> pic(recorder.finishRecordingAsPicture());
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryMappingTests.cpp833 AllocationCallbackRecorder recorder (getSystemAllocator());
834 const VkAllocationCallbacks* allocator = config.implicitUnmap ? recorder.getCallbacks() : DE_NULL;
918 validateAllocationCallbacks(recorder, &results);
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
H A Ddevice.py578 from devicetest.controllers.tools.recorder.record_agent import RecordAgent

Completed in 55 milliseconds

12345