/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | DnsNameResolverProvider.java | 46 String targetPath = Preconditions.checkNotNull(targetUri.getPath(), "targetPath"); in newNameResolver() local 47 Preconditions.checkArgument(targetPath.startsWith("/"), in newNameResolver() 48 "the path component (%s) of the target (%s) must start with '/'", targetPath, targetUri); in newNameResolver() 49 String name = targetPath.substring(1); in newNameResolver()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/ |
D | MediaRecorderFacade.java | 69 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/dokka/runners/gradle-integration-tests/src/test/kotlin/org/jetbrains/dokka/gradle/ |
D | Utils.kt | 32 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/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | CameraFacade.java | 88 @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/cldr/tools/java/com/ibm/icu/dev/test/ |
D | TestFmwk.java | 675 public Target resolveTarget(TestParams paramsArg, String targetPath) { in resolveTarget() argument 679 if (targetPath != null) { in resolveTarget() 680 if (targetPath.length() == 0) { in resolveTarget() 681 targetPath = null; in resolveTarget() 684 int e = targetPath.length(); in resolveTarget() 687 while (targetPath.charAt(p) == '/') { in resolveTarget() 690 while (e > p && targetPath.charAt(e - 1) == '/') { in resolveTarget() 693 if (p > 0 || e < targetPath.length()) { in resolveTarget() 694 targetPath = targetPath.substring(p, e - p); in resolveTarget() 696 e = targetPath.length(); in resolveTarget() [all …]
|
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | JimfsFileSystemProvider.java | 235 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()
|
D | JimfsSecureDirectoryStream.java | 167 public void move(Path srcPath, SecureDirectoryStream<Path> targetDir, Path targetPath) in move() argument 171 JimfsPath checkedTargetPath = checkPath(targetPath); in move()
|
/external/dokka/core/src/main/kotlin/Generation/ |
D | FileGenerator.kt | 62 formatService.enumerateSupportFiles { resource, targetPath -> in <lambda>() method 63 FileOutputStream(File(root, relativePathToNode(listOf(targetPath), false))).use { in <lambda>()
|
/external/dokka/core/src/main/kotlin/Formats/ |
D | FormatService.kt | 20 fun enumerateSupportFiles(callback: (resource: String, targetPath: String) -> Unit) { in createOutputBuilder()
|
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/ |
D | PathSubject.java | 206 public PathSubject withTarget(String targetPath) throws IOException { in withTarget() argument 208 if (!actualTarget.equals(toPath(targetPath))) { in withTarget() 210 fact("expected link target", targetPath), in withTarget()
|
/external/skqp/infra/cts/ |
D | run_testlab.go | 276 targetPath := fmt.Sprintf("%s/%s/%s", RESULT_BUCKET, resultsDir, META_DATA_FILENAME) 277 if err := meta.writeToGCS(targetPath, client); err != nil { 280 sklog.Infof("Meta data written to gs://%s", targetPath)
|