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

12

/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSImageAdditions.h9 - (NSString *) base64EncodingWithFileType:(NSBitmapImageFileType) fileType;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSImageAdditions.h9 - (NSString *) base64EncodingWithFileType:(NSBitmapImageFileType) fileType;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSImageAdditions.h9 - (NSString *) base64EncodingWithFileType:(NSBitmapImageFileType) fileType;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_Foundation_typecode.m59 "OSType NSHFSTypeCodeFromFileType(NSString *fileType);");
67 NSString* fileType;
72 keywords, PyObjCObject_Convert, &fileType)) {
77 hfsTypeCode = NSHFSTypeCodeFromFileType(fileType);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_Foundation_typecode.m76 "OSType NSHFSTypeCodeFromFileType(NSString *fileType);");
84 NSString* fileType;
89 keywords, PyObjCObject_Convert, &fileType)) {
94 hfsTypeCode = NSHFSTypeCodeFromFileType(fileType);
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Modules/
H A D_Foundation_typecode.m76 "OSType NSHFSTypeCodeFromFileType(NSString *fileType);");
84 NSString* fileType;
89 keywords, PyObjCObject_Convert, &fileType)) {
94 hfsTypeCode = NSHFSTypeCodeFromFileType(fileType);
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp131 const uint16_t fileType = (m_data->data()[0] << 8) | static_cast<uint8_t>(m_data->data()[1]); local
149 return (fileType == BMAP) || setFailed();
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/ico/
H A DICOImageDecoder.cpp243 const uint16_t fileType = readUint16(2);
249 if (((fileType != ICON) && (fileType != CURSOR)) || (!idCount))
252 m_fileType = static_cast<FileType>(fileType);
/macosx-10.10/python-89/2.6/fix/
H A DEasyDialogs.py164 fileType=None,
/macosx-10.10/python-89/2.7/fix/
H A DEasyDialogs.py164 fileType=None,
/macosx-10.10/cddafs-253/
H A DAppleCDDAFileSystemDefines.h159 UInt32 fileType; member in struct:FinderInfo
301 UInt32 fileType; // Type in FOUR_CHAR_CODE member in struct:AppleCDDAArguments
358 UInt32 fileType; // Type in FOUR_CHAR_CODE member in struct:AppleCDDAMount
/macosx-10.10/hfs-285/newfs_hfs/
H A Dnewfs_hfs.h44 uint32_t fileType; /* The type of the file */ member in struct:FInfo
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkConsole.c116 DWORD fileType;
170 fileType = GetFileType(handle);
178 if (fileType == FILE_TYPE_CHAR) {
189 } else if (fileType == FILE_TYPE_UNKNOWN) {
115 DWORD fileType; local
/macosx-10.10/tcl-105/tcl_ext/snack/snack/generic/
H A DjkSound.c347 if (strcmp(s->fileType, ff->name) == 0) {
604 objs[6] = Tcl_NewStringObj(s->fileType, -1);
883 if (strcmp(s->fileType, ff->name) == 0) {
1013 Tcl_SetObjResult(interp, Tcl_NewStringObj(s->fileType, -1));
1155 if (GetFileFormat(interp, objv[arg+1], &s->fileType) != TCL_OK) {
1205 if (strcmp(s->fileType, ff->name) == 0) {
1212 s->fileType = NameGuessFileType(s->fcname);
1368 Tcl_SetObjResult(interp, Tcl_NewStringObj(s->fileType, -1));
1610 s->fileType = RAW_STRING;
1679 char *fileType local
[all...]
H A DjkSoundEngine.c116 if (strcmp(s->fileType, ff->name) == 0) {
835 if (strcmp(s->fileType, ff->name) == 0) {
864 if (strcmp(s->fileType, ff->name) == 0) {
913 if (strcmp(s->fileType, ff->name) == 0) {
1112 s->fileType = GuessFileType((char *)s->tmpbuf, tlen, 0);
1113 if (strcmp(s->fileType, QUE_STRING) != 0) break;
1117 if (strcmp(s->fileType, ff->name) == 0) {
1124 if (strcmp(s->fileType, RAW_STRING) == 0 && s->guessEncoding) {
1408 if (GetFileFormat(interp, objv[arg+1], &s->fileType) != TCL_OK)
1456 if (strcmp(s->fileType, f
[all...]
/macosx-10.10/llvmCore-3425.0.34/tools/bugpoint/
H A DToolRunner.h64 FileType fileType,
76 int MakeSharedObject(const std::string &InputFile, FileType fileType,
H A DToolRunner.cpp645 FileType fileType,
664 if (fileType != ObjectFile) {
666 if (fileType == CFile) {
791 int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType, argument
815 if (fileType != ObjectFile) {
817 GCCArgs.push_back(fileType == AsmFile ? "assembler" : "c");
643 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
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DMyAppController.py74 exportInfoP.fileType = ' ' # unused
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DMyAppController.py74 exportInfoP.fileType = ' ' # unused
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DMyAppController.py74 exportInfoP.fileType = ' ' # unused
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkConsole.c122 DWORD fileType;
176 fileType = GetFileType(handle);
184 if (fileType == FILE_TYPE_CHAR) {
195 } else if (fileType == FILE_TYPE_UNKNOWN) {
121 DWORD fileType; local
/macosx-10.10/tcl-105/tk84/tk/macosx/
H A DtkMacOSXDialog.c75 static Boolean MatchOneType(StringPtr fileNamePtr, OSType fileType,
1147 OSType fileType;
1153 fileType =
1186 result = MatchOneType(fileNamePtr, fileType,
1201 if (MatchOneType(fileNamePtr, fileType,
1237 OSType fileType, /* Type of the file, 0 means there was no
1314 if (fileType == mfPtr->type) {
1326 * with no fileType. To avoid that, we pass the macMatch side
1327 * of the test if no fileType is set.
1330 if (globMatched && (macMatched || (fileType
1138 OSType fileType; local
1225 MatchOneType( StringPtr fileNamePtr, OSType fileType, OpenFileData *ofdPtr, FileFilter *filterPtr) argument
[all...]
/macosx-10.10/tcl-105/tk/tk/library/
H A Dxmfbox.tcl159 # set data(fileType) $data(-defaulttype)
169 set data(fileType) 0
173 set data(fileType) $ix
179 MotifFDialog_SetFilter $w [lindex $data(-filetypes) $data(fileType)]
194 -variable ::tk::dialog::file::[winfo name $w](fileType) \
201 $f.b$data(fileType) invoke
870 set typeVariable [lindex $data(-filetypes) $data(fileType) 0]
/macosx-10.10/WebCore-7600.1.25/editing/ios/
H A DEditorIOS.mm513 RetainPtr<NSString> fileType = adoptNS((NSString *)UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (CFStringRef)[localPath pathExtension], NULL));
515 if (UTTypeConformsTo((CFStringRef)fileType.get(), kUTTypePNG)) {
518 } else if (UTTypeConformsTo((CFStringRef)fileType.get(), kUTTypeJPEG)) {
/macosx-10.10/WebKit-7600.1.25/mac/Storage/
H A DWebDatabaseManager.mm185 if ([attributes fileType] == NSFileTypeSymbolicLink)

Completed in 336 milliseconds

12