/external/fonttools/Lib/fontTools/misc/ |
macCreatorType.py | 18 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/chromium_org/third_party/mozilla/ |
NSURL+Utils.m | 47 OSType fileType = NSHFSTypeCodeFromFileType(NSHFSTypeOfFile(urlPathString)); 49 if ([ext isEqualToString:@"url"] || fileType == 'LINK') { 53 fileType == 'ilht' || fileType == 'ilft')
|
NSPasteboard+Utils.mm | 194 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/javassist/src/main/javassist/tools/web/ |
Webserver.java | 240 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) { 357 private void sendHeader(OutputStream out, long dataLength, int filetype) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/ |
BMPImageDecoder.cpp | 133 const uint16_t fileType = (m_data->data()[0] << 8) | static_cast<uint8_t>(m_data->data()[1]); 137 // See if this is a bitmap filetype we understand. 151 return (fileType == BMAP) || setFailed();
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLiteFileSystemPosix.cpp | 90 int fileType = desiredFlags & 0x00007F00; 91 int noLock = (fileType != SQLITE_OPEN_MAIN_DB);
|
/external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
file_type.js | 10 var FileType = {}; 16 FileType.types = [ 187 FileType.DIRECTORY = {name: 'FOLDER', type: '.folder', icon: 'folder'}; 196 FileType.getExtension = function(entry) { 217 FileType.getTypeForName = function(name) { 218 var types = FileType.types; 241 FileType.getType = function(entry) { 243 return FileType.DIRECTORY; 245 var types = FileType.types; 252 var extension = FileType.getExtension(entry) [all...] |
file_manager.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/ |
ICOImageDecoder.cpp | 251 const uint16_t fileType = readUint16(2); 255 // See if this is an icon filetype we understand, and make sure we have at 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/ |
EncodeDecodeTest.h | 110 void EncodeToFile(int fileType, int codeId, int* codePars, int testMode);
|
EncodeDecodeTest.cc | 332 void EncodeDecodeTest::EncodeToFile(int fileType, int codeId, int* codePars,
|
/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, 125 virtual GCC::FileType OutputCode(const std::string &Bitcode, 192 GCC::FileType OutputCode(const std::string &Bitcode,
|
ToolRunner.cpp | 475 GCC::FileType LLC::OutputCode(const std::string &Bitcode, 500 LLCArgs.push_back("-filetype=obj"); 537 GCC::FileType FileKind = OutputCode(Bitcode, OutputAsmFile, *Error, Timeout, 676 FileType fileType, 695 if (fileType != ObjectFile) { 697 if (fileType == CFile) { 823 int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType, 848 if (fileType != ObjectFile) [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libgif.cpp | 101 static int DecodeCallBackProc(GifFileType* fileType, GifByteType* out, 103 SkStream* stream = (SkStream*) fileType->UserData;
|
SkMovie_gif.cpp | 36 static int Decode(GifFileType* fileType, GifByteType* out, int size) { 37 SkStream* stream = (SkStream*) fileType->UserData;
|
/external/chromium_org/third_party/android_platform/webview/ |
frameworks.jar | |
/external/chromium_org/third_party/sqlite/src/src/ |
os_unix.c | [all...] |
/external/chromium_org/tools/gyp/pylib/gyp/ |
xcodeproj_file.py | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.osgi_3.6.1.R36x_v20100806.jar | |
org.eclipse.osgi_3.6.2.R36x_v20101103.jar | |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |