Searched defs:format (Results 1 - 25 of 378) sorted by relevance

1234567891011>>

/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A Dpackage-info.java4 package android.filterfw.format;
H A DImageFormat.java18 package android.filterfw.format;
H A DObjectFormat.java18 package android.filterfw.format;
30 // Create frame format
H A DPrimitiveFormat.java18 package android.filterfw.format;
/frameworks/native/libs/ui/
H A DPixelFormat.cpp23 uint32_t bytesPerPixel(PixelFormat format) { argument
24 switch (format) {
39 uint32_t bitsPerPixel(PixelFormat format) { argument
40 switch (format) {
/frameworks/base/core/tests/coretests/src/android/text/format/
H A DDateFormatTest.java17 package android.text.format;
H A DDateUtilsTest.java17 package android.text.format;
H A DFormatterTest.java17 package android.text.format;
23 import android.text.format.Formatter.BytesResult;
/frameworks/base/telephony/java/android/telephony/
H A DJapanesePhoneNumberFormatter.java157 public static void format(Editable text) { method in class:JapanesePhoneNumberFormatter
/frameworks/base/tools/layoutlib/bridge/src/android/text/format/
H A DDateFormat_Delegate.java17 package android.text.format;
/frameworks/base/media/java/android/media/
H A DAudioDevicePortConfig.java30 int format, AudioGainConfig gain) {
31 super((AudioPort)devicePort, samplingRate, channelMask, format, gain);
35 this(config.port(), config.samplingRate(), config.channelMask(), config.format(),
29 AudioDevicePortConfig(AudioDevicePort devicePort, int samplingRate, int channelMask, int format, AudioGainConfig gain) argument
H A DAudioMixPortConfig.java29 AudioMixPortConfig(AudioMixPort mixPort, int samplingRate, int channelMask, int format, argument
31 super((AudioPort)mixPort, samplingRate, channelMask, format, gain);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DDecoderUtil.java25 public static boolean isAudioFormat(MediaFormat format) { argument
26 return format.getString(MediaFormat.KEY_MIME).startsWith("audio/");
29 public static boolean isVideoFormat(MediaFormat format) { argument
30 return format.getString(MediaFormat.KEY_MIME).startsWith("video/");
/frameworks/av/media/libnbaio/
H A DPipe.cpp28 Pipe::Pipe(size_t maxFrames, const NBAIO_Format& format, void *buffer) : argument
29 NBAIO_Sink(format),
31 mBuffer(buffer == NULL ? malloc(mMaxFrames * Format_frameSize(format)) : buffer),
/frameworks/base/core/java/android/hardware/camera2/params/
H A DReprocessFormatsMap.java51 * The inner array always contains {@code [format, length, ...]} where ... has length elements.
64 * (missing output format length or too few output formats)
86 String.format("Input %x had no output format length listed", inputFormat));
101 String.format(
121 * <p>Use this input format to look up the available output formats with {@link #getOutputs}.
134 final int format = mEntry[i];
141 String.format("Input %x had no output format length listed", format));
178 getOutputs(final int format) argument
[all...]
/frameworks/base/core/java/android/nfc/tech/
H A DNdefFormatable.java31 * Provide access to NDEF format operations on a {@link Tag}.
36 * class for tags for which it can format to NDEF.
93 public void format(NdefMessage firstMessage) throws IOException, FormatException { method in class:NdefFormatable
94 format(firstMessage, false);
116 format(firstMessage, true);
119 /*package*/ void format(NdefMessage firstMessage, boolean makeReadOnly) throws IOException, method in class:NdefFormatable
138 // Now check and see if the format worked
/frameworks/base/core/java/com/android/internal/view/
H A DRootViewSurfaceTaker.java25 void setSurfaceFormat(int format); argument
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSimpleFrameManager.java37 public Frame newFrame(FrameFormat format) { argument
38 return createNewFrame(format);
42 public Frame newBoundFrame(FrameFormat format, int bindingType, long bindingId) { argument
44 switch(format.getTarget()) {
46 GLFrame glFrame = new GLFrame(format, this, bindingType, bindingId);
54 + FrameFormat.targetToString(format.getTarget()) + "!");
59 private Frame createNewFrame(FrameFormat format) { argument
61 switch(format.getTarget()) {
63 result = new SimpleFrame(format, this);
67 result = new NativeFrame(format, thi
[all...]
/frameworks/base/native/android/
H A Dnative_activity.cpp28 void ANativeActivity_setWindowFormat(ANativeActivity* activity, int32_t format) { argument
29 android_NativeActivity_setWindowFormat(activity, format);
/frameworks/base/tests/RenderScriptTests/Fountain_v11/src/com/android/fountain/
H A DFountainView.java52 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
53 super.surfaceChanged(holder, format, w, h);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DSimpleAppView.java39 public void surfaceChanged(SurfaceHolder holder, int format, int w, int h) { argument
40 super.surfaceChanged(holder, format, w, h);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLogAbortException.java24 public LogAbortException(String format, Object... args) { argument
25 mFormat = format;
/frameworks/native/include/android/
H A Dnative_window.h49 // The format of the buffer. One of WINDOW_FORMAT_*
50 int32_t format; member in struct:ANativeWindow_Buffer
83 * Return the current pixel format of the window surface. Returns a
89 * Change the format and size of the window buffers.
103 int32_t width, int32_t height, int32_t format);
/frameworks/native/libs/gui/
H A DGraphicBufferAlloc.cpp35 uint32_t height, PixelFormat format, uint32_t usage, status_t* error) {
37 new GraphicBuffer(width, height, format, usage));
34 createGraphicBuffer(uint32_t width, uint32_t height, PixelFormat format, uint32_t usage, status_t* error) argument
/frameworks/av/media/libstagefright/
H A DSurfaceUtils.cpp29 int width, int height, int format, int rotation, int usage) {
36 err = native_window_set_buffers_format(nativeWindow, format);
99 nativeWindow, width, height, format, rotation, finalUsage);
27 setNativeWindowSizeFormatAndUsage( ANativeWindow *nativeWindow , int width, int height, int format, int rotation, int usage) argument

Completed in 762 milliseconds

1234567891011>>