Searched refs:file_type (Results 1 - 25 of 120) sorted by relevance

12345

/external/chromium_org/ppapi/api/
H A Dpp_directory_entry.idl13 PP_FileType file_type;
/external/sepolicy/
H A Dtee.te5 type tee_exec, exec_type, file_type;
7 type tee_data_file, file_type, data_file_type;
H A Dattributes16 attribute file_type;
/external/chromium_org/chrome/browser/sync_file_system/
H A Dsync_file_metadata.cc12 : file_type(sync_file_system::SYNC_FILE_TYPE_UNKNOWN),
17 SyncFileType file_type,
20 : file_type(file_type),
28 return file_type == that.file_type &&
16 SyncFileMetadata( SyncFileType file_type, int64 size, const base::Time& last_modified) argument
H A Dsync_file_metadata.h18 SyncFileMetadata(SyncFileType file_type,
23 SyncFileType file_type; member in class:sync_file_system::SyncFileMetadata
H A Dfile_change.h25 FileChange(ChangeType change, SyncFileType file_type);
35 SyncFileType file_type() const { return file_type_; } function in class:sync_file_system::FileChange
41 file_type() == that.file_type();
H A Dfile_change.cc15 SyncFileType file_type)
17 file_type_(file_type) {}
30 switch (file_type()) {
13 FileChange( ChangeType change, SyncFileType file_type) argument
/external/chromium_org/ppapi/c/
H A Dpp_directory_entry.h29 PP_FileType file_type; member in struct:PP_DirectoryEntry
/external/chromium_org/net/disk_cache/
H A Daddr.cc33 if (file_type() > BLOCK_4K)
47 if (file_type() > BLOCK_FILES)
60 if (is_separate_file() || file_type() != BLOCK_256)
73 if (file_type() != BLOCK_ENTRIES && file_type() != BLOCK_EVICTED)
86 if (is_separate_file() || file_type() != RANKINGS || num_blocks() != 1)
H A Daddr.h61 Addr(FileType file_type, int max_blocks, int block_file, int index) { argument
62 value_ = ((file_type << kFileTypeOffset) & kFileTypeMask) |
85 FileType file_type() const { function in class:disk_cache::Addr
100 return BlockSizeForFileType(file_type());
119 static int BlockSizeForFileType(FileType file_type) { argument
120 switch (file_type) {
151 static int RequiredBlocks(int size, FileType file_type) { argument
152 int block_size = BlockSizeForFileType(file_type);
H A Daddr_unittest.cc21 EXPECT_EQ(BLOCK_1K, addr2.file_type());
30 EXPECT_EQ(BLOCK_4K, addr3.file_type());
/external/chromium/net/disk_cache/
H A Daddr.h54 Addr(FileType file_type, int max_blocks, int block_file, int index) { argument
55 value_ = ((file_type << kFileTypeOffset) & kFileTypeMask) |
78 FileType file_type() const { function in class:disk_cache::Addr
93 return BlockSizeForFileType(file_type());
96 static int BlockSizeForFileType(FileType file_type) { argument
97 switch (file_type) {
H A Daddr_unittest.cc21 EXPECT_EQ(BLOCK_1K, addr2.file_type());
30 EXPECT_EQ(BLOCK_4K, addr3.file_type());
/external/chromium_org/third_party/icu/source/tools/
H A Dicu-svnprops-check.py107 file_type, string_proplist = propline.split("=", 1)
111 file_type = file_type.strip()
112 file_type = file_type.replace(".", "\.")
113 file_type = file_type.replace("*", ".*")
114 file_type = file_type + "$"
135 file_types.append((file_type, proplis
[all...]
/external/icu4c/tools/
H A Dicu-svnprops-check.py107 file_type, string_proplist = propline.split("=", 1)
111 file_type = file_type.strip()
112 file_type = file_type.replace(".", "\.")
113 file_type = file_type.replace("*", ".*")
114 file_type = file_type + "$"
135 file_types.append((file_type, proplis
[all...]
/external/chromium/chrome/browser/printing/
H A Dprint_dialog_cloud.h23 const std::string& file_type,
/external/chromium_org/ppapi/cpp/
H A Ddirectory_entry.cc21 data_.file_type = data.file_type;
26 data_.file_type = other.data_.file_type;
H A Ddirectory_entry.h74 PP_FileType file_type() const { return data_.file_type; } function in class:pp::DirectoryEntry
/external/chromium_org/webkit/browser/fileapi/
H A Dsandbox_database_test_helper.cc31 leveldb::FileType file_type; local
33 &number, &file_type));
34 if (file_type == type &&
89 leveldb::FileType file_type; local
91 &number, &file_type));
92 if (file_type == type) {
/external/chromium_org/chrome/browser/printing/
H A Dprint_dialog_cloud.h45 const std::string& file_type,
58 const std::string& file_type);
/external/chromium_org/webkit/browser/database/
H A Dvfs_backend.cc23 const int file_type = desired_flags & kFileTypeMask; local
48 return (file_type == SQLITE_OPEN_MAIN_DB) ||
49 (file_type == SQLITE_OPEN_TEMP_DB) ||
50 (file_type == SQLITE_OPEN_MAIN_JOURNAL) ||
51 (file_type == SQLITE_OPEN_TEMP_JOURNAL) ||
52 (file_type == SQLITE_OPEN_SUBJOURNAL) ||
53 (file_type == SQLITE_OPEN_MASTER_JOURNAL) ||
54 (file_type == SQLITE_OPEN_TRANSIENT_DB);
/external/chromium_org/remoting/tools/
H A Dverify_resources.py53 def ExtractTagFromLine(file_type, line):
55 if file_type == "html":
65 elif file_type == 'js':
69 elif file_type == 'cc' or file_type == 'mm':
75 elif file_type == 'json':
79 elif file_type == 'jinja2':
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Dchecker.py469 def _create_checker(self, file_type, file_path, handle_style_error,
472 if file_type == FileType.NONE:
474 elif file_type == FileType.CPP:
478 elif file_type == FileType.JSON:
480 elif file_type == FileType.PYTHON:
482 elif file_type == FileType.XML:
484 elif file_type == FileType.XCODEPROJ:
486 elif file_type == FileType.PNG:
488 elif file_type == FileType.TEXT:
495 raise ValueError('Invalid file type "%(file_type)
[all...]
/external/chromium_org/base/files/
H A Dfile_enumerator_win.cc45 int file_type)
47 file_type_(file_type),
58 int file_type,
61 file_type_(file_type),
43 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
56 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) argument
H A Dfile_enumerator.h92 // |file_type|, a bit mask of FileType, specifies whether the enumerator
106 int file_type);
109 int file_type,

Completed in 692 milliseconds

12345