Searched refs:file_type (Results 26 - 50 of 129) sorted by relevance

123456

/external/chromium_org/chrome/browser/printing/
H A Dprint_dialog_cloud.cc235 const std::string& file_type,
240 file_type_(file_type),
288 const std::string& file_type)
293 file_type_(file_type) {
496 const std::string& file_type)
499 file_type)),
626 const std::string& file_type) {
631 print_ticket, file_type);
658 const std::string& file_type) {
678 print_ticket, file_type));
231 CloudPrintDataSender( CloudPrintDataSenderHelper* helper, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type, const base::RefCountedMemory* data) argument
284 CloudPrintFlowHandler( const base::RefCountedMemory* data, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type) argument
489 CloudPrintWebDialogDelegate( content::BrowserContext* browser_context, gfx::NativeWindow modal_parent, const base::RefCountedMemory* data, const std::string& json_arguments, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type) argument
621 CreateDialogImpl(content::BrowserContext* browser_context, gfx::NativeWindow modal_parent, const base::RefCountedMemory* data, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type) argument
653 CreateDialogForFileImpl(content::BrowserContext* browser_context, gfx::NativeWindow modal_parent, const base::FilePath& path_to_file, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type) argument
700 CreatePrintDialogForFile(content::BrowserContext* browser_context, gfx::NativeWindow modal_parent, const base::FilePath& path_to_file, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type) argument
741 CreatePrintDialogForBytes(content::BrowserContext* browser_context, gfx::NativeWindow modal_parent, const base::RefCountedMemory* data, const base::string16& print_job_title, const base::string16& print_ticket, const std::string& file_type) argument
772 std::string file_type = "application/pdf"; local
[all...]
H A Dprint_dialog_cloud_internal.h61 const std::string& file_type,
101 const std::string& file_type);
154 const std::string& file_type);
197 const std::string& file_type);
/external/chromium_org/base/files/
H A Dfile_enumerator_posix.cc42 int file_type)
46 file_type_(file_type) {
54 int file_type,
59 file_type_(file_type),
40 FileEnumerator(const FilePath& root_path, bool recursive, int file_type) argument
52 FileEnumerator(const FilePath& root_path, bool recursive, int file_type, const FilePath::StringType& pattern) argument
/external/chromium_org/chrome/browser/extensions/api/sync_file_system/
H A Dsync_file_system_api_helpers.h53 // This returns NULL if the given |url| is not valid or |file_type| is
57 sync_file_system::SyncFileType file_type);
H A Dsync_file_system_api_helpers.cc110 sync_file_system::SyncFileType file_type) {
111 if (!url.is_valid() || file_type == sync_file_system::SYNC_FILE_TYPE_UNKNOWN)
133 (file_type == sync_file_system::SYNC_FILE_TYPE_DIRECTORY));
108 CreateDictionaryValueForFileSystemEntry( const storage::FileSystemURL& url, sync_file_system::SyncFileType file_type) argument
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_object_enumerator.cc39 return file_entries_[index_].file_type() == MtpFileEntry::FILE_TYPE_FOLDER;
/external/qemu/distrib/ext4_utils/src/
H A Dcontents.h26 u8 file_type; member in struct:dentry
H A Dmake_ext4fs.c89 .file_type = EXT4_FT_DIR,
213 dentries[i].file_type = EXT4_FT_REG_FILE;
215 dentries[i].file_type = EXT4_FT_DIR;
218 dentries[i].file_type = EXT4_FT_CHRDEV;
220 dentries[i].file_type = EXT4_FT_BLKDEV;
222 dentries[i].file_type = EXT4_FT_FIFO;
224 dentries[i].file_type = EXT4_FT_SOCK;
226 dentries[i].file_type = EXT4_FT_SYMLINK;
249 dentries[0].file_type = EXT4_FT_DIR;
263 if (dentries[i].file_type
[all...]
/external/llvm/lib/Support/
H A DFileOutputBuffer.cpp42 case sys::fs::file_type::file_not_found:
45 case sys::fs::file_type::regular_file: {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
H A Dtest_result_writer.py152 def write_output_files(self, file_type, output, expected):
156 <filename>-actual<file_type>
161 file_type: A string describing the test output file type, e.g. ".txt"
165 actual_filename = self.output_filename(self.FILENAME_SUFFIX_ACTUAL + file_type)
166 expected_filename = self.output_filename(self.FILENAME_SUFFIX_EXPECTED + file_type)
196 file_type = '.txt'
197 actual_filename = self.output_filename(self.FILENAME_SUFFIX_ACTUAL + file_type)
198 expected_filename = self.output_filename(self.FILENAME_SUFFIX_EXPECTED + file_type)
202 diff_filename = self.output_filename(self.FILENAME_SUFFIX_DIFF + file_type)
/external/lldb/source/Host/common/
H A DFileSpec.cpp615 mode_t file_type = file_stats.st_mode & S_IFMT; local
616 switch (file_type)
936 FileSpec::FileType file_type = eFileTypeUnknown; local
941 case DT_UNKNOWN: file_type = eFileTypeUnknown; call_callback = true; break;
942 case DT_FIFO: file_type = eFileTypePipe; call_callback = find_other; break;
943 case DT_CHR: file_type = eFileTypeOther; call_callback = find_other; break;
944 case DT_DIR: file_type = eFileTypeDirectory; call_callback = find_directories; break;
945 case DT_BLK: file_type = eFileTypeOther; call_callback = find_other; break;
946 case DT_REG: file_type = eFileTypeRegular; call_callback = find_files; break;
947 case DT_LNK: file_type
[all...]
/external/clang/include/clang/Basic/
H A DVirtualFileSystem.h39 llvm::sys::fs::file_type Type;
46 Status() : Type(llvm::sys::fs::file_type::status_error) {}
50 uint64_t Size, llvm::sys::fs::file_type Type,
59 llvm::sys::fs::file_type getType() const { return Type; }
66 void setType(llvm::sys::fs::file_type v) { Type = v; }
/external/llvm/lib/Support/Unix/
H A DPath.inc408 Result = file_status(file_type::file_not_found);
410 Result = file_status(file_type::status_error);
414 file_type Type = file_type::type_unknown;
417 Type = file_type::directory_file;
419 Type = file_type::regular_file;
421 Type = file_type::block_file;
423 Type = file_type::character_file;
425 Type = file_type::fifo_file;
427 Type = file_type
[all...]
/external/chromium_org/chrome/tools/convert_dict/
H A Ddic_reader.cc55 const char* file_type, const char* encoding,
76 file_type);
88 line_number, encoding, file_type);
54 PopulateWordSet(WordSet* word_set, FILE* file, AffReader* aff_reader, const char* file_type, const char* encoding, bool file_has_word_count_in_the_first_line) argument
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinKernel.h112 lldb_private::FileSpec::FileType file_type,
117 lldb_private::FileSpec::FileType file_type,
/external/llvm/lib/Support/Windows/
H A DPath.inc208 if (ST.type() == file_type::directory_file) {
376 Result = file_status(file_type::type_unknown);
382 Result = file_status(file_type::character_file);
385 Result = file_status(file_type::fifo_file);
394 file_type Type = (Info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
395 ? file_type::directory_file
396 : file_type::regular_file;
409 Result = file_status(file_type::file_not_found);
411 Result = file_status(file_type::type_unknown);
413 Result = file_status(file_type
[all...]
/external/libsepol/tests/policies/test-cond/
H A Drefpolicy-base.conf644 attribute file_type;
847 type default_t, file_type, mountpoint;
848 type etc_t, file_type;
849 type etc_runtime_t, file_type;
850 type file_t, file_type, mountpoint;
851 type home_root_t, file_type, mountpoint;
852 type lost_found_t, file_type;
853 type mnt_t, file_type, mountpoint;
855 type no_access_t, file_type;
856 type poly_t, file_type;
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftwinfnt.h188 FT_UShort file_type; member in struct:FT_WinFNT_HeaderRec_
/external/freetype/include/
H A Dftwinfnt.h189 FT_UShort file_type; member in struct:FT_WinFNT_HeaderRec_
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftwinfnt.h188 FT_UShort file_type; member in struct:FT_WinFNT_HeaderRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftwinfnt.h188 FT_UShort file_type; member in struct:FT_WinFNT_HeaderRec_
/external/sepolicy/
H A Dunconfined.te50 file_type
75 file_type
/external/llvm/include/llvm/Support/
H A DFileSystem.h53 enum class file_type { class in namespace:llvm::sys::fs
157 file_type Type;
163 Type(file_type::status_error), Perms(perms_not_known) {}
165 file_status(file_type Type) : fs_st_dev(0), fs_st_ino(0), fs_st_mtime(0),
169 file_status(file_type Type, perms Perms, dev_t Dev, ino_t Ino, time_t MTime,
176 FileIndexHigh(0), FileIndexLow(0), Type(file_type::status_error),
179 file_status(file_type Type) : LastWriteTimeHigh(0), LastWriteTimeLow(0),
184 file_status(file_type Type, uint32_t LastWriteTimeHigh,
196 file_type type() const { return Type; }
218 void type(file_type
[all...]
/external/elfutils/0.153/src/
H A Dld.c404 if (ld_state.file_type != relocatable_file_type)
429 if (ld_state.file_type != relocatable_file_type)
570 if (ld_state.file_type != no_file_type)
573 ld_state.file_type = dso_file_type;
608 if (ld_state.file_type != no_file_type)
611 ld_state.file_type = relocatable_file_type;
974 && ld_state.file_type == dso_file_type)
992 && ld_state.file_type == dso_file_type)
998 && ld_state.file_type == dso_file_type)
1061 && ld_state.file_type
[all...]
/external/chromium_org/chrome/browser/
H A Dfile_select_helper.cc240 scoped_ptr<ui::SelectFileDialog::FileTypeInfo> file_type(
242 file_type->include_all_files = true;
243 file_type->extensions.resize(1);
245 &file_type->extensions.back();
292 file_type->extension_description_overrides.push_back(
296 return file_type.Pass();

Completed in 794 milliseconds

123456