HomeSort by relevance Sort by last modified time
    Searched refs:Files (Results 226 - 250 of 546) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/Archive/7z/
7zIn.h 100 CRecordVector<CFileItem> Files;
132 Files.Clear();
  /external/webrtc/webrtc/modules/audio_processing/ns/
Android.mk 28 # Files for floating point.
31 # Flags passed to both C and C++ files.
92 # Flags passed to both C and C++ files.
  /prebuilts/misc/common/robolectric/
robotest-internal.mk 10 # Files in which to store the output and return value of the tests.
  /libcore/ojluni/src/main/java/java/nio/file/
Files.java 81 * This class consists exclusively of static methods that operate on files,
82 * directories, or other types of files.
90 public final class Files {
91 private Files() { }
180 * OutputStream out = Files.newOutputStream(path);
183 * out = Files.newOutputStream(path, APPEND);
186 * out = Files.newOutputStream(path, CREATE, APPEND);
189 * out = Files.newOutputStream(path, CREATE_NEW);
311 * ReadableByteChannel rbc = Files.newByteChannel(path, EnumSet.of(READ)));
315 * WritableByteChannel wbc = Files.newByteChannel(path, EnumSet.of(CREATE,APPEND))
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
exec_bsd.go 52 // Make sure that nextfd is beyond any currently open files so
54 fd := make([]int, len(attr.Files))
55 nextfd = len(attr.Files)
56 for i, ufd := range attr.Files {
exec_solaris.go 67 // Make sure that nextfd is beyond any currently open files so
69 fd := make([]int, len(attr.Files))
70 nextfd = len(attr.Files)
71 for i, ufd := range attr.Files {
mksyscall_windows.go 10 It parses all files specified on command line containing function
598 // Source files and functions.
601 Files []string
616 // ParseFiles parses files listed in fs and extracts all syscall
617 // functions listed in sys comments. It returns source files
622 Files: make([]string, 0),
680 src.Files = append(src.Files, path)
699 if len(src.Files) == 0 {
700 return false, errors.New("no input files provided"
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
exec_bsd.go 52 // Make sure that nextfd is beyond any currently open files so
54 fd := make([]int, len(attr.Files))
55 nextfd = len(attr.Files)
56 for i, ufd := range attr.Files {
exec_solaris.go 67 // Make sure that nextfd is beyond any currently open files so
69 fd := make([]int, len(attr.Files))
70 nextfd = len(attr.Files)
71 for i, ufd := range attr.Files {
mksyscall_windows.go 10 It parses all files specified on command line containing function
598 // Source files and functions.
601 Files []string
616 // ParseFiles parses files listed in fs and extracts all syscall
617 // functions listed in sys comments. It returns source files
622 Files: make([]string, 0),
680 src.Files = append(src.Files, path)
699 if len(src.Files) == 0 {
700 return false, errors.New("no input files provided"
    [all...]
  /external/clang/lib/Tooling/Core/
Replacement.cpp 259 FileManager Files(FileSystemOptions(), InMemoryFileSystem);
263 SourceManager SourceMgr(Diagnostics, Files);
267 FileID ID = SourceMgr.createFileID(Files.getFile("<stdin>"), SourceLocation(),
  /external/emma/core/java12/com/vladium/emma/rt/
AppRunner.java 22 import com.vladium.util.Files;
119 m_coveragePath = Files.pathToFiles (path, canonical);
137 m_sourcePath = Files.pathToFiles (path, true); // always canonicalize source path
    [all...]
  /external/llvm/tools/llvm-cov/
CodeCoverage.cpp 158 for (const auto &Files : LoadedSourceFiles)
159 if (sys::fs::equivalent(SourceFile, Files.first))
160 return *Files.second;
298 cl::Positional, cl::desc("<Source files>"), cl::ZeroOrMore);
322 cl::desc("Treat source files as equivalent to paths in the coverage data "
532 // Show files
536 // Get the source files from the function coverage mapping.
540 // Create an index out of the source files.
548 // In -output-dir mode, it's safe to use multiple threads to print files.
  /prebuilts/go/darwin-x86/src/debug/gosym/
symtab.go 107 // Use the keys of Table.Files to obtain a list of source files.
121 Files map[string]*Obj // nil for Go 1.2 and later binaries
352 t.Files = make(map[string]*Obj)
359 t.go12line.go12MapFiles(t.Files, obj)
404 t.Files[s.Name] = obj
518 obj, ok := t.Files[file]
588 * Object files
  /prebuilts/go/linux-x86/src/debug/gosym/
symtab.go 107 // Use the keys of Table.Files to obtain a list of source files.
121 Files map[string]*Obj // nil for Go 1.2 and later binaries
352 t.Files = make(map[string]*Obj)
359 t.go12line.go12MapFiles(t.Files, obj)
404 t.Files[s.Name] = obj
518 obj, ok := t.Files[file]
588 * Object files
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
BuildFileCreator.java 39 import com.google.common.io.Files;
72 * Creates build.gradle and settings.gradle files for a set of projects.
131 // determine files to create/change
132 List<IFile> files = new ArrayList<IFile>(); local
138 files.add(file);
153 // then the files won't be handled by the workspace.
161 // Locate the settings.gradle file and add it to the changed files list
165 // to add settings.gradle and wrapper files to the list of files to add.
168 files.add(iFile)
307 List<File> files = new ArrayList<File>(GRADLE_WRAPPER_FILES.length); local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
CommonXml.py 431 self.Files = []
450 self.Files.append([Filename, Executable])
457 for File in self.Files:
483 self.Files.append([Filename, Executable, OsType])
491 for File in self.Files:
577 for Item in self.Files:
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandler.java 51 import com.google.common.io.Files;
117 * and merging into existing files
156 // Various tags and attributes used in the template metadata files - template.xml,
222 * List of files to open after the wizard has been created (these are
244 /** The template loader which is responsible for finding (and sharing) template files */
254 * Should files that we merge contents into be backed up? If yes, will
321 // Add the changes in the order where merges are shown first, then text files,
322 // and finally other files (like jars and icons which don't have previews).
406 return Files.toString(new File(mRootPath,
418 return Files.toString(file, Charsets.UTF_8)
    [all...]
  /build/soong/cmd/zip2zip/
zip2zip.go 40 fmt.Fprintln(os.Stderr, "Files will be copied with their existing compression from the input zipfile to")
  /cts/hostsidetests/media/bitstreams/app/src/android/media/cts/bitstreams/app/
MediaBitstreamsDeviceSideTest.java 40 import java.nio.file.Files;
58 * should copy media files for CtsMediaStressTestCases.
233 List<String> frameMD5Sums = Files.readAllLines(
  /cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
MediaBitstreamsTest.java 39 import java.nio.file.Files;
77 description = "Whether to download the bitstreams files")
157 * Returns true if all necessary media files exist on the device, and false otherwise.
239 tmp = Files.createTempDirectory(null).toFile();
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
Trim.py 2 # Trim files preprocessed by compiler
154 # Find out the name of files injected by preprocessor from the lines
410 for CurrentDir, Dirs, Files in os.walk(Source):
416 for FileName in Files:
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 16 import com.vladium.util.Files;
261 final File fullOutFile = Files.newFile (outDirName, outFileName);
  /external/emma/core/java12/com/vladium/emma/report/txt/
ReportGenerator.java 21 import com.vladium.util.Files;
112 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);
163 row ("total executable files:" + m_separator + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT));
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 21 import com.vladium.util.Files;
105 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile);

Completed in 1054 milliseconds

1 2 3 4 5 6 7 8 91011>>