Searched refs:fileType (Results 1 - 25 of 31) sorted by relevance

12

/external/fonttools/Lib/fontTools/misc/
H A DmacCreatorType.py18 fileCreator, fileType = MacOS.GetCreatorAndType(path)
23 fileType = _reverseString(fileType)
24 return fileCreator, fileType
29 def setMacCreatorAndType(path, fileCreator, fileType):
35 fileType = _reverseString(fileType)
36 MacOS.SetCreatorAndType(path, fileCreator, fileType)
/external/fonttools/Tools/fontTools/misc/
H A DmacCreatorType.py18 fileCreator, fileType = MacOS.GetCreatorAndType(path)
23 fileType = _reverseString(fileType)
24 return fileCreator, fileType
29 def setMacCreatorAndType(path, fileCreator, fileType):
35 fileType = _reverseString(fileType)
36 MacOS.SetCreatorAndType(path, fileCreator, fileType)
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_wavefile.h54 EAS_I16 fileType; member in struct:s_wave_state_tag
H A Deas_wavefile.c475 *pValue = pWaveData->fileType;
602 pWaveData->fileType = EAS_FILE_WAVE_PCM;
607 pWaveData->fileType = EAS_FILE_WAVE_IMA_ADPCM;
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_wavefile.h54 EAS_I16 fileType; member in struct:s_wave_state_tag
H A Deas_wavefile.c475 *pValue = pWaveData->fileType;
602 pWaveData->fileType = EAS_FILE_WAVE_PCM;
607 pWaveData->fileType = EAS_FILE_WAVE_IMA_ADPCM;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_wavefile.h54 EAS_I16 fileType; member in struct:s_wave_state_tag
H A Deas_wavefile.c475 *pValue = pWaveData->fileType;
602 pWaveData->fileType = EAS_FILE_WAVE_PCM;
607 pWaveData->fileType = EAS_FILE_WAVE_IMA_ADPCM;
/external/chromium_org/third_party/mozilla/
H A DNSURL+Utils.m47 OSType fileType = NSHFSTypeCodeFromFileType(NSHFSTypeOfFile(urlPathString));
49 if ([ext isEqualToString:@"url"] || fileType == 'LINK') {
53 fileType == 'ilht' || fileType == 'ilft')
H A DNSPasteboard+Utils.mm194 OSType fileType = NSHFSTypeCodeFromFileType(NSHFSTypeOfFile(file));
197 if ([ext isEqualToString:@"webloc"] || [ext isEqualToString:@"ftploc"] || fileType == 'ilht' || fileType == 'ilft') {
203 } else if ([ext isEqualToString:@"url"] || fileType == 'LINK') {
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_type.js184 * @param {Object} fileType Type object returned by FileType.getType().
187 FileType.typeToString = function(fileType) {
188 if (fileType.subtype)
189 return strf(fileType.name, fileType.subtype);
191 return str(fileType.name);
254 var fileType = FileType.getType(entry);
255 return fileType.icon || fileType.type || 'unknown';
H A Dfile_manager.js1306 var fileType = this.fileTypes_[i];
1308 var description = fileType.description;
1311 for (var j = 0; j !== fileType.extensions.length; j++) {
1313 FileType.getTypeForName('.' + fileType.extensions[j]));
1325 description = fileType.extensions.map(function(s) {
1333 if (fileType.selected)
1354 this.fileFilter_.removeFilter('fileType');
1362 this.fileFilter_.addFilter('fileType', filter);
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java240 int fileType;
249 fileType = typeClass;
251 fileType = typeHtml;
253 fileType = typeGif;
255 fileType = typeJpeg;
257 fileType = typeText; // or textUnknown
260 if (fileType == typeClass
273 sendHeader(out, file.length(), fileType);
291 if (fileType == typeClass) {
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp135 const uint16_t fileType = (m_data->data()[0] << 8) | static_cast<uint8_t>(m_data->data()[1]); local
153 return (fileType == BMAP) || setFailed();
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteFileSystemPosix.cpp90 int fileType = desiredFlags & 0x00007F00; local
91 int noLock = (fileType != SQLITE_OPEN_MAIN_DB);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
H A DICOImageDecoder.cpp251 const uint16_t fileType = readUint16(2);
257 if (((fileType != ICON) && (fileType != CURSOR)) || (!idCount))
260 m_fileType = static_cast<FileType>(fileType);
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DEncodeDecodeTest.h109 void EncodeToFile(int fileType, int codeId, int* codePars, int testMode);
H A DEncodeDecodeTest.cc332 void EncodeDecodeTest::EncodeToFile(int fileType, int codeId, int* codePars, argument
/external/llvm/tools/bugpoint/
H A DToolRunner.h63 FileType fileType,
75 int MakeSharedObject(const std::string &InputFile, FileType fileType,
H A DToolRunner.cpp676 FileType fileType,
695 if (fileType != ObjectFile) {
697 if (fileType == CFile) {
823 int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType, argument
848 if (fileType != ObjectFile) {
850 GCCArgs.push_back(fileType == AsmFile ? "assembler" : "c");
674 ExecuteProgram(const std::string &ProgramFile, const std::vector<std::string> &Args, FileType fileType, const std::string &InputFile, const std::string &OutputFile, std::string *Error, const std::vector<std::string> &ArgsForGCC, unsigned Timeout, unsigned MemoryLimit) argument
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libgif.cpp101 static int DecodeCallBackProc(GifFileType* fileType, GifByteType* out, argument
103 SkStream* stream = (SkStream*) fileType->UserData;
H A DSkMovie_gif.cpp36 static int Decode(GifFileType* fileType, GifByteType* out, int size) { argument
37 SkStream* stream = (SkStream*) fileType->UserData;
/external/skia/src/images/
H A DSkImageDecoder_libgif.cpp101 static int DecodeCallBackProc(GifFileType* fileType, GifByteType* out, argument
103 SkStream* stream = (SkStream*) fileType->UserData;
H A DSkMovie_gif.cpp36 static int Decode(GifFileType* fileType, GifByteType* out, int size) { argument
37 SkStream* stream = (SkStream*) fileType->UserData;
/external/svox/pico/lib/
H A Dpicoos.c1418 wave_file_type_t fileType; /* (acoustic) wav, au, raw, other */ member in struct:picoos_sd_file
1517 wave_file_type_t fileType = FILE_TYPE_OTHER; local
1533 fileType = FILE_TYPE_WAV;
1537 /* fileType = FILE_TYPE_RAW; */
1538 fileType = FILE_TYPE_OTHER;
1542 if (FILE_TYPE_OTHER == fileType) {
1753 sdf->fileType = FILE_TYPE_WAV;
1758 /* fileType = FILE_TYPE_RAW; */
1759 sdf->fileType = FILE_TYPE_OTHER;
1763 if (FILE_TYPE_OTHER == sdf->fileType) {
[all...]

Completed in 529 milliseconds

12