/third_party/libinput/tools/ |
H A D | test_tool_option_parsing.py | 325 def recording(tmp_path): function 329 def test_libinput_record_all(libinput_record, recording): 330 libinput_record.run_command_success(["--all", "-o", recording]) 331 libinput_record.run_command_success(["--all", recording]) 334 def test_libinput_record_outfile(libinput_record, recording): 335 libinput_record.run_command_success(["-o", recording]) 336 libinput_record.run_command_success(["--output-file", recording]) 337 libinput_record.run_command_success(["--output-file={}".format(recording)]) 340 def test_libinput_record_single(libinput_record, recording): 342 libinput_record.run_command_success(["-o", recording, "/de [all...] |
H A D | libinput-replay.py | 64 raise YamlException("Failed to get '{}' from recording.".format(key)) 70 recording and ring the alarm bell if one of them is off. 91 f"Warning: udev property mismatch: recording has {name}={yaml_props[name]}, device has {name}={value}" 95 # The list of properties we add to the recording, see libinput-record.c 250 def loop(args, recording): 251 devices = fetch(recording, "devices") 268 input("No events in recording. Hit enter to quit") 316 def setup_quirks(recording): 317 devices = fetch(recording, "devices") 345 def check_file(recording) [all...] |
H A D | libinput-record-verify-yaml.py | 49 """Returns all libinput events in the recording, regardless of the 673 parser = argparse.ArgumentParser(description="Verify a YAML recording") 675 "recording", 678 help="Path to device recording", 682 TestYaml.filename = args.recording
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/ |
H A D | PlayRecordingCallback.h | 29 void setRecording(MultiChannelRecording *recording) { in setRecording() argument 30 mRecording = recording; in setRecording()
|
H A D | FullDuplexAnalyzer.h | 51 void setRecording(MultiChannelRecording *recording) { in setRecording() argument 52 mRecording = recording; in setRecording()
|
H A D | InputStreamCallbackAnalyzer.h | 50 void setRecording(MultiChannelRecording *recording) { in setRecording() argument 51 mRecording = recording; in setRecording()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/ |
H A D | vktCommandPoolMemoryReservationTests.cpp | 310 } recording[] = in createCommandPoolMemoryReservationTests() local 339 for (int simIdx = 0; simIdx < DE_LENGTH_OF_ARRAY(recording); ++simIdx) in createCommandPoolMemoryReservationTests() 341 de::MovePtr<tcu::TestCaseGroup> simGroup(new tcu::TestCaseGroup(testCtx, recording[simIdx].name)); in createCommandPoolMemoryReservationTests() 343 if(!recording[simIdx].multipleRecording) in createCommandPoolMemoryReservationTests() 362 recording[simIdx].multipleRecording in createCommandPoolMemoryReservationTests()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/ |
H A D | vktCommandPoolMemoryReservationTests.cpp | 309 } recording[] = in createCommandPoolMemoryReservationTests() local 338 for (int simIdx = 0; simIdx < DE_LENGTH_OF_ARRAY(recording); ++simIdx) in createCommandPoolMemoryReservationTests() 340 de::MovePtr<tcu::TestCaseGroup> simGroup(new tcu::TestCaseGroup(testCtx, recording[simIdx].name, "")); in createCommandPoolMemoryReservationTests() 342 if(!recording[simIdx].multipleRecording) in createCommandPoolMemoryReservationTests() 361 recording[simIdx].multipleRecording in createCommandPoolMemoryReservationTests()
|
/third_party/skia/experimental/graphite/src/ |
H A D | Context.cpp | 42 void Context::insertRecording(std::unique_ptr<Recording> recording) { in insertRecording() argument 43 fRecordings.emplace_back(std::move(recording)); in insertRecording() 48 // one. Once we have more than one recording queued up we will need to extract the in submit()
|
/third_party/python/Lib/test/ |
H A D | test_logging.py | 4394 recording = RecordingHandler() 4395 logging.root.addHandler(recording) 4399 log_method(level, "test me: %r", recording) 4401 log_method("test me: %r", recording) 4403 self.assertEqual(len(recording.records), 1) 4404 record = recording.records[0] 4405 self.assertEqual(record.getMessage(), "test me: %r" % recording) 4979 self.recording = RecordingHandler() 4981 self.logger.addHandler(self.recording) 4982 self.addCleanup(self.logger.removeHandler, self.recording) [all...] |
/third_party/skia/tools/skpbench/ |
H A D | skpbench.cpp | 66 static DEFINE_int(ddlNumRecordingThreads, 0, "number of DDL recording threads (0=num_cores)"); 205 // Return the number of frames in the recording. 682 SkCanvas* recording = recorder.beginRecording(bounds); in create_warmup_skp() local 684 recording->clear(SK_ColorWHITE); in create_warmup_skp() 692 recording->drawPath(bigPath, stroke); in create_warmup_skp() 697 recording->drawRect(bounds, perlin); in create_warmup_skp() 711 SkCanvas* recording = recorder.beginRecording(bounds); in create_skp_from_svg() local 713 svg->setContainerSize(SkSize::Make(recording->getBaseLayerSize())); in create_skp_from_svg() 714 svg->render(recording); in create_skp_from_svg()
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | echo_diagnostic.m | 6 % recording 'rec_file' using the far end signal 'play_file' using
|
/third_party/skia/dm/ |
H A D | DMSrcSink.cpp | 132 // Note: we don't call "gpuTeardown" here because, when testing DDL recording, we want in draw() 1853 // We have to wait for the recording threads to schedule all their work on the gpu thread in ddlDraw() 1855 // is not blocked at this point and this thread is borrowing recording work. in ddlDraw() 1858 // Note: at this point the recording thread(s) are stalled out w/ nothing to do. in ddlDraw() 1860 // The recording threads have already scheduled the drawing of each tile's DDL on the gpu in ddlDraw() 2187 std::unique_ptr<skgpu::Recording> recording = recorder->snap(); in draw() local 2189 context->insertRecording(std::move(recording)); in draw()
|