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

  /external/chromium_org/ppapi/shared_impl/
dir_contents.h 14 struct DirEntry {
19 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_org/ppapi/proxy/
flash_file_resource.cc 120 const ppapi::DirEntry& source = entries[i];
ppapi_messages.h 280 IPC_STRUCT_TRAITS_BEGIN(ppapi::DirEntry)
    [all...]
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.cc 225 ppapi::DirEntry entry = {info.GetName(), info.IsDirectory()};
  /external/chromium_org/ui/file_manager/file_manager/common/js/
util.js 128 * Iterates the entries contained by dirEntry, and invokes callback once for
131 * @param {DirectoryEntry} dirEntry The entry of the directory.
138 dirEntry, callback, successCallback, errorCallback) {
139 var reader = dirEntry.createReader();
196 * @param {DirEntry} dirEntry The base directory.
200 * @param {function(!DirEntry)} successCallback The function to invoke for
201 * each DirEntry found. Also invoked once with null at the end of the
206 util.getDirectories = function(dirEntry, params, paths, successCallback,
221 dirEntry.getDirectory
    [all...]

Completed in 3463 milliseconds