Searched defs:File (Results 1 - 25 of 138) sorted by relevance

123456

/external/chromium_org/gin/test/
H A Dfile.h12 class File { class in namespace:gin
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile.cc12 File::File() : init_(false), mixed_(false) {} function in class:disk_cache::File
14 File::File(bool mixed_mode) : init_(false), mixed_(mixed_mode) {} function in class:disk_cache::File
H A Dfile.h32 class NET_EXPORT_PRIVATE File : public base::RefCounted<File> { class in namespace:disk_cache
33 friend class base::RefCounted<File>;
35 File();
37 explicit File(bool mixed_mode);
42 explicit File(base::File file);
74 virtual ~File();
92 base::File base_file_; // Regular, asynchronous IO handle.
93 base::File sync_base_file
[all...]
H A Dfile_posix.cc37 File::File(base::File file) function in class:disk_cache::File
43 bool File::Init(const base::FilePath& name) {
47 int flags = base::File::FLAG_OPEN | base::File::FLAG_READ |
48 base::File::FLAG_WRITE;
53 bool File::IsValid() const {
57 bool File::Read(void* buffer, size_t buffer_len, size_t offset) {
68 bool File
[all...]
H A Dfile_ios.cc26 FileBackgroundIO(disk_cache::File* file, const void* buf, size_t buf_len,
37 disk_cache::File* file() {
54 disk_cache::File* file_;
70 // semantics of the File asynchronous operations, with the exception that the
72 void PostRead(disk_cache::File* file, void* buf, size_t buf_len,
74 void PostWrite(disk_cache::File* file, const void* buf, size_t buf_len,
111 void FileInFlightIO::PostRead(disk_cache::File *file, void* buf, size_t buf_len,
122 void FileInFlightIO::PostWrite(disk_cache::File* file, const void* buf,
169 File::File(bas function in class:disk_cache::File
[all...]
H A Dfile_win.cc17 MyOverlapped(disk_cache::File* file, size_t offset,
25 scoped_refptr<disk_cache::File> file_;
59 MyOverlapped::MyOverlapped(disk_cache::File* file, size_t offset,
72 File::File(base::File file) function in class:disk_cache::File
78 bool File::Init(const base::FilePath& name) {
86 base::File(CreateFile(name.value().c_str(), access, sharing, NULL,
97 base::File(CreateFile(name.value().c_str(), access, sharing, NULL,
106 bool File
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_file.py1 from clang.cindex import Index, File namespace
6 file = File.from_name(tu, "t.c")
9 assert repr(file) == "<File: t.c>"
H A Dtest_location.py2 from clang.cindex import File namespace
49 file = File.from_name(tu, 't.c')
85 file = File.from_name(tu, 't.c')
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dfile.h44 // Protocol buffer code only uses a couple static methods of File, and only
46 class File { class in namespace:google::protobuf
77 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(File);
/external/protobuf/src/google/protobuf/testing/
H A Dfile.h44 // Protocol buffer code only uses a couple static methods of File, and only
46 class File { class in namespace:google::protobuf
77 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(File);
/external/chromium_org/base/files/
H A Dfile.cc10 File::Info::Info()
16 File::Info::~Info() {
19 File::File() function in class:base::File
26 File::File(const FilePath& name, uint32 flags) function in class:base::File
34 File::File(PlatformFile platform_file) function in class:base::File
44 File::File(Erro function in class:base::File
50 File::File(RValue other) function in class:base::File
[all...]
/external/clang/include/clang/Lex/
H A DHeaderMap.h40 HeaderMap(const llvm::MemoryBuffer *File, bool BSwap) argument
41 : FileBuffer(File), NeedsBSwap(BSwap) {
/external/llvm/tools/obj2yaml/
H A Dobj2yaml.cpp31 static std::error_code dumpInput(StringRef File) { argument
32 if (File != "-" && !sys::fs::exists(File))
35 ErrorOr<Binary *> BinaryOrErr = createBinary(File);
/external/llvm/unittests/Transforms/DebugIR/
H A DDebugIR.cpp49 void insertCUDescriptor(Module *M, StringRef File, StringRef Dir, argument
52 B.createCompileUnit(dwarf::DW_LANG_C99, File, Dir, Producer, false, "", 0);
101 string File = "empty_module.ll"; local
102 string Path(getPath(Dir, File));
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb6 File.join( self, subpath.to_s )
177 class File class
184 # File.relative_path('rel/path') # => './rel/path'
185 # File.relative_path('/some/abs/path', '/some') # => './abs/path'
186 # File.relative_path('/some/file.txt', '/some/abs/path') # => '../../file.txt'
189 File.expand_path( path.to_s ).split( File::Separator ).tap do |list|
190 if list.empty? then list << String.new( File::Separator )
191 elsif list.first.empty? then list.first.replace( File::Separator )
205 return relative_list.join( File
[all...]
/external/clang/include/clang/Serialization/
H A DGlobalModuleIndex.h73 ModuleInfo() : File(), Size(), ModTime() { }
76 ModuleFile *File; member in struct:clang::GlobalModuleIndex::ModuleInfo
163 void getModuleDependencies(ModuleFile *File,
184 bool loadedModuleFile(ModuleFile *File);
/external/clang/lib/Frontend/
H A DDependencyGraph.cpp51 CharSourceRange FilenameRange, const FileEntry *File,
72 const FileEntry *File,
76 if (!File)
85 Dependencies[FromFile].push_back(File);
87 AllFiles.insert(File);
67 InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, StringRef FileName, bool IsAngled, CharSourceRange FilenameRange, const FileEntry *File, StringRef SearchPath, StringRef RelativePath, const Module *Imported) argument
/external/clang/unittests/AST/
H A DCommentLexer.cpp64 FileID File = SourceMgr.createFileID(Buf); local
65 SourceLocation Begin = SourceMgr.getLocForStartOfFile(File);
/external/lldb/include/lldb/Core/
H A DSourceManager.h30 class File class in class:lldb_private::SourceManager
32 friend bool operator== (const SourceManager::File &lhs, const SourceManager::File &rhs);
35 File (const FileSpec &file_spec, Target *target);
36 ~File();
89 typedef std::shared_ptr<File> FileSP;
193 bool operator== (const SourceManager::File &lhs, const SourceManager::File &rhs);
/external/llvm/lib/Transforms/Utils/
H A DAddDiscriminators.cpp199 DIFile File = Builder.createFile(Filename, Scope.getDirectory()); local
202 Scope, File, LineNumber, ColumnNumber, Discriminator);
/external/chromium_org/extensions/common/
H A Duser_script.cc70 UserScript::File::File(const base::FilePath& extension_root, function in class:extensions::UserScript::File
78 UserScript::File::File() {} function in class:extensions::UserScript::File
80 UserScript::File::~File() {}
125 void UserScript::File::Pickle(::Pickle* pickle) const {
131 void UserScript::File::Unpickle(const ::Pickle& pickle, PickleIterator* iter) {
248 File file;
/external/lldb/source/Host/common/
H A DFile.cpp11 #include "lldb/Host/File.h"
30 if (options & File::eOpenOptionAppend)
32 if (options & File::eOpenOptionRead)
34 if (options & File::eOpenOptionCanCreateNewOnly)
39 else if (options & File::eOpenOptionWrite)
41 if (options & File::eOpenOptionCanCreateNewOnly)
47 else if (options & File::eOpenOptionRead && options & File::eOpenOptionWrite)
49 if (options & File::eOpenOptionCanCreate)
51 if (options & File
73 File::File(const char *path, uint32_t options, uint32_t permissions) : function in class:File
82 File::File (const File &rhs) : function in class:File
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DCodeGeneratorInstrumentation.py197 model.append(File(match.group(1), match.group(2)))
202 class File: class in inherits:
/external/chromium_org/third_party/WebKit/Source/platform/blob/
H A DBlobData.h86 // Constructor for File type (complete file).
88 : type(File)
96 // Constructor for File type (partial file).
98 : type(File)
131 File, enumerator in enum:blink::BlobDataItem::__anon11275
137 String path; // For File type.
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.h54 * {RGB,Alpha}.Src[RC_PAIR_PRESUB_SRC].File will be set to RC_FILE_PRESUB.
60 unsigned int File:4; member in struct:rc_pair_instruction_source

Completed in 1905 milliseconds

123456