/external/llvm/tools/llvm-size/ |
llvm-size.cpp | 36 OutputFormat("format", 90 /// The format used is determined by @c OutputFormat and @c Radix. 108 if (OutputFormat == sysv) { 263 if (OutputFormat == sysv) 267 if (OutputFormat == berkeley) 272 if (OutputFormat == sysv) 275 if (OutputFormat == berkeley) 281 if (OutputFormat == sysv) 295 OutputFormat = OutputFormatShort; 302 if (OutputFormat == berkeley [all...] |
/external/llvm/tools/llvm-nm/ |
llvm-nm.cpp | 45 OutputFormat("format", 52 cl::aliasopt(OutputFormat)); 167 if (OutputFormat == posix && MultipleFiles) { 169 } else if (OutputFormat == bsd && MultipleFiles) { 171 } else if (OutputFormat == sysv) { 189 if (OutputFormat == sysv || i->Address == object::UnknownAddressOrSize) 191 if (OutputFormat == sysv) 199 if (OutputFormat == posix) { 202 } else if (OutputFormat == bsd) { 211 } else if (OutputFormat == sysv) [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaRecorderTest.java | 158 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT); 201 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT); 316 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.DEFAULT); 387 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 445 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 464 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 484 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 546 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
MediaPlayerTest.java | 485 mr.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/external/clang/tools/scan-build/ |
c++-analyzer | 422 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 423 if (!defined $OutputFormat) { $OutputFormat = "html"; } 630 if (defined $OutputFormat) { 631 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 632 if ($OutputFormat =~ /plist/) {
|
ccc-analyzer | 422 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 423 if (!defined $OutputFormat) { $OutputFormat = "html"; } 630 if (defined $OutputFormat) { 631 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 632 if ($OutputFormat =~ /plist/) {
|
scan-build | [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
AudioPermissionTest.java | 50 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
CopyCutAction.java | 24 import org.apache.xml.serialize.OutputFormat; 200 new OutputFormat(Method.XML, 201 OutputFormat.Defaults.Encoding /* utf-8 */,
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/ |
MediaPlayerPerformance.java | 250 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 406 MediaRecorder.OutputFormat.MPEG_4, MediaNames.RECORDED_VIDEO_3GP, true)); 426 MediaRecorder.OutputFormat.MPEG_4, MediaNames.RECORDED_VIDEO_3GP, true)); 447 MediaRecorder.OutputFormat.MPEG_4, MediaNames.RECORDED_VIDEO_3GP, false));
|
/frameworks/base/media/java/android/media/ |
MediaRecorder.java | 42 * recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 193 public final class OutputFormat { 197 private OutputFormat() {} 206 /** Deprecated in favor of MediaRecorder.OutputFormat.AMR_NB */ 344 * video if the output format is OutputFormat.THREE_GPP or 345 * OutputFormat.MPEG_4 so that a video player can choose the proper 367 * stored in udta box if the output format is OutputFormat.THREE_GPP 368 * or OutputFormat.MPEG_4, and is ignored for other output formats. 409 * @see android.media.MediaRecorder.OutputFormat [all...] |
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
MediaRecorderStressTest.java | 215 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 276 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 350 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
CodecTest.java | 466 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
MediaRecorderTest.java | 148 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 261 MediaRecorder.OutputFormat.THREE_GPP, 277 MediaRecorder.OutputFormat.THREE_GPP, MediaNames.INVALD_VIDEO_PATH, false);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/ |
MediaRecorderStressTest.java | 208 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 272 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); 362 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
MediaRecorderStateUnitTestTemplate.java | 40 public static final int OUTPUT_FORMAT= MediaRecorder.OutputFormat.THREE_GPP;
|
/system/media/mca/filterpacks/videosink/java/ |
MediaEncoderFilter.java | 106 * settings to width, height, framerate, outputFormat, and videoEncoder. 128 * android.media.MediaRecorder.OutputFormat */ 129 @GenerateFieldPort(name = "outputFormat", hasDefault = true) 130 private int mOutputFormat = MediaRecorder.OutputFormat.MPEG_4;
|
/packages/apps/SoundRecorder/src/com/android/soundrecorder/ |
SoundRecorder.java | 388 mRecorder.startRecording(MediaRecorder.OutputFormat.AMR_NB, ".amr", this); 391 mRecorder.startRecording(MediaRecorder.OutputFormat.THREE_GPP, ".3gpp",
|
/frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/ |
ScoAudioTest.java | 458 mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/dalvik/dexdump/ |
DexDump.cpp | 55 enum OutputFormat { 68 OutputFormat outputFormat; 552 if (gOptions.outputFormat == OUTPUT_PLAIN) { [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PaletteControl.java | [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
CodecTest.java | 491 mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
|
/packages/apps/Camera/src/com/android/camera/ |
VideoCamera.java | [all...] |
/external/jdiff/ |
xerces.jar | |
/prebuilt/sdk/14/ |
android.jar | |