OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
120
const ppapi::
DirEntry
& source = entries[i];
ppapi_messages.h
218
IPC_STRUCT_TRAITS_BEGIN(ppapi::
DirEntry
)
[
all
...]
/external/chromium_org/content/browser/renderer_host/pepper/
pepper_flash_file_message_filter.cc
237
ppapi::
DirEntry
entry = {
/external/chromium_org/chrome/browser/resources/file_manager/common/js/
util.js
117
* Iterates the entries contained by
dirEntry
, and invokes callback once for
120
* @param {DirectoryEntry}
dirEntry
The entry of the directory.
127
dirEntry
, callback, successCallback, errorCallback) {
128
var reader =
dirEntry
.createReader();
185
* @param {
DirEntry
}
dirEntry
The base directory.
189
* @param {function(!
DirEntry
)} successCallback The function to invoke for
190
* each
DirEntry
found. Also invoked once with null at the end of the
195
util.getDirectories = function(
dirEntry
, params, paths, successCallback,
210
dirEntry
.getDirectory
[
all
...]
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/
gallery.js
33
* {
DirEntry
} saveDirEntry Directory to save to.
Completed in 365 milliseconds