/external/nanopb-c/extra/ |
nanopb.mk | 2 # .pb.c and .pb.h files out of .proto, as well the path to nanopb core. 7 # Files for the nanopb core
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
Benchmark.java | 40 import com.google.common.io.Files; 47 String html = Files.toString(new File(args[0]), Charsets.UTF_8);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
CustomInlineMethodResolver.java | 34 import com.google.common.io.Files; 85 this(classPath, Files.toString(inlineTable, Charset.forName("UTF-8")));
|
/libcore/ojluni/src/main/java/java/nio/file/ |
TempFileHelper.java | 41 * Helper class to support creation of temporary files and directories with 136 return Files.createDirectory(f, attrs); 138 return Files.createFile(f, attrs);
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
FileUtil.java | 28 import com.google.common.io.Files; 96 * Move all files and folders under a directory into the target. 113 Files.move(file, fileTarget); 115 LogUtil.e(LogUtil.BUGLE_TAG, "Failed to move files", e);
|
/prebuilts/go/darwin-x86/src/os/ |
pipe_linux.go | 9 // Pipe returns a connected pair of Files; reads from r return bytes written to w. 10 // It returns the files and an error, if any.
|
/prebuilts/go/linux-x86/src/os/ |
pipe_linux.go | 9 // Pipe returns a connected pair of Files; reads from r return bytes written to w. 10 // It returns the files and an error, if any.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
CreateFileChange.java | 23 import com.google.common.io.Files; 83 InputSupplier<FileInputStream> supplier = Files.newInputStreamSupplier(mSource);
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
ZipUtil2Test.java | 28 import java.nio.file.Files; 42 * Cleans up temp test files 58 Set<PosixFilePermission> actual = Files.getPosixFilePermissions(file.toPath()); 95 // now loop over files to verify
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
Linker.h | 33 /// The Linker can link Modules from memory, bitcode files, or bitcode 45 /// This type is used to pass the linkage items (libraries and files) to 48 /// bool should be true for libraries and false for files, signifying 167 const ItemList& Items, ///< Set of libraries/files to link in 168 ItemList& NativeItems ///< Output list of native files/libs 171 /// This function links the bitcode \p Files into the composite module. 173 /// Files are all completely linked into \p HeadModule regardless of 178 /// @brief Link in multiple files. 180 const std::vector<sys::Path> & Files ///< Files to link i [all...] |
/external/testng/src/main/java/org/testng/reporters/ |
Files.java | 18 public class Files {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
ExportGradleTest.java | 32 import com.google.common.io.Files; 79 String contents = Files.toString(buildfile, Charsets.UTF_8); 156 String contents = Files.toString(buildfile, Charsets.UTF_8); 223 String contents = Files.toString(buildfile, Charsets.UTF_8);
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaScannerTest.java | 95 String files[] = new File(mFileDir).list(); local 96 if (files != null) { 97 for (String f: files) { 143 values.put(MediaStore.Files.FileColumns.FORMAT, MtpConstants.FORMAT_UNDEFINED); 144 Uri nomediauri = res.insert(MediaStore.Files.getContentUri("external"), values); 156 // Give the 2nd stage scan that makes the unhidden files visible again 172 res.delete(MediaStore.Files.getContentUri("external"), 173 MediaStore.Files.FileColumns.DATA + "=?", 175 res.delete(MediaStore.Files.getContentUri("external"), 176 MediaStore.Files.FileColumns.DATA + "=?" [all...] |
/external/emma/core/java12/com/vladium/emma/report/ |
ReportProcessor.java | 15 import com.vladium.util.Files; 58 m_dataPath = Files.pathToFiles (path, true); 69 m_sourcePath = Files.pathToFiles (path, true); // always canonicalize source path 156 log.info ("processing input files ..."); 167 // merge all data files: 211 log.warning ("nothing to do: no metadata found in any of the data files"); 218 log.warning ("nothing to do: no runtime coverage data found in any of the data files"); 225 log.warning ("no collected coverage data found in any of the data files [all reports will be empty]");
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
BucketHelper.java | 7 import android.provider.MediaStore.Files; 8 import android.provider.MediaStore.Files.FileColumns; 68 // Before HoneyComb there is no Files table. Thus, we need to query the 202 return Files.getContentUri(EXTERNAL_MEDIA);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
__init__.py | 13 import Files 25 'fndr' : Files, 39 'fndr' : ('Finder.Files', 'Files'), 50 from Files import *
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/ |
__init__.py | 13 import Files 25 'fndr' : Files, 39 'fndr' : ('Finder.Files', 'Files'), 50 from Files import *
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
RenderPreviewList.java | 28 import com.google.common.io.Files; 112 Files.write(xml, file, Charsets.UTF_8); 119 String xml = Files.toString(file, Charsets.UTF_8);
|
/libcore/luni/src/main/java/libcore/util/ |
TimeZoneFinder.java | 31 import java.nio.file.Files; 559 if (!Files.exists(file)) { 562 if (!Files.isRegularFile(file) && Files.isReadable(file)) { 565 return () -> Files.newBufferedReader(file, charSet);
|
/prebuilts/go/darwin-x86/src/go/ast/ |
filter.go | 33 // only exported nodes remain. The pkg.Files list is not changed, so that 249 // the declaration is removed from the AST. The pkg.Files list is not 262 for _, src := range pkg.Files { 271 // Merging of package files 313 // files belonging to a package. The mode flags control merging behavior. 317 // all package files. Also, compute sorted list of filenames, so that 322 filenames := make([]string, len(pkg.Files)) 324 for filename, f := range pkg.Files { 335 // Collect package comments from all package files into a single 345 f := pkg.Files[filename [all...] |
/prebuilts/go/linux-x86/src/go/ast/ |
filter.go | 33 // only exported nodes remain. The pkg.Files list is not changed, so that 249 // the declaration is removed from the AST. The pkg.Files list is not 262 for _, src := range pkg.Files { 271 // Merging of package files 313 // files belonging to a package. The mode flags control merging behavior. 317 // all package files. Also, compute sorted list of filenames, so that 322 filenames := make([]string, len(pkg.Files)) 324 for filename, f := range pkg.Files { 335 // Collect package comments from all package files into a single 345 f := pkg.Files[filename [all...] |
/external/llvm/unittests/ProfileData/ |
CoverageMappingTest.cpp | 85 // Maps the global file index from CoverageMappingTest.Files 101 StringMap<unsigned> Files; 115 auto R = Files.find(Name); 116 if (R != Files.end()) 118 unsigned Index = Files.size(); 119 Files.emplace_second(Name, Index); 169 SmallVector<StringRef, 8> Filenames(Files.size()); 170 for (const auto &E : Files)
|
/external/curl/packages/vms/ |
compare_curl_source.com | 5 $! This procedure compares the files in two directories and reports the 16 $! me because VMS Backup can create a saveset of files from a 19 $! First the files in the original source directory which is assumed to be 22 $! Then the files are are only in the copy directory are listed. 24 $! The result will five diagnostics about of files: 25 $! 1. Files that are not generation 1. 26 $! 2. Files missing in the copy directory. 27 $! 3. Files in the copy directory not in the source directory. 28 $! 4. Files different from the source directory. 29 $! 5. Files that VMS DIFF can not process [all...] |
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 36 import com.vladium.util.Files; 79 final File fullArchiveFile = Files.newFile (parentDir, archive); 126 m_origArchiveFile = Files.newFile (parentDir, archive); 129 final String archiveName = Files.getFileName (archive) + IAppConstants.APP_NAME_LC; 134 m_tempArchiveFile = Files.createTempFile (parentDir, archiveName, archiveExt); 172 // files represent the same class; in the future I might use a more 369 if (! Files.renameFile (m_tempArchiveFile, m_origArchiveFile, true)) // overwrite the original archive 426 // files represent the same class; in the future I might use a more 435 final File inFile = Files.newFile (pathDir, file.getPath ()); 539 // copy excluded .class files in full copy mode [all...] |
/prebuilts/go/darwin-x86/src/cmd/cover/ |
html.go | 49 d.Files = append(d.Files, &templateFile{ 165 Files []*templateFile 218 <select id="files"> 219 {{range $i, $f := .Files}} 245 {{range $i, $f := .Files}} 252 var files = document.getElementById('files'); 254 files.addEventListener('change', onChange, false); 261 files.value = part [all...] |