/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
file_type.js | 10 var FileType = {}; 16 FileType.types = [ 111 FileType.DIRECTORY = {name: 'FOLDER', type: '.folder', icon: 'folder'}; 121 FileType.getExtension = function(file) { 148 FileType.getType = function(file) { 151 return FileType.DIRECTORY; 155 var types = FileType.types; 163 var extension = FileType.getExtension(file); 177 FileType.getTypeString = function(file) { 178 var fileType = FileType.getType(file) [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
filename.h | 20 enum FileType { 75 FileType* type);
|
/frameworks/av/media/libstagefright/timedtext/ |
TimedTextSource.h | 33 enum FileType { 40 const sp<DataSource>& source, FileType filetype);
|
/frameworks/base/include/androidfw/ |
misc.h | 31 typedef enum FileType { 41 } FileType; 43 FileType getFileType(const char* fileName);
|
/frameworks/base/tools/validatekeymaps/ |
Main.cpp | 31 enum FileType { 50 static FileType getFileType(const char* filename) { 74 FileType fileType = getFileType(filename); 75 switch (fileType) {
|
/external/chromium_org/base/files/ |
file_enumerator.h | 75 enum FileType { 92 // |file_type|, a bit mask of FileType, specifies whether the enumerator
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/ |
ICOImageDecoder.h | 68 enum FileType { 137 FileType m_fileType;
|
/external/llvm/tools/bugpoint/ |
ToolRunner.h | 48 enum FileType { AsmFile, ObjectFile, CFile }; 55 /// either a .s file, or a .c file, specified by FileType), with the specified 63 FileType fileType, 75 int MakeSharedObject(const std::string &InputFile, FileType fileType, 123 virtual GCC::FileType OutputCode(const std::string &Bitcode, 190 virtual GCC::FileType OutputCode(const std::string &Bitcode,
|
/frameworks/compile/mclinker/include/mcld/Support/ |
FileSystem.h | 31 enum FileType 58 explicit FileStatus(FileType v) 61 void setType(FileType v) { m_Value = v; } 62 FileType type() const { return m_Value; } 65 FileType m_Value;
|
/external/chromium/net/disk_cache/ |
addr.h | 16 enum FileType { 54 Addr(FileType file_type, int max_blocks, int block_file, int index) { 78 FileType file_type() const { 79 return static_cast<FileType>((value_ & kFileTypeMask) >> kFileTypeOffset); 96 static int BlockSizeForFileType(FileType file_type) { 111 static FileType RequiredFileType(int size) {
|
/external/clang/lib/Lex/ |
PPLexerChange.cpp | 125 SrcMgr::CharacteristicKind FileType = 129 PPCallbacks::EnterFile, FileType); 151 SrcMgr::CharacteristicKind FileType = 153 Callbacks->FileChanged(EnterLoc, PPCallbacks::EnterFile, FileType); 325 SrcMgr::CharacteristicKind FileType = 328 PPCallbacks::ExitFile, FileType, ExitedFID);
|
/external/chromium_org/net/disk_cache/ |
addr.h | 16 enum FileType { 61 Addr(FileType file_type, int max_blocks, int block_file, int index) { 85 FileType file_type() const { 86 return static_cast<FileType>((value_ & kFileTypeMask) >> kFileTypeOffset); 119 static int BlockSizeForFileType(FileType file_type) { 140 static FileType RequiredFileType(int size) { 151 static int RequiredBlocks(int size, FileType file_type) {
|
/external/clang/lib/Rewrite/Frontend/ |
InclusionRewriter.cpp | 36 SrcMgr::CharacteristicKind FileType; 53 bool Process(FileID FileId, SrcMgr::CharacteristicKind FileType); 59 SrcMgr::CharacteristicKind FileType, 63 SrcMgr::CharacteristicKind FileType); 74 SrcMgr::CharacteristicKind FileType, 108 SrcMgr::CharacteristicKind FileType, 120 if (FileType == SrcMgr::C_System) 124 else if (FileType == SrcMgr::C_ExternCSystem) 150 LastInsertedFileChange->second.FileType = NewFileType; 158 SrcMgr::CharacteristicKind /*FileType*/) { [all...] |
/external/clang/tools/driver/ |
cc1as_main.cpp | 100 enum FileType { 105 FileType OutputType; 222 Opts.OutputType = FileType(OutputType);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
types.py | 63 FileType = file
|
argparse.py | 20 '--log', default=sys.stdout, type=argparse.FileType('w'), 39 - FileType -- A factory for defining types of files to be created. As the 40 example above shows, instances of FileType are typically passed as 69 'FileType', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
types.py | 63 FileType = file
|
argparse.py | 20 '--log', default=sys.stdout, type=argparse.FileType('w'), 39 - FileType -- A factory for defining types of files to be created. As the 40 example above shows, instances of FileType are typically passed as 69 'FileType', [all...] |
/external/chromium_org/media/mp4/ |
box_definitions.cc | 14 FileType::FileType() {} 15 FileType::~FileType() {} 16 FourCC FileType::BoxType() const { return FOURCC_FTYP; } 18 bool FileType::Parse(BoxReader* reader) {
|
box_definitions.h | 35 struct MEDIA_EXPORT FileType : Box { 36 DECLARE_BOX_METHODS(FileType);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
checker.py | 216 # This list should be in addition to files with FileType.NONE. Files 217 # with FileType.NONE are automatically skipped without warning. 380 class FileType: 382 NONE = 0 # FileType.NONE evaluates to False. 423 if not self._file_type(file_path): # FileType.NONE. 452 return FileType.CPP 454 return FileType.JSON 456 return FileType.PYTHON 458 return FileType.XML 460 return FileType.XCODEPRO [all...] |
/external/clang/lib/Frontend/ |
PrintPreprocessedOutput.cpp | 92 SrcMgr::CharacteristicKind FileType; 109 FileType = SrcMgr::C_User; 128 SrcMgr::CharacteristicKind FileType, 203 if (FileType == SrcMgr::C_System) 205 else if (FileType == SrcMgr::C_ExternCSystem) 289 FileType = NewFileType;
|
/frameworks/av/libvideoeditor/vss/inc/ |
M4VSS3GPP_API.h | 362 M4VIDEOEDITING_FileType FileType; /**< .3gp, .amr, .mp3 */ 421 * @param FileType (IN) Type of the input file (.3gp, .amr, .mp3) 436 M4OSA_ERR M4VSS3GPP_editAnalyseClip(M4OSA_Void *pClip, M4VIDEOEDITING_FileType FileType, [all...] |
M4VSS3GPP_Extended_API.h | 66 M4VIDEOEDITING_FileType FileType; /**< .3gp, .amr, .mp3 */
|
/frameworks/av/libvideoeditor/vss/common/inc/ |
M4_VideoEditingCommon.h | 269 M4VIDEOEDITING_FileType FileType; /**< .3gp, .amr, .mp3 */
|