Home
last modified time | relevance | path

Searched refs:cacheRoot (Results 1 – 15 of 15) sorted by relevance

/external/vogar/src/vogar/android/
DDeviceFileCache.java29 private final File cacheRoot; field in DeviceFileCache
37 this.cacheRoot = new File(deviceDir, "md5-cache"); in DeviceFileCache()
46 cachedFiles.addAll(deviceFilesystem.ls(cacheRoot)); in existsInCache()
53 File cachedFile = new File(cacheRoot, key); in existsInCache()
59 File cachedFile = new File(cacheRoot, key); in copyFromCache()
65 File cachedFile = new File(cacheRoot, key); in copyToCache()
66 deviceFilesystem.mkdirs(cacheRoot); in copyToCache()
/external/dokka/runners/ant/src/main/kotlin/ant/
Ddokka.kt47 var cacheRoot: String? = null variable in org.jetbrains.dokka.ant.DokkaAntTask
141 cacheRoot = cacheRoot, in execute()
/external/dokka/core/src/main/kotlin/
DDokkaBootstrapImpl.kt73 cacheRoot = cacheRoot, in configure()
/external/dokka/runners/maven-plugin/src/main/kotlin/
DDokkaMojo.kt111 var cacheRoot: String? = null variable in org.jetbrains.dokka.maven.AbstractDokkaMojo
146 cacheRoot = cacheRoot, in getOutDir()
/external/dokka/runners/cli/src/main/kotlin/cli/
Dmain.kt64 var cacheRoot: String? = null in <lambda>() variable in org.jetbrains.dokka.DokkaArguments
151 cacheRoot = arguments.cacheRoot, in entry()
/external/dokka/integration/src/main/kotlin/org/jetbrains/dokka/
Dconfiguration.kt44 val cacheRoot: String? in toJsonValue() constant
111 override val cacheRoot: String?, constant in org.jetbrains.dokka.SerializeOnlyDokkaConfiguration
/external/swiftshader/tests/regres/cmd/regres/
Dmain.go110 cacheRoot: *cacheDir,
135 cacheRoot string // path to the regres cache directory member
153 func getToolchain(tarExe, cacheRoot string) (*llvm.Toolchain, error) {
154 path := filepath.Join(cacheRoot, "llvm")
169 tarFile := filepath.Join(cacheRoot, "llvm.tar.xz")
176 target := filepath.Join(cacheRoot, "llvm-tmp")
217 &r.cacheRoot,
228 if err := os.MkdirAll(r.cacheRoot, 0777); err != nil {
279 toolchain, err := getToolchain(r.tar, r.cacheRoot)
490 cacheDir := path.Join(r.cacheRoot, "deqp", hash)
[all …]
/external/cronet/stable/third_party/libc++/src/utils/libcxx/test/
Ddsl.py55 cacheRoot = os.path.join(config.test_exec_root, "__config_cache__")
56 persistentCache = os.path.join(cacheRoot, function.__name__)
57 if not os.path.exists(cacheRoot):
58 os.makedirs(cacheRoot)
/external/cronet/tot/third_party/libc++/src/utils/libcxx/test/
Ddsl.py55 cacheRoot = os.path.join(config.test_exec_root, "__config_cache__")
56 persistentCache = os.path.join(cacheRoot, function.__name__)
57 if not os.path.exists(cacheRoot):
58 os.makedirs(cacheRoot)
/external/dokka/core/src/main/kotlin/Generation/
DconfigurationImpl.kt60 override val cacheRoot: String?, constant in DokkaConfigurationImpl
/external/dokka/
DREADME.md68 cacheRoot = 'default'
252 <cacheRoot>default</cacheRoot>
373 …* `cacheRoot` - Use `default` or set to custom path to cache directory to enable package-list cach…
396 …* `-cacheRoot` - Use `default` or set to custom path to cache directory to enable package-list cac…
/external/dokka/runners/gradle-plugin/src/main/kotlin/
Dmain.kt143 var cacheRoot: String? = null variable in org.jetbrains.dokka.gradle.DokkaTask
329 cacheRoot, in collectSuppressedFiles()
/external/dokka/core/src/main/kotlin/Kotlin/
DDocumentationBuilder.kt63 cacheRoot: String? = null, in <lambda>()
92 val cacheRoot: Path? = when { in <lambda>() constant
93 cacheRoot == "default" -> Paths.get(System.getProperty("user.home"), ".cache", "dokka") in <lambda>()
94 cacheRoot != null -> Paths.get(cacheRoot) in <lambda>()
DExternalDocumentationLinkResolver.kt45 … val cacheDir: Path? = options.cacheRoot?.resolve("packageListCache")?.apply { toFile().mkdirs() } in toString()
/external/dokka/core/src/test/kotlin/
DTestAPI.kt44 cacheRoot = "default", in <lambda>()