/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/gl-matrix/ |
version.rb | 23 MAJOR, MINOR, PATCH, REL = *File.read(base_path.join 'VERSION').split(".")
|
/external/chromium_org/base/files/ |
memory_mapped_file.cc | 3 // found in the LICENSE file. 38 file_.Initialize(file_name, File::FLAG_OPEN | File::FLAG_READ); 53 bool MemoryMappedFile::Initialize(File file) { 54 return Initialize(file.Pass(), Region::kWholeFile); 57 bool MemoryMappedFile::Initialize(File file, const Region& region) { 61 file_ = file.Pass();
|
/external/chromium_org/chrome/browser/local_discovery/storage/ |
privet_filesystem_async_util.cc | 3 // found in the LICENSE file. 31 callback.Run(base::File(base::File::FILE_ERROR_INVALID_OPERATION), 40 callback.Run(base::File::FILE_ERROR_INVALID_OPERATION, false); 50 callback.Run(base::File::FILE_ERROR_INVALID_OPERATION); 60 base::File::Info file_info; 63 callback.Run(base::File::FILE_OK, file_info); 97 callback.Run(base::File::FILE_ERROR_INVALID_OPERATION); 106 callback.Run(base::File::FILE_ERROR_INVALID_OPERATION); 117 callback.Run(base::File::FILE_ERROR_INVALID_OPERATION) [all...] |
privet_filesystem_attribute_cache_unittest.cc | 3 // found in the LICENSE file. 20 " { \"name\": \"baz.txt\", \"type\": \"file\", \"size\": 12345 }" 40 const base::File::Info* info_foo = 45 const base::File::Info* info_bar = cache_.GetFileInfo( 50 const base::File::Info* info_baz = cache_.GetFileInfo( 56 const base::File::Info* info_notfound = cache_.GetFileInfo(
|
/external/chromium_org/chrome/browser/media_galleries/fileapi/ |
safe_audio_video_checker.cc | 3 // found in the LICENSE file. 20 base::File file, 23 file_(file.Pass()), 35 callback_.Run(base::File::FILE_ERROR_SECURITY); 69 callback_.Run(valid ? base::File::FILE_OK : 70 base::File::FILE_ERROR_SECURITY);
|
/external/chromium_org/chrome/browser/sessions/ |
session_backend.h | 3 // found in the LICENSE file. 17 class File; 24 // . The current file, which is the file commands passed to AppendCommands 26 // . The last file. When created the current file is moved to the last 27 // file. 29 // Each file contains an arbitrary set of commands supplied from 38 // Initial size of the buffer used in reading the file. This is exposed 44 // the file thread [all...] |
/external/chromium_org/chrome/renderer/spellchecker/ |
cocoa_spelling_engine_mac.h | 3 // found in the LICENSE file. 13 virtual void Init(base::File bdict_file) OVERRIDE;
|
spelling_engine.h | 3 // found in the LICENSE file. 11 #include "base/files/file.h" 24 virtual void Init(base::File bdict_file) = 0;
|
/external/chromium_org/content/browser/loader/ |
temporary_file_stream.h | 3 // found in the LICENSE file. 9 #include "base/files/file.h" 23 typedef base::Callback<void(base::File::Error, 28 // Creates a temporary file and asynchronously calls |callback| with a 29 // net::FileStream and webkit_blob::ShareableFileReference. The file is deleted 32 // stays in scope until net::FileStream has finished closing the file. On error,
|
/external/chromium_org/content/public/browser/ |
download_save_info.h | 3 // found in the LICENSE file. 8 #include "base/files/file.h" 14 // Holds the information about how to save a download file. 15 // In the case of download continuation, |file_path| is set to the current file 31 // If valid, contains the source data stream for the file contents. 32 base::File file; member in struct:content::DownloadSaveInfo 34 // The file offset at which to start the download. May be 0.
|
/external/chromium_org/content/renderer/ |
mhtml_generator.h | 3 // found in the LICENSE file. 8 #include "base/files/file.h" 31 base::File file_;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
do-file-rename | 29 # Script to do file renaming. 32 use File::Find; 53 my $file = $_; 55 if ($file eq "icu") { 56 $File::Find::prune = 1; 60 if ($file =~ /^\../) { 61 $File::Find::prune = 1; 65 return if $file =~ /^ChangeLog/; 66 return if -d $file; 68 push @paths, $File::Find::name [all...] |
/external/clang/include/clang/Serialization/ |
GlobalModuleIndex.h | 5 // This file is distributed under the University of Illinois Open Source 10 // This file defines the GlobalModuleIndex class, which manages a global index 60 /// \brief Buffer containing the index file, which is lazily accessed so long 71 /// \brief Information about a given module file. 73 ModuleInfo() : File(), Size(), ModTime() { } 75 /// \brief The module file, once it has been resolved. 76 ModuleFile *File; 78 /// \brief The module file name. 81 /// \brief Size of the module file at the time the global index was built. 84 /// \brief Modification time of the module file at the time the globa [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 24 * File I/O utilities. 35 * Reads the named file, translating {@link IOException} to a 38 * @param fileName {@code non-null;} name of the file to read 39 * @return {@code non-null;} contents of the file 42 File file = new File(fileName); local 43 return readFile(file); [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/model/file_descriptor/ |
FileDescriptorFileLoader.java | 12 import java.io.File; 15 * A {@link ModelLoader} For translating {@link File} models into {@link ParcelFileDescriptor} resources. 17 public class FileDescriptorFileLoader extends FileLoader<ParcelFileDescriptor> implements FileDescriptorModelLoader<File> { 19 public static class Factory implements ModelLoaderFactory<File, ParcelFileDescriptor> { 21 public ModelLoader<File, ParcelFileDescriptor> build(Context context, GenericLoaderFactory factories) {
|
FileDescriptorModelLoader.java | 6 import java.io.File; 9 * A base class for {@link ModelLoader}s that translate models into {@link File}s. 11 * @param <T> The type of the model that will be translated into an {@link File}.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/model/stream/ |
StreamFileLoader.java | 11 import java.io.File; 15 * A {@link ModelLoader} For translating {@link File} models for local uris into {@link InputStream} resources. 17 public class StreamFileLoader extends FileLoader<InputStream> implements StreamModelLoader<File> { 19 public static class Factory implements ModelLoaderFactory<File, InputStream> { 21 public ModelLoader<File, InputStream> build(Context context, GenericLoaderFactory factories) {
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
StandaloneJarProcessor.java | 5 * you may not use this file except in compliance with the License. 28 public static void run(File from, File to, JarProcessor proc) throws IOException { 32 final File tmpTo = File.createTempFile("jarjar", ".jar");
|
/external/jsilver/src/org/clearsilver/ |
CSUtil.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 74 * Given an ordered list of directories to look in, locate the specified file. 75 * Returns <code>null</code> if file not found. 77 * @param filename the name of the file. 78 * @return a File object corresponding to the file. <code>null</code> if 79 * file not found. 81 public static File locateFile(List<String> loadpaths, String filename) { 89 File file = new File(path, filename) local [all...] |
/external/jsilver/src/org/clearsilver/jni/ |
JNI.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 45 new File(path, platformLibraryName).getAbsolutePath()); 72 Pattern.quote(File.pathSeparator)); 95 System.load(new File(path, platformLibraryName).getAbsolutePath());
|
/external/llvm/tools/obj2yaml/ |
obj2yaml.cpp | 5 // This file is distributed under the University of Illinois Open Source 31 static std::error_code dumpInput(StringRef File) { 32 if (File != "-" && !sys::fs::exists(File)) 35 ErrorOr<Binary *> BinaryOrErr = createBinary(File); 47 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"),
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
FlatPackageWriterImpl.java | 5 * you may not use this file except in compliance with the License. 28 import java.io.File; 40 private File outputDirectory; 65 public void setOutputDirectory(File outputDirectory) { 97 File muxedFile = new File(outputDirectory, "debug_1_muxed.mp4"); 108 File muxedFile = new File(outputDirectory, "debug_2_timescale.mp4"); 115 File allQualities = new File(outputDirectory, "debug_3_fragmented.mp4") [all...] |
/external/proguard/src/proguard/ |
FileWordReader.java | 28 * A <code>WordReader</code> that returns words from a file or a URL. 35 * Creates a new FileWordReader for the given file. 37 public FileWordReader(File file) throws IOException 39 super(new LineNumberReader(new BufferedReader(new FileReader(file))), 40 "file '" + file.getPath() + "'", 41 file.getParentFile() 52 "file '" + url.toString() + "'",
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowAssetManager.java | 8 import java.io.File; 29 File file = new File(resourceLoader.getAssetsBase(), path); local 30 if (file.isDirectory()) { 31 return file.list(); 38 return new FileInputStream(new File(resourceLoader.getAssetsBase(), fileName));
|
/libcore/dex/src/main/java/com/android/dex/util/ |
FileUtils.java | 5 * you may not use this file except in compliance with the License. 19 import java.io.File; 24 * File I/O utilities. 31 * Reads the named file, translating {@link IOException} to a 34 * @param fileName {@code non-null;} name of the file to read 35 * @return {@code non-null;} contents of the file 38 File file = new File(fileName); local 39 return readFile(file); [all...] |