HomeSort by relevance Sort by last modified time
    Searched refs:File (Results 76 - 100 of 6970) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/lld/Core/
ArchiveLibraryFile.h 5 // This file is distributed under the University of Illinois Open Source
13 #include "lld/Core/File.h"
19 /// The ArchiveLibraryFile subclass of File is used to represent unix
23 /// find() method. If the archive contains an object file which has a
25 /// object file File is returned.
27 class ArchiveLibraryFile : public File {
29 static bool classof(const File *f) {
34 /// specified name and return the File object for that member, or nullptr.
35 virtual File *find(StringRef name) = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/lld/Core/
ArchiveLibraryFile.h 5 // This file is distributed under the University of Illinois Open Source
13 #include "lld/Core/File.h"
19 /// The ArchiveLibraryFile subclass of File is used to represent unix
23 /// find() method. If the archive contains an object file which has a
25 /// object file File is returned.
27 class ArchiveLibraryFile : public File {
29 static bool classof(const File *f) {
34 /// specified name and return the File object for that member, or nullptr.
35 virtual File *find(StringRef name) = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/lld/Core/
ArchiveLibraryFile.h 5 // This file is distributed under the University of Illinois Open Source
13 #include "lld/Core/File.h"
19 /// The ArchiveLibraryFile subclass of File is used to represent unix
23 /// find() method. If the archive contains an object file which has a
25 /// object file File is returned.
27 class ArchiveLibraryFile : public File {
29 static bool classof(const File *f) {
34 /// specified name and return the File object for that member, or nullptr.
35 virtual File *find(StringRef name) = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/lld/Core/
ArchiveLibraryFile.h 5 // This file is distributed under the University of Illinois Open Source
13 #include "lld/Core/File.h"
19 /// The ArchiveLibraryFile subclass of File is used to represent unix
23 /// find() method. If the archive contains an object file which has a
25 /// object file File is returned.
27 class ArchiveLibraryFile : public File {
29 static bool classof(const File *f) {
34 /// specified name and return the File object for that member, or nullptr.
35 virtual File *find(StringRef name) = 0
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/lld/Core/
ArchiveLibraryFile.h 5 // This file is distributed under the University of Illinois Open Source
13 #include "lld/Core/File.h"
19 /// The ArchiveLibraryFile subclass of File is used to represent unix
23 /// find() method. If the archive contains an object file which has a
25 /// object file File is returned.
27 class ArchiveLibraryFile : public File {
29 static bool classof(const File *f) {
34 /// specified name and return the File object for that member, or nullptr.
35 virtual File *find(StringRef name) = 0
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
26 public void file(File file) { method in class:Rm
27 new Command("rm", "-f", file.getPath()).execute();
30 public void directoryTree(File directory) {
Mkdir.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
26 public void mkdirs(File directory) {
  /external/emma/core/java12/com/vladium/util/
IConstants.java 11 import java.io.File;
23 File [] EMPTY_FILE_ARRAY = new File [0];
  /external/vogar/src/vogar/
FileCache.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
22 * Interacts with a file system on behalf of a cache.
28 void copyToCache(File source, String key);
30 void copyFromCache(String key, File destination);
  /libcore/benchmarks/src/benchmarks/regression/
FileBenchmark.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
24 new File("/foo", "/");
30 new File("/foo//bar//baz//bag", "/baz/");
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
SaveVideoFileInfo.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
22 public File mFile = null;
25 public File mDirectory = null;
  /tools/tradefederation/contrib/src/com/android/tradefed/build/
ITestzipBuildInfo.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
27 * Get the local path to the extracted tests.zip file contents.
29 public File getTestzipDir();
32 * Set local path to the extracted tests.zip file contents.
36 public void setTestzipDir(File testsZipFile, String version);
  /tools/tradefederation/core/src/com/android/tradefed/build/
IFileDownloader.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
21 * Interface for downloading a remote file.
26 * Downloads a remote file to a temporary file on local disk.
28 * @param remoteFilePath the remote path to the file to download, relative to a implementation
30 * @return the temporary local downloaded {@link File}.
31 * @throws BuildRetrievalError if file could not be downloaded
33 public File downloadFile(String remoteFilePath) throws BuildRetrievalError;
37 * destination file the remote contents should be placed in
    [all...]
IFolderBuildInfo.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
29 * @return the {@link File} directory.
31 public File getRootDir();
36 public void setRootDir(File rootDir);
  /art/libartbase/base/
os.h 5 * you may not use this file except in compliance with the License.
28 typedef ::unix_file::FdFile File;
34 // Open an existing file with read only access.
35 static File* OpenFileForReading(const char* name);
37 // Open an existing file with read/write access.
38 static File* OpenFileReadWrite(const char* name);
40 // Create an empty file with read/write access. This is a *new* file, that is, if the file
42 static File* CreateEmptyFile(const char* name)
    [all...]
  /external/junit/src/main/java/org/junit/rules/
TemporaryFolder.java 3 import java.io.File;
22 * File createdFile= folder.newFile("myfile.txt");
23 * File createdFolder= folder.newFolder("subfolder");
32 private final File parentFolder;
33 private File folder;
39 public TemporaryFolder(File parentFolder) {
63 * Returns a new fresh file with the given name under the temporary folder.
65 public File newFile(String fileName) throws IOException {
66 File file = new File(getRoot(), fileName) local
94 File file = getRoot(); local
    [all...]
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/
FileMapping.kt 5 * you may not use this file except in compliance with the License.
19 import java.io.File
22 * Represents a source file ([from]) to be mapped to a target file ([to]).
24 data class FileMapping(val from: File, val to: File
TransformationResult.kt 5 * you may not use this file except in compliance with the License.
19 import java.io.File
27 data class TransformationResult(val filesToRemove: Set<File>, val filesToAdd: Set<File>
  /cts/tools/vm-tests-tf/src/util/build/
SourceBuildStep.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
23 SourceBuildStep(File destFile) {
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/input/
InputFileGenerator.java 5 * you may not use this file except in compliance with the License.
18 import java.io.File;
24 Iterable<? extends File> generate();
  /external/jacoco/jacoco-maven-plugin.test/it/it-customize-agent/
verify.bsh 15 String agentOptions = "destfile=" + basedir + File.separator + "target" + File.separator + "coverage.exec"
24 + ",output=file"
27 + ",classdumpdir=" + basedir + File.separator + "target" + File.separator + "classdumps"
32 String buildLog = FileUtils.fileRead( new File( basedir, "build.log" ) );
37 File file = new File( basedir, "target/coverage.exec" );
38 if ( !file.isFile()
    [all...]
  /external/jacoco/jacoco-maven-plugin.test/it/it-offline-instrumentation/
verify.bsh 15 File file = new File( basedir, "child/target/generated-classes/jacoco/Example.class" );
16 if ( !file.isFile() ) {
17 throw new RuntimeException( "Could not find backup of instrumented class: " + file );
19 file = new File( basedir, "child/target/generated-classes/jacoco/DoNotInstrument.class" );
20 if ( file.isFile() ) {
21 throw new RuntimeException( "Excluded file should not be instrumented: " + file );
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
TemporaryDirectory.java 5 * you may not use this file except in compliance with the License.
19 import java.io.File;
36 public static synchronized void setUpDirectory(File baseDir) {
  /external/libchrome/base/files/
file.cc 3 // found in the LICENSE file.
5 #include "base/files/file.h"
14 File::Info::Info()
20 File::Info::~Info() {
23 File::File()
30 File::File(const FilePath& path, uint32_t flags)
36 File::File(PlatformFile platform_file
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileTest.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
20 import java.io.File;
41 private static void deleteTempFolder(File dir) {
45 File f = new File(dir, files[i]);
57 if (File.separatorChar == path.charAt(path.length() - 1)) {
60 return path + File.separator;
66 private File tempDirectory
118 File file = new File(root, "\/dir\/file"); local
985 File file; local
1202 File file = new File(dir, "notADir.tst"); local
1292 File file = new File(dir, "notADir.tst"); local
1419 File file = new File(baseDir, "notADir.tst"); local
1536 File file = new File(dir, "notADir.tst"); local
2184 File file = new File("FileTest.golden.ser"); local
    [all...]

Completed in 567 milliseconds

1 2 34 5 6 7 8 91011>>