HomeSort by relevance Sort by last modified time
    Searched refs:DirEntry (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/ppapi/shared_impl/
dir_contents.h 15 struct DirEntry {
20 typedef std::vector<DirEntry> DirContents;
  /external/jhead/
makernote.c 41 unsigned char * DirEntry;
42 DirEntry = DIR_ENTRY_ADDR(DirStart, de);
44 Tag = Get16u(DirEntry);
45 Format = Get16u(DirEntry+2);
46 Components = Get32u(DirEntry+4);
63 OffsetVal = Get32u(DirEntry+8);
77 ValuePtr = DirEntry+8;
gpsinfo.c 147 unsigned char * DirEntry;
148 DirEntry = DIR_ENTRY_ADDR(DirStart, de);
150 if (DirEntry+12 > OffsetBase+ExifLength){
155 Tag = Get16u(DirEntry);
156 Format = Get16u(DirEntry+2);
157 Components = Get32u(DirEntry+4);
175 OffsetVal = Get32u(DirEntry+8);
185 ValuePtr = DirEntry+8;
exif.c 593 unsigned char * DirEntry;
594 DirEntry = DIR_ENTRY_ADDR(DirStart, de);
596 Tag = Get16u(DirEntry);
597 Format = Get16u(DirEntry+2);
598 Components = Get32u(DirEntry+4);
615 OffsetVal = Get32u(DirEntry+8);
633 ValuePtr = DirEntry+8;
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_file.h 43 struct DirEntry {
49 std::vector<DirEntry>* dir_contents);
flash_file.cc 27 static FileModuleLocal::DirEntry ConvertDirEntry(const PP_DirEntry_Dev& entry) {
28 FileModuleLocal::DirEntry rv = { entry.name, PP_ToBool(entry.is_dir) };
102 std::vector<DirEntry>* dir_contents) {
  /external/chromium_org/ppapi/tests/
test_flash_file.cc 82 bool DirEntryEqual(FileModuleLocal::DirEntry i,
83 FileModuleLocal::DirEntry j) {
87 bool DirEntryLessThan(FileModuleLocal::DirEntry i,
88 FileModuleLocal::DirEntry j) {
269 std::vector<FileModuleLocal::DirEntry> result;
290 FileModuleLocal::DirEntry expected[] = { { "..", true }, { filename, false },
329 std::vector<FileModuleLocal::DirEntry> contents;
  /external/chromium/chrome/browser/resources/file_manager/js/
util.js 61 * Utility function to invoke callback once for each entry in dirEntry.
63 * @param {DirectoryEntry} dirEntry The directory entry to enumerate.
65 * dirEntry.
67 forEachDirEntry: function(dirEntry, callback) {
80 reader = dirEntry.createReader();
94 * @param {DirEntry} dirEntry The base directory.
98 * @param {function(!DirEntry)} successCallback The function to invoke for
99 * each DirEntry found. Also invoked once with null at the end of the
104 getDirectories: function(dirEntry, params, paths, successCallback
    [all...]
  /external/chromium_org/ppapi/proxy/
flash_file_resource.cc 119 const ppapi::DirEntry& source = entries[i];
ppapi_messages.h 200 IPC_STRUCT_TRAITS_BEGIN(ppapi::DirEntry)
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.cc 244 ppapi::DirEntry entry = {
  /external/chromium_org/chrome/browser/resources/file_manager/js/
util.js 196 * Utility function to invoke callback once for each entry in dirEntry.
200 * @param {DirectoryEntry} dirEntry The directory entry to enumerate.
202 * dirEntry.
204 util.forEachDirEntry = function(dirEntry, callback) {
208 console.error('Failed to read dir entries at ' + dirEntry.fullPath);
221 reader = dirEntry.createReader();
262 * @param {DirEntry} dirEntry The base directory.
266 * @param {function(!DirEntry)} successCallback The function to invoke for
267 * each DirEntry found. Also invoked once with null at the end of th
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/photo/
gallery.js 45 * {DirEntry} saveDirEntry Directory to save to.
111 var scanDirectory = function(dirEntry) {
112 currentDir = dirEntry;

Completed in 292 milliseconds