/external/chromium_org/chrome/renderer/resources/extensions/ |
D | file_system_custom_bindings.js | 22 functionName, function(fileEntry, callback) { argument 23 var fileSystemName = fileEntry.filesystem.name; 24 var relativePath = $String.slice(fileEntry.fullPath, 1); 36 apiFunctions.setHandleRequest('retainEntry', function(fileEntry) { argument 37 var id = entryIdManager.getEntryId(fileEntry); 40 var fileSystemName = fileEntry.filesystem.name; 41 var relativePath = $String.slice(fileEntry.fullPath, 1);
|
D | image_writer_private_custom_bindings.js | 13 'writeFromFile', function(device, fileEntry, options, callback) { argument 14 var fileSystemName = fileEntry.filesystem.name; 15 var relativePath = $String.slice(fileEntry.fullPath, 1);
|
D | sync_file_system_custom_bindings.js | 71 result.fileEntry = fileSystemNatives.GetFileEntry( 91 var fileEntry = fileSystemNatives.GetFileEntry( 100 fileInfo.fileEntry = fileEntry;
|
D | file_entry_binding_util.js | 63 var getEntryCallback = function(fileEntry) { argument 66 entryIdManager.registerEntry(id, fileEntry); 67 entries.push(fileEntry);
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugLine.cpp | 245 FileNameEntry fileEntry; in DumpStatementOpcodes() local 246 fileEntry.name = debug_line_data.GetCStr(&offset); in DumpStatementOpcodes() 247 fileEntry.dir_idx = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes() 248 fileEntry.mod_time = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes() 249 fileEntry.length = debug_line_data.GetULEB128(&offset); in DumpStatementOpcodes() 252 fileEntry.name.c_str(), in DumpStatementOpcodes() 253 fileEntry.dir_idx, in DumpStatementOpcodes() 254 fileEntry.mod_time, in DumpStatementOpcodes() 255 fileEntry.length); in DumpStatementOpcodes() 256 prologue.file_names.push_back(fileEntry); in DumpStatementOpcodes() [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
D | DOMFileSystemSync.cpp | 152 PassRefPtrWillBeRawPtr<File> DOMFileSystemSync::createFile(const FileEntrySync* fileEntry, Exceptio… in createFile() argument 154 KURL fileSystemURL = createFileSystemURL(fileEntry); in createFile() 156 …shotFileAndReadMetadata(fileSystemURL, CreateFileHelper::create(result, fileEntry->name(), fileSys… in createFile() 158 … exceptionState.throwDOMException(result->m_code, "Could not create '" + fileEntry->name() + "'."); in createFile() 207 FileWriterSync* DOMFileSystemSync::createWriter(const FileEntrySync* fileEntry, ExceptionState& exc… in createWriter() argument 209 ASSERT(fileEntry); in createWriter() 219 fileSystem()->createFileWriter(createFileSystemURL(fileEntry), fileWriter, callbacks.release()); in createWriter()
|
D | DOMFileSystem.cpp | 150 void DOMFileSystem::createWriter(const FileEntry* fileEntry, FileWriterCallback* successCallback, E… in createWriter() argument 152 ASSERT(fileEntry); in createWriter() 162 fileSystem()->createFileWriter(createFileSystemURL(fileEntry), fileWriter, callbacks.release()); in createWriter() 165 void DOMFileSystem::createFile(const FileEntry* fileEntry, FileCallback* successCallback, ErrorCall… in createFile() argument 167 KURL fileSystemURL = createFileSystemURL(fileEntry); in createFile() 173 …otFileAndReadMetadata(fileSystemURL, SnapshotFileCallback::create(this, fileEntry->name(), fileSys… in createFile()
|
/external/llvm/lib/DebugInfo/ |
D | DWARFDebugLine.cpp | 59 const FileNameEntry& fileEntry = FileNames[i]; in dump() local 60 OS << format("file_names[%3u] %4" PRIu64 " ", i+1, fileEntry.DirIdx) in dump() 62 fileEntry.ModTime, fileEntry.Length) in dump() 63 << fileEntry.Name << '\n'; in dump() 105 FileNameEntry fileEntry; in parse() local 106 fileEntry.Name = name; in parse() 107 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr); in parse() 108 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr); in parse() 109 fileEntry.Length = debug_line_data.getULEB128(offset_ptr); in parse() 110 FileNames.push_back(fileEntry); in parse() [all …]
|
/external/chromium_org/content/test/data/fileapi/ |
D | quota_test.js | 6 fs.root.getFile('fd', {create: false, exclusive: false}, function(fileEntry) { argument 7 fileEntry.createWriter(function(fileWriter) { 25 fs.root.getFile('fd', {create: true, exclusive: false}, function(fileEntry) { argument 26 fileEntry.createWriter(function(fileWriter) {
|
/external/chromium_org/tools/json_schema_compiler/dart_test/ |
D | tags.dart | 56 TagsPlainDict({int inline_doc, String nodoc, double nocompile, fileEntry instance_of_tag}) { 96 /// This object has the property [instanceOf=fileEntry]. 97 fileEntry get instance_of_tag => JS('fileEntry', '#.instance_of_tag', this._jsObject); 99 void set instance_of_tag(fileEntry instance_of_tag) {
|
D | tags.idl | 30 // This object has the property [instanceOf=fileEntry]. 31 [instanceOf=fileEntry] object instance_of_tag;
|
/external/chromium_org/remoting/webapp/ |
D | video_frame_recorder.js | 123 remoting.VideoFrameRecorder.prototype.onFileChosen_ = function(fileEntry) { argument 124 if (!fileEntry) { 128 chrome.fileSystem.getDisplayPath(fileEntry, function(path) { 131 fileEntry.createWriter(this.onFileWriter_.bind(this));
|
/external/chromium_org/ui/file_manager/gallery/js/ |
D | gallery_item.js | 264 var doSave = function(newFile, fileEntry) { argument 265 fileEntry.createWriter(function(fileWriter) { 267 fileWriter.onwriteend = onSuccess.bind(null, fileEntry); 287 function(fileEntry) { argument 288 var locationInfo = volumeManager.getLocationInfo(fileEntry); 294 doSave(newFile, fileEntry, locationInfo);
|
/external/chromium_org/extensions/renderer/resources/ |
D | app_runtime_custom_bindings.js | 60 fs.root.getFile(item.baseName, {}, function(fileEntry) { argument 61 entryIdManager.registerEntry(item.entryId, fileEntry); 62 itemLoaded(null, { entry: fileEntry, type: item.mimeType });
|
/external/chromium_org/chrome/common/extensions/api/ |
D | sync_file_system.idl | 62 // <code>fileEntry</code> for the target file whose status has changed. 65 // <code>fileEntry</code> information will still be available 67 [instanceOf=Entry] object fileEntry; 89 [instanceOf=Entry] object fileEntry; 176 // Returns the $(ref:FileStatus) for the given <code>fileEntry</code>. 181 static void getFileStatus([instanceOf=Entry] object fileEntry, 184 // Returns each $(ref:FileStatus) for the given <code>fileEntry</code> array.
|
D | image_writer_private.idl | 92 // |fileEntry|: The FileEntry object of the image to be burned. 96 [instanceOf=FileEntry] object fileEntry,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/ |
D | TempFile.js | 66 function didCreateFile(fileEntry) argument 68 this._fileEntry = fileEntry; 69 fileEntry.createWriter(didCreateWriter.bind(this), errorHandler);
|
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/ |
D | wallpaper_manager.js | 512 function(fileEntry) { argument 513 fileEntry.file(function(file) { 808 dirEntry.getFile(fileName, {create: true}, function(fileEntry) { argument 809 fileEntry.createWriter(function(fileWriter) { 838 dirEntry.getFile(fileName, {create: true}, function(fileEntry) { argument 839 fileEntry.createWriter(function(fileWriter) { 874 dirEntry.getFile(fileName, {create: false}, function(fileEntry) { argument 875 fileEntry.remove(function() {
|
D | wallpaper_images_grid.js | 82 var setURL = function(fileEntry) { argument 83 imageEl.src = fileEntry.toURL();
|
/external/chromium_org/remoting/webapp/js_proto/ |
D | chrome_proto.js | 254 getDisplayPath: function(fileEntry, callback) {} argument
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 6749 FileEntry *fileEntry = static_cast<FileEntry *>(file); in clang_getSkippedRanges() local 6750 FileID wantedFileID = sm.translateFile(fileEntry); in clang_getSkippedRanges()
|