/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/ |
Trim.py | 2 # Trim files preprocessed by compiler
158 # Find out the name of files injected by preprocessor from the lines
441 for CurrentDir, Dirs, Files in os.walk(Source):
447 for FileName in Files:
|
/external/libunwind/doc/ |
libunwind-setjmp.tex | 63 \section{Files}
|
/external/llvm/tools/llvm-go/ |
llvm-go.go | 213 Files: []*os.File{os.Stdin, os.Stdout, os.Stderr},
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zHandler.cpp | 51 *numItems = _db.Files.Size();
305 const CFileItem &file = _db.Files[index];
548 const CFileItem &item = _db.Files[index];
|
/external/lzma/CPP/7zip/UI/Common/ |
OpenArchive.cpp | 1099 UInt64 Files;
1144 return Callback->SetCompleted(&Files, &value);
[all...] |
/external/python/cpython2/Lib/ |
plistlib.py | 1 r"""plistlib.py -- a tool to generate and parse MacOSX .plist files. 120 from Carbon.Files import fsRdPerm 135 from Carbon.Files import fsRdWrPerm
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/release/ |
build_llvm_package.bat | 18 set vsdevcmd=C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\VsDevCmd.bat
|
/external/syzkaller/vendor/golang.org/x/sys/unix/ |
types_darwin.go | 108 // Files
|
types_dragonfly.go | 101 // Files
|
types_netbsd.go | 103 // Files
|
types_openbsd.go | 102 // Files
|
types_solaris.go | 119 // Files
|
/external/tensorflow/tensorflow/core/profiler/g3doc/ |
command_line.md | 83 # Alternatively, user can pass separate files. 327 Reading Files...
|
/external/googletest/googletest/ |
README.md | 6 system where to find its headers and source files. The exact way to do it 81 several `.vcproj` files will be created. You can then build them using Visual 216 build Google Test the same way you build any Visual Studio project. Files that 218 /MD or the /MDd compiler option). Files without that suffix use static versions
|
/external/libvpx/libvpx/third_party/googletest/src/ |
README.md | 6 system where to find its headers and source files. The exact way to do it 81 several `.vcproj` files will be created. You can then build them using Visual 203 build Google Test the same way you build any Visual Studio project. Files that 205 /MD or the /MDd compiler option). Files without that suffix use static versions
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
DWARFYAML.h | 140 std::vector<File> Files;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
DWARFYAML.cpp | 163 IO.mapRequired("Files", LineTable.Files);
|
/external/testng/src/main/java/org/testng/reporters/ |
JqReporter.java | 40 all = Files.readFile(new File("/Users/cedric/java/misc/jquery/head"));
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
Monkey.java | 46 import java.nio.file.Files; 99 /** Monitor /data/tombstones and stop the monkey if new files appear. */ 119 * trace files 439 // The /data/anr directory might have multiple files, dump the most 440 // recent of those files. [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
String.py | 765 # The ASCII text files of type INF, DEC, INI are edited by developers,
961 # Search all files in FilePath to find the FileName with the largest index
965 Files = []
967 Files = os.listdir(FilePath)
972 for File in Files:
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
SevenZFile.java | 34 import java.nio.file.Files; 108 this(Files.newByteChannel(filename.toPath(), EnumSet.of(StandardOpenOption.READ)), 123 this(Files.newByteChannel(filename.toPath(), EnumSet.of(StandardOpenOption.READ)), 292 if (currentEntryIndex >= archive.files.length - 1) { 296 final SevenZArchiveEntry entry = archive.files[currentEntryIndex]; 316 return Arrays.asList(archive.files); 746 final SevenZArchiveEntry[] files = new SevenZArchiveEntry[(int)numFiles]; local 747 for (int i = 0; i < files.length; i++) { 748 files[i] = new SevenZArchiveEntry(); 761 isEmptyStream = readBits(header, files.length) [all...] |
/external/clang/lib/Frontend/ |
SerializedDiagnosticPrinter.cpp | 286 /// \brief The collection of files used. 287 llvm::DenseMap<const char *, unsigned> Files; 392 unsigned &entry = State->Files[FileName]; 397 entry = State->Files.size(); [all...] |
/external/llvm/tools/sancov/ |
sancov.cc | 621 // Read list of files and merges their coverage info. 821 std::set<std::string> files() const { function in class:__anon31959::SourceCoverageData 822 std::set<std::string> Files; 824 Files.insert(AI.FileName); 826 return Files; 902 std::set<std::string> Files = SCovData.files(); 904 // Covered Files. 905 OS << "<details open><summary>Touched Files</summary>\n"; 909 for (const auto &FileName : Files) { [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/ |
CodeCoverage.cpp | 101 /// Create a mapping from files in the Coverage data to local copies 105 /// Remove input source files which aren't mapped by \p Coverage. 134 /// A list of input source files. 138 /// mapping data to the input source files. 238 for (const auto &Files : LoadedSourceFiles) 239 if (sys::fs::equivalent(SourceFile, Files.first)) 240 return *Files.second; 417 // Convert input files from local paths to coverage data file paths. 435 // The user may have specified source files which aren't in the coverage 436 // mapping. Filter these files away [all...] |
/external/emma/core/java12/com/vladium/emma/report/html/ |
ReportGenerator.java | 27 import com.vladium.util.Files; 147 final File fullOutFile = Files.newFile (m_settings.getOutDir (), outFile); 223 row.newCell ().setText ("total executable files:", true); 254 cell1.setText ("total source files: " + item.getAggregate (IItem.TOTAL_SRCFILE_COUNT), true); 329 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true); 446 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true); 622 out = openOutFile (Files.newFile (m_settings.getOutDir (), outFile), m_settings.getOutEncoding (), true); [all...] |