/external/autotest/client/cros/audio/ |
D | audio_quality_measurement_unittest.py | 99 """Generates artifacts before playing.""" 111 """Generates artifacts after playing.""" 148 """Sine wave signal with no noise or artifacts.""" 151 self.assertTrue(len(result['artifacts']['noise_before_playback']) == 0) 152 self.assertTrue(len(result['artifacts']['noise_after_playback']) == 0) 153 self.assertTrue(len(result['artifacts']['delay_during_playback']) == 0) 154 self.assertTrue(len(result['artifacts']['burst_during_playback']) == 0) 164 self.assertTrue(len(result['artifacts']['noise_before_playback']) == 0) 165 self.assertTrue(len(result['artifacts']['noise_after_playback']) == 0) 166 self.assertTrue(len(result['artifacts']['delay_during_playback']) == 0) [all …]
|
D | check_quality.py | 7 """Command line tool to analyze wave file and detect artifacts.""" 383 artifacts = quality_res['artifacts'] 384 if artifacts['noise_before_playback']: 387 artifacts['noise_before_playback'])) 388 if artifacts['noise_after_playback']: 391 artifacts['noise_after_playback'])) 392 if artifacts['delay_during_playback']: 395 artifacts['delay_during_playback'])) 396 if artifacts['burst_during_playback']: 399 artifacts['burst_during_playback']))
|
/external/autotest/client/common_lib/cros/ |
D | dev_server.py | 44 # artifacts are staged. 46 # Artifacts that should be staged when client calls devserver RPC to stage an 49 # Artifacts that should be staged when client calls devserver RPC to stage an 54 # Artifacts that should be staged when client calls devserver RPC to stage an 215 def _get_storage_server_for_artifacts(artifacts=None): argument 216 """Gets the appropriate storage server for the given artifacts. 218 @param artifacts: A list of artifacts we need to stage. 219 @return: The address of the storage server that has these artifacts. 220 The default image storage server if no artifacts are specified. 224 if artifacts and factory_artifact and factory_artifact in artifacts: [all …]
|
D | dev_server_unittest.py | 1091 def _stageTestHelper(self, artifacts=[], files=[], archive_url=None): argument 1092 """Helper to test combos of files/artifacts/urls with stage call.""" 1106 mox.StrContains('artifacts=%s' % 1107 ','.join(artifacts)), 1112 mox.StrContains('artifacts=%s' % 1113 ','.join(artifacts)), 1120 self.dev_server.stage_artifacts(name, artifacts, files, archive_url) 1125 """Basic functionality to stage artifacts (similar to 1127 self._stageTestHelper(artifacts=['full_payload', 'stateful']) 1131 """Basic functionality to stage artifacts (similar to [all …]
|
/external/ImageMagick/MagickCore/ |
D | artifact.c | 86 % CloneImageArtifacts() clones all image artifacts to another image. 88 % This will not delete any existing artifacts that may be present! 97 % o image: the image, to recieve the cloned artifacts. 99 % o clone_image: the source image for artifacts to clone. 114 if (clone_image->artifacts != (void *) NULL) in CloneImageArtifacts() 116 if (image->artifacts != (void *) NULL) in CloneImageArtifacts() 118 image->artifacts=CloneSplayTree((SplayTreeInfo *) clone_image->artifacts, in CloneImageArtifacts() 205 if (image->artifacts == (void *) NULL) in DeleteImageArtifact() 207 return(DeleteNodeFromSplayTree((SplayTreeInfo *) image->artifacts,artifact)); in DeleteImageArtifact() 221 % DestroyImageArtifacts() destroys all artifacts and associated memory [all …]
|
/external/autotest/client/common_lib/ |
D | android_utils.py | 192 """A wrapper class for constants and methods related to artifacts. 202 # (os, board) = 'artifacts' 209 # Default artifacts for Android provision 215 # android board `xyz` needs to stage artifacts 220 # A dict of board:artifacts, can be defined in global config 226 """Get artifacts need to be staged for reimage for given board. 230 @return: A string of artifacts to be staged. 232 logging.debug('artifacts for %s %s', os, board) 234 logging.debug('Found override of artifacts for board %s: %s', board, 236 artifacts = cls.artifacts_map[board] [all …]
|
/external/protobuf/protoc-artifacts/ |
D | README.md | 1 # Build scripts that publish pre-compiled protoc artifacts 25 ## To install artifacts locally 52 ## To push artifacts to Maven Central 53 Before you can upload artifacts to Maven Central repository, make sure you have 66 Use the following command to deploy artifacts for the host platform to a 77 have found in the first deployment so that all artifacts go to the same 97 $ docker build -t protoc-artifacts . 102 $ docker run -it --rm=true protoc-artifacts 137 We have successfully built artifacts on the following environments:
|
D | pom.xml | 71 <id>attach-artifacts</id> 77 <artifacts> 83 </artifacts> 109 <id>sign-artifacts</id>
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/ |
D | default.build | 51 <target name="clean.vsnet" description="cleans up VS.NET build artifacts and output"> 52 <!-- delete VS.NET project artifacts directory --> 53 <echo message="Deleting VS.NET artifacts directory '${base.dir}/bin'" /> 55 <echo message="Deleting VS.NET artifacts directory '${base.dir}/obj'" /> 58 <!-- delete VS.NET project artifacts directory for Tests projects--> 59 … <echo message="Deleting VS.NET artifacts directory '${base.dir}/../Antlr3.Runtime.Tests/bin'" /> 61 … <echo message="Deleting VS.NET artifacts directory '${base.dir}/../Antlr3.Runtime.Tests/obj'" />
|
/external/conscrypt/ |
D | RELEASING.md | 34 If you haven't deployed artifacts to Maven Central before, you need to setup 178 jars once. So the first deployment is for all of the artifacts from one of the selected 179 OS/architectures. After that, we then deploy the codegen artifacts for the remaining 203 If the version has the `-SNAPSHOT` suffix, the artifacts will automatically 205 artifacts will go to a freshly created staging repository. 208 The previous step will only deploy the artifacts for the OS you run on 216 ensure that the artifacts are pushed to the same staging repository. 265 Once all of the artifacts have been pushed to the staging repository, the 268 be `released`, which will begin the process of pushing the new artifacts to
|
D | README.md | 30 <b><u>NOTE:</u> This section is under construction! Artifacts have 42 The OpenJDK artifacts are platform-dependent since each embeds a native library for a particular 43 platform. We publish artifacts to Maven Central for the following platforms: 103 To depend on the uber jar, simply use the `conscrypt-openjdk-uber` artifacts. 137 artifacts. Rather, the other modules just point to this directory as source.
|
/external/autotest/client/cros/chameleon/ |
D | audio_test_utils.py | 388 @param check_artifacts: True to check artifacts in the signal. 475 if len(result['artifacts']['noise_before_playback']) > 0: 477 'Channel %d: Detects artifacts before playing near' 480 str(result['artifacts']['noise_before_playback']))) 482 if len(result['artifacts']['noise_after_playback']) > 0: 484 'Channel %d: Detects artifacts after playing near' 487 str(result['artifacts']['noise_after_playback']))) 490 delays = result['artifacts']['delay_during_playback'] 503 result['artifacts']['delay_during_playback'] = new_delays 514 if len(result['artifacts']['delay_during_playback']) > 0: [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/ |
D | default.build | 34 <target name="clean.vsnet" description="cleans up VS.NET build artifacts and output"> 35 <!-- delete VS.NET project artifacts directory --> 36 <echo message="Deleting VS.NET artifacts directory '${base.dir}/bin'" /> 38 <echo message="Deleting VS.NET artifacts directory '${base.dir}/obj'" />
|
/external/autotest/server/site_tests/audio_AudioArtifacts/ |
D | control.headphone.150s | 11 PURPOSE = "Remotely controlled headphone audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts" 22 This test remotely tests headphone audio artifacts against DUT.
|
D | control.speaker | 11 PURPOSE = "Remotely controlled speaker audio artifacts test." 12 CRITERIA = "This test will fail if the recorded volume contains artifacts" 22 This test remotely tests speaker audio artifacts against DUT.
|
D | control.hsp | 11 PURPOSE = "Remotely controlled bluetooth HSP audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts" 22 This test remotely tests bluetooth HSP audio artifacts against DUT.
|
D | control.usb | 11 PURPOSE = "Remotely controlled USB audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts" 22 This test remotely tests USB audio artifacts against DUT.
|
D | control.headphone | 11 PURPOSE = "Remotely controlled headphone audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts" 22 This test remotely tests headphone audio artifacts against DUT.
|
D | control.hdmi | 11 PURPOSE = "Remotely controlled HDMI audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts" 22 This test remotely tests HDMI audio artifacts against DUT.
|
D | control.a2dp | 11 PURPOSE = "Remotely controlled bluetooth A2DP audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts" 22 This test remotely tests bluetooth A2DP audio artifacts against DUT.
|
D | control.volume_changing_headphone | 11 PURPOSE = "Remotely controlled headphone audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts or the changing of volume … 22 This test remotely tests headphone audio artifacts against DUT.
|
D | control.mute_headphone | 11 PURPOSE = "Remotely controlled headphone audio artifacts test." 12 CRITERIA = "This test will fail if the recorded audio contains artifacts or the durations of mute n… 22 This test remotely tests headphone audio artifacts against DUT.
|
/external/antlr/antlr-3.4/antlr3-maven-archetype/ |
D | pom.xml | 35 The ANTLR Maven artifacts are now released via the Sonotype OSS 41 means that only ANTLR developers can released the artifacts, but 52 <id>release-sign-artifacts</id> 67 <id>sign-artifacts</id>
|
/external/jdiff/ |
D | build.gradle | 67 description 'Builds distribution artifacts.' 69 from uploadArchives.artifacts 73 logger.lifecycle "Compressed maven artifacts to ${archivePath}"
|
/external/doclava/ |
D | build.gradle | 100 description 'Builds distribution artifacts.' 102 from uploadArchives.artifacts 106 logger.lifecycle "Compressed maven artifacts to ${archivePath}"
|