HomeSort by relevance Sort by last modified time
    Searched defs:fileType (Results 1 - 25 of 30) sorted by null

1 2

  /external/sonivox/arm-fm-22k/lib_src/
eas_wavefile.h 54 EAS_I16 fileType;
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wavefile.h 54 EAS_I16 fileType;
  /external/sonivox/arm-wt-22k/lib_src/
eas_wavefile.h 54 EAS_I16 fileType;
  /external/webkit/Source/WebCore/platform/image-decoders/bmp/
BMPImageDecoder.cpp 130 const uint16_t fileType = (m_data->data()[0] << 8) | static_cast<uint8_t>(m_data->data()[1]);
134 // See if this is a bitmap filetype we understand.
148 return (fileType == BMAP) || setFailed();
  /external/webkit/Source/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 90 int fileType = desiredFlags & 0x00007F00;
91 int noLock = (fileType != SQLITE_OPEN_MAIN_DB);
  /frameworks/base/tools/validatekeymaps/
Main.cpp 31 enum FileType {
50 static FileType getFileType(const char* filename) {
74 FileType fileType = getFileType(filename);
75 switch (fileType) {
  /frameworks/base/media/jni/mediaeditor/
VideoEditorPropertiesMain.cpp 101 VideoEditClasses_FileType fileType = VideoEditClasses_kFileType_Unsupported;
156 pExtension ,&fileType, &clipType);
163 (VideoEditClasses_kFileType_Unsupported == fileType),
176 if ((VideoEditClasses_kFileType_MP3 == fileType) ||
177 (VideoEditClasses_kFileType_MP4 == fileType) ||
178 (VideoEditClasses_kFileType_3GPP == fileType) ||
179 (VideoEditClasses_kFileType_AMR == fileType) ||
180 (VideoEditClasses_kFileType_PCM == fileType) ||
181 (VideoEditClasses_kFileType_M4V == fileType))
237 if (M4VIDEOEDITING_kFileType_Unsupported == pClipProperties->FileType)
    [all...]
VideoEditorClasses.h 54 #define FILE_TYPE_CLASS_NAME MANUAL_EDIT_ENGINE_CLASS_NAME"$FileType"
117 jfieldID fileType;
132 VideoEditClasses_FileType FileType;
154 jfieldID fileType;
177 jfieldID fileType;
288 VIDEOEDIT_JAVA_DECLARE_CONSTANT_CLASS(FileType )
  /frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
VideoEditorMain.h 51 M4OSA_Int32 fileType;
  /frameworks/base/tools/aapt/
Package.cpp 72 FileType fileType = getFileType(outputFile.string());
73 if (fileType == kFileTypeNonexistent) {
75 } else if (fileType == kFileTypeRegular) {
95 printf("%s '%s'\n", (fileType == kFileTypeNonexistent) ? "Creating" : "Opening",
  /frameworks/compile/libbcc/tests/
test.py 69 def fileType(item):
73 ft = fileType(which("bcc"))
  /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...]
  /frameworks/base/media/java/android/media/videoeditor/
AudioTrack.java 150 int fileType = mMANativeHelper.getFileType(properties.fileType);
151 switch (fileType) {
159 throw new IllegalArgumentException("Unsupported input file type: " + fileType);
MediaArtistNativeHelper.java 317 public final class FileType {
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
MediaPropertiesTest.java 72 protected void validateVideoProperties(int aspectRatio, int fileType,
78 assertEquals("File Type Mismatch", fileType, mvi.getFileType());
120 protected void validateImageProperties(int aspectRatio, int fileType,
124 assertEquals("File Type Mismatch", fileType, mii.getFileType());
138 final int fileType = MediaProperties.FILE_MP4;
156 validateVideoProperties(aspectRatio, fileType, videoCodecType, duration,
170 final int fileType = MediaProperties.FILE_MP4;
188 validateVideoProperties(aspectRatio, fileType, videoCodecType, duration,
201 final int fileType = MediaProperties.FILE_MP4;
219 validateVideoProperties(aspectRatio, fileType, videoCodecType, duration
    [all...]
  /frameworks/base/media/java/android/media/
MediaFile.java 114 public final int fileType;
117 MediaFileType(int fileType, String mimeType) {
118 this.fileType = fileType;
137 static void addFileType(String extension, int fileType, String mimeType) {
138 sFileTypeMap.put(extension, new MediaFileType(fileType, mimeType));
139 sMimeTypeMap.put(mimeType, Integer.valueOf(fileType));
142 static void addFileType(String extension, int fileType, String mimeType, int mtpFormatCode) {
143 addFileType(extension, fileType, mimeType);
249 public static boolean isAudioFileType(int fileType) {
    [all...]
ThumbnailUtils.java 100 MediaFileType fileType = MediaFile.getFileType(filePath);
101 if (fileType != null && fileType.fileType == MediaFile.FILE_TYPE_JPEG) {
  /frameworks/base/libs/androidfw/
AssetManager.cpp 595 FileType AssetManager::getFileType(const char* fileName)
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/
VideoEditorPerformance.java 634 final int fileType = MediaProperties.FILE_MP4;
655 fileType, mediaVideoItem.getFileType());
    [all...]
  /external/svox/pico/lib/
picoos.c     [all...]
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 875 int32_t fileType;
876 if (param && param->findInt32(kKeyFileType, &fileType) &&
877 fileType != OUTPUT_FORMAT_MPEG_4) {
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewCore.java 319 int fileType = MediaFile.getFileTypeForMimeType(mimeType);
320 return MediaFile.isAudioFileType(fileType)
321 || MediaFile.isVideoFileType(fileType)
322 || MediaFile.isPlayListFileType(fileType)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java     [all...]
  /tools/motodev/src/plugins/android/
commons-net-1.4.1.jar 
  /tools/motodev/src/plugins/common/
commons-net-1.4.1.jar 

Completed in 801 milliseconds

1 2