Home
last modified time | relevance | path

Searched full:targetpath (Results 1 – 25 of 120) sorted by relevance

12345

/external/python/cpython3/.azure-pipelines/windows-release/
Dmsi-steps.yml17 targetPath: $(Build.BinariesDirectory)\doc
29 targetPath: $(Build.BinariesDirectory)\win32
35 targetPath: $(Build.BinariesDirectory)\win32
41 targetPath: $(Build.BinariesDirectory)\amd64
47 targetPath: $(Build.BinariesDirectory)\amd64
54 targetPath: $(Build.BinariesDirectory)\arm64
61 targetPath: $(Build.BinariesDirectory)\arm64
67 targetPath: $(Build.BinariesDirectory)\tcltk_lib_win32
73 targetPath: $(Build.BinariesDirectory)\tcltk_lib_amd64
81 targetPath: $(Build.BinariesDirectory)\tcltk_lib_arm64
[all …]
Dstage-layout-msix.yml41 targetPath: $(Build.BinariesDirectory)\bin
47 targetPath: $(Build.BinariesDirectory)\bin
54 targetPath: $(Build.BinariesDirectory)\tcltk_lib
73 targetPath: '$(Build.ArtifactStagingDirectory)\appx-store'
81 targetPath: $(Build.BinariesDirectory)\cert
101 targetPath: '$(Build.ArtifactStagingDirectory)\appx'
Dstage-layout-full.yml42 targetPath: $(Build.BinariesDirectory)\bin
48 targetPath: $(Build.BinariesDirectory)\bin
54 targetPath: $(Build.BinariesDirectory)\doc
61 targetPath: $(Build.BinariesDirectory)\tcltk_lib
79 targetPath: '$(Build.ArtifactStagingDirectory)\layout'
Dstage-build.yml39 targetPath: $(Build.ArtifactStagingDirectory)\Doc
179 targetPath: '$(Build.ArtifactStagingDirectory)\tcl_win32'
185 targetPath: '$(Build.ArtifactStagingDirectory)\tcl_amd64'
192 targetPath: '$(Build.ArtifactStagingDirectory)\tcl_arm64'
Dstage-publish-pythonorg.yml29 targetPath: $(Build.BinariesDirectory)\Doc
40 targetPath: $(Build.BinariesDirectory)\msi
64 targetPath: $(Build.BinariesDirectory)\Doc
70 targetPath: $(Build.BinariesDirectory)\msi
191 targetPath: '$(Build.ArtifactStagingDirectory)\hashes'
/external/libphonenumber/geocoder/
Dpom.xml22 <targetPath>com/google/i18n/phonenumbers/geocoding/data</targetPath>
26 <targetPath>com/google/i18n/phonenumbers/timezones/data</targetPath>
32 <targetPath>com/google/i18n/phonenumbers/geocoding/testing_data</targetPath>
36 <targetPath>com/google/i18n/phonenumbers/timezones/testing_data</targetPath>
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
DMediaRecorderFacade.java69 public void recorderStartMicrophone(@RpcParameter(name = "targetPath") String targetPath) in recorderStartMicrophone()
71 startAudioRecording(targetPath, MediaRecorder.AudioSource.MIC); in recorderStartMicrophone()
80 public void recorderStartVideo(@RpcParameter(name = "targetPath") String targetPath, in recorderStartVideo()
84 startVideoRecording(new File(targetPath), ms, videoSize); in recorderStartVideo()
163 public void recorderCaptureVideo(@RpcParameter(name = "targetPath") String targetPath, in recorderCaptureVideo()
167 startVideoRecording(new File(targetPath), ms, recordAudio); in recorderCaptureVideo()
200 private void startAudioRecording(String targetPath, int source) throws IOException { in startAudioRecording() argument
204 mMediaRecorder.setOutputFile(targetPath); in startAudioRecording()
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
DUdsNameResolverProvider.java45 String targetPath = targetUri.getPath(); in getTargetPathFromUri() local
46 if (targetPath == null) { in getTargetPathFromUri()
47 targetPath = Preconditions.checkNotNull(targetUri.getSchemeSpecificPart(), "targetPath"); in getTargetPathFromUri()
49 return targetPath; in getTargetPathFromUri()
/external/cronet/third_party/apache-portable-runtime/src/
Dlibapr.dsp62 TargetPath=Release\libapr-1.dll
65 PostBuild_Cmds=if exist $(TargetPath).manifest mt.exe -manifest $(TargetPath).manifest -outputresou…
94 TargetPath=Debug\libapr-1.dll
97 PostBuild_Cmds=if exist $(TargetPath).manifest mt.exe -manifest $(TargetPath).manifest -outputresou…
126 TargetPath=9x\Release\libapr.dll
129 PostBuild_Cmds=if exist $(TargetPath).manifest mt.exe -manifest $(TargetPath).manifest -outputresou…
158 TargetPath=9x\Debug\libapr-1.dll
161 PostBuild_Cmds=if exist $(TargetPath).manifest mt.exe -manifest $(TargetPath).manifest -outputresou…
190 TargetPath=x64\Release\libapr-1.dll
193 PostBuild_Cmds=if exist $(TargetPath).manifest mt.exe -manifest $(TargetPath).manifest -outputresou…
[all …]
/external/python/cpython2/Lib/
Dtarfile.py2171 def _extract_member(self, tarinfo, targetpath): argument
2173 file called targetpath.
2178 targetpath = targetpath.rstrip("/")
2179 targetpath = targetpath.replace("/", os.sep)
2182 upperdirs = os.path.dirname(targetpath)
2194 self.makefile(tarinfo, targetpath)
2196 self.makedir(tarinfo, targetpath)
2198 self.makefifo(tarinfo, targetpath)
2200 self.makedev(tarinfo, targetpath)
2202 self.makelink(tarinfo, targetpath)
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DDnsNameResolverProvider.java52 String targetPath = Preconditions.checkNotNull(targetUri.getPath(), "targetPath"); in newNameResolver() local
53 Preconditions.checkArgument(targetPath.startsWith("/"), in newNameResolver()
54 "the path component (%s) of the target (%s) must start with '/'", targetPath, targetUri); in newNameResolver()
55 String name = targetPath.substring(1); in newNameResolver()
/external/grpc-grpc-java/grpclb/src/main/java/io/grpc/grpclb/
DSecretGrpclbNameResolverProvider.java59 String targetPath = Preconditions.checkNotNull(targetUri.getPath(), "targetPath"); in newNameResolver() local
61 targetPath.startsWith("/"), in newNameResolver()
63 targetPath, targetUri); in newNameResolver()
64 String name = targetPath.substring(1); in newNameResolver()
/external/grpc-grpc-java/xds/src/main/java/io/grpc/xds/
DXdsNameResolverProvider.java74 String targetPath = checkNotNull(targetUri.getPath(), "targetPath"); in newNameResolver() local
76 targetPath.startsWith("/"), in newNameResolver()
78 targetPath, in newNameResolver()
80 String name = targetPath.substring(1); in newNameResolver()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DCameraFacade.java88 @RpcParameter(name = "targetPath") final String targetPath, in cameraCapturePicture()
110 takePicture(new File(targetPath), takePictureResult, camera); in cameraCapturePicture()
212 @RpcParameter(name = "targetPath") final String targetPath) { in cameraInteractiveCapturePicture()
214 File file = new File(targetPath); in cameraInteractiveCapturePicture()
/external/python/cpython3/Lib/
Dtarfile.py2379 def _extract_member(self, tarinfo, targetpath, set_attrs=True, argument
2382 file called targetpath.
2387 targetpath = targetpath.rstrip("/")
2388 targetpath = targetpath.replace("/", os.sep)
2391 upperdirs = os.path.dirname(targetpath)
2403 self.makefile(tarinfo, targetpath)
2405 self.makedir(tarinfo, targetpath)
2407 self.makefifo(tarinfo, targetpath)
2409 self.makedev(tarinfo, targetpath)
2411 self.makelink(tarinfo, targetpath)
[all …]
/external/libphonenumber/carrier/
Dpom.xml22 <targetPath>com/google/i18n/phonenumbers/carrier/data</targetPath>
28 <targetPath>com/google/i18n/phonenumbers/carrier/testing_data</targetPath>
/external/libphonenumber/libphonenumber/
Dpom.xml22 <targetPath>com/google/i18n/phonenumbers/data</targetPath>
28 <targetPath>com/google/i18n/phonenumbers/data</targetPath>
/external/libpng/projects/visualc71/
Dpngtest.vcproj31 $(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
78 $(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
127 $(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
176 $(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
224 $(TargetPath) ..\..\pngtest.png $(IntDir)\pngout.png"
/external/okio/okio-wasifilesystem/src/wasmWasiTest/kotlin/okio/
DWasiTest.kt210 val targetPath = base / "target" in <lambda>() constant
212 fileSystem.write(targetPath) { in <lambda>()
227 val targetPath = base / "target" in <lambda>() constant
232 fileSystem.atomicMove(sourcePath, targetPath) in <lambda>()
236 fileSystem.read(targetPath) { in <lambda>()
241 listOf(targetPath), in <lambda>()
/external/apache-http/src/org/apache/http/impl/cookie/
DBasicPathHandler.java78 String targetpath = origin.getPath(); in match() local
86 boolean match = targetpath.startsWith (topmostPath); in match()
89 if (match && targetpath.length() != topmostPath.length()) { in match()
91 match = (targetpath.charAt(topmostPath.length()) == '/'); in match()
/external/dokka/runners/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/
DUtils.kt32 class CopyFileVisitor(private var sourcePath: Path?, private val targetPath: Path) : SimpleFileVisi… constant in org.jetbrains.dokka.gradle.CopyFileVisitor
40 Files.createDirectories(targetPath.resolve(sourcePath?.relativize(dir))) in preVisitDirectory()
48 …Files.copy(file, targetPath.resolve(sourcePath?.relativize(file)), StandardCopyOption.REPLACE_EXIS… in visitFile()
/external/python/cpython3/Tools/msi/
Dmake_zip.proj16 <TargetPath>$(OutputPath)\$(TargetName)$(TargetExt)</TargetPath>
21 <Arguments>$(Arguments) --zip "$(TargetPath)"</Arguments>
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DJimfsFileSystemProvider.java235 JimfsPath targetPath = checkPath(target); in createSymbolicLink() local
237 linkPath.getFileSystem().equals(targetPath.getFileSystem()), in createSymbolicLink()
240 view.createSymbolicLink(linkPath, targetPath, attrs); in createSymbolicLink()
264 JimfsPath targetPath = checkPath(target); in copy() local
267 FileSystemView targetView = getDefaultView(targetPath); in copy()
268 sourceView.copy(sourcePath, targetView, targetPath, options, move); in copy()
/external/bazelbuild-rules_android/src/tools/java/com/google/devtools/build/android/sandboxedsdktoolbox/clientsources/
DGenerateClientSourcesCommand.java85 Path targetPath = targetDir.resolve(sourcesDirectory.relativize(path)); in splitSources() local
87 Files.createDirectories(targetPath.getParent()); in splitSources()
88 Files.move(path, targetPath); in splitSources()
/external/python/cpython2/PCbuild/
Dtcl.vcxproj48 <TargetPath>$(OutDir)bin\$(tclDLLName)</TargetPath>
87 <Delete Files="$(TargetPath);$(BuildPath)$(tclDLLName)" />

12345