Searched refs:mode (Results 201 - 225 of 1008) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcl_ltp.h70 #include "mode.h"
136 enum Mode mode, /* i : coder mode */
H A Dgain_q.h78 #include "mode.h"
150 enum Mode mode, /* i : coder mode */
H A Dqua_gain.cpp70 #include "mode.h"
122 mode -- enum Mode -- AMR mode
194 enum Mode mode, /* i : AMR mode */
233 if (mode == MR102 || mode == MR74 || mode == MR67)
193 Qua_gain( enum Mode mode, Word16 exp_gcode0, Word16 frac_gcode0, Word16 frac_coeff[], Word16 exp_coeff[], Word16 gp_limit, Word16 *gain_pit, Word16 *gain_cod, Word16 *qua_ener_MR122, Word16 *qua_ener, Flag *pOverflow ) argument
H A Dlpc.cpp65 #include "mode.h"
397 mode = coder mode of type enum Mode
437 if ( sub ((Word16)mode, (Word16)MR122) == 0)
489 enum Mode mode, /* i : coder mode */
501 if (mode == MR122)
487 lpc( lpcState *st, enum Mode mode, Word16 x[], Word16 x_12k2[], Word16 a[], Flag *pOverflow ) argument
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dbits.h81 int PackBits(Word16 prms[], Word16 coding_mode, Word16 mode, Coder_State *st);
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DNuMediaExtractor.h77 MediaSource::ReadOptions::SeekMode mode =
83 MediaSource::ReadOptions::SeekMode mode =
143 MediaSource::ReadOptions::SeekMode mode =
148 MediaSource::ReadOptions::SeekMode mode =
/frameworks/base/libs/androidfw/
H A DAsset.cpp132 * We can use "mode" to decide how we want to go about it.
134 /*static*/ Asset* Asset::createFromFile(const char* fileName, AccessMode mode) argument
179 pAsset->mAccessMode = mode;
191 AccessMode mode)
239 pAsset->mAccessMode = mode;
249 size_t length, AccessMode mode)
259 pAsset->mAccessMode = mode;
268 AccessMode mode)
279 pAsset->mAccessMode = mode;
288 AccessMode mode)
190 createFromCompressedFile(const char* fileName, AccessMode mode) argument
287 createFromUncompressedMap(FileMap* dataMap, AccessMode mode) argument
302 createFromUncompressedMap(std::unique_ptr<FileMap> dataMap, AccessMode mode) argument
321 createFromCompressedMap(FileMap* dataMap, size_t uncompressedLen, AccessMode mode) argument
336 createFromCompressedMap(std::unique_ptr<FileMap> dataMap, size_t uncompressedLen, AccessMode mode) argument
[all...]
/frameworks/base/libs/hwui/
H A DOpDumper.cpp40 << " mode=" << (int)op.localClip->mode;
H A DProgramCache.h54 void generateBlend(String8& shader, const char* name, SkBlendMode mode);
/frameworks/base/libs/hwui/pipeline/skia/
H A DSkiaVulkanPipeline.cpp118 sk_sp<SkColorFilter> colorFilter, int alpha, SkBlendMode mode,
120 return new VkLayer(renderState, layerWidth, layerHeight, colorFilter, alpha, mode, blend);
139 // TODO: handle color mode
156 DrawGlInfo::Mode mode = DrawGlInfo::kModeProcessNoContext; local
157 (*functor)(mode, nullptr);
117 createLayer(RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight, sk_sp<SkColorFilter> colorFilter, int alpha, SkBlendMode mode, bool blend) argument
/frameworks/base/libs/hwui/renderstate/
H A DBlend.h40 static void getFactors(SkBlendMode mode, ModeOrderSwap modeUsage, GLenum* outSrc,
/frameworks/base/native/webview/plat_support/
H A Ddraw_gl_functor.cpp66 aw_info.mode = AwDrawGLInfo::kModeDraw;
85 aw_info.mode = AwDrawGLInfo::kModeProcess;
88 aw_info.mode = AwDrawGLInfo::kModeProcessNoContext;
91 aw_info.mode = AwDrawGLInfo::kModeSync;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothAdapter.java151 public void setScanMode(int mode) { argument
152 mAdapter.setScanMode(mode);
155 public boolean setScanMode(int mode, int duration) { argument
156 return mAdapter.setScanMode(mode, duration);
/frameworks/base/telephony/java/android/telephony/ims/aidl/
H A DIImsCallSessionListener.aidl89 void callSessionUssdMessageReceived(int mode, String ussdMessage);
101 * Notifies the TTY mode change by remote party.
102 * @param mode one of the following:
108 void callSessionTtyModeReceived(int mode);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java33 /** Access mode None: Frame data will not be accessed at all. */
35 /** Access mode Bytes: Frame data will be accessed as a ByteBuffer. */
37 /** Access mode Texture: Frame data will be accessed as a TextureSource. */
39 /** Access mode RenderTarget: Frame data will be accessed as a RenderTarget. */
41 /** Access mode Object: Frame data will be accessed as a generic Object. */
43 /** Access mode Bitmap: Frame data will be accessed as a Bitmap. */
45 /** Access mode Allocation: Frame data will be accessed as a RenderScript Allocation. */
84 public Object lockData(int mode, int accessFormat) { argument
85 return lockBacking(mode, accessFormat).lock(accessFormat);
88 public Backing lockBacking(int mode, in argument
186 fetchBacking(int mode, int access) argument
201 getBacking(int mode, int access) argument
215 attachNewBacking(int mode, int access) argument
224 createBacking(int mode, int access) argument
296 lock(Backing backingToLock, int mode) argument
[all...]
/frameworks/base/tools/aapt2/io/
H A DFileStream.cpp42 int mode = O_RDONLY | O_CLOEXEC | O_BINARY; local
43 fd_.reset(TEMP_FAILURE_RETRY(::android::base::utf8::open(path.c_str(), mode)));
113 int mode = O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC | O_BINARY; local
114 owned_fd_.reset(TEMP_FAILURE_RETRY(::android::base::utf8::open(path.c_str(), mode, 0666)));
/frameworks/opt/net/voip/src/jni/rtp/
H A DAmrCodec.cpp75 // Handle mode-set and octet-align.
76 const char *modes = strcasestr(fmtp, "mode-set=");
82 int mode = c - '0'; local
83 if (mode > mMode) {
84 mMode = mode;
86 mModeSet |= 1 << mode;
95 // TODO: handle mode-change-*.
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DMainActivity.java153 byte mode = mPreviewView.getMode();
154 mSpeedButton.setElevation(mode == CameraView.MODE_SPEED ? 20 : 0);
155 mFocusButton.setElevation(mode == CameraView.MODE_FOCUS ? 20 : 0);
156 mISOButton.setElevation(mode == CameraView.MODE_ISO ? 20 : 0);
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/
H A DAppCompatTintableViewActions.java67 * Sets the passed mode as the background tint mode on a <code>View</code>.
69 public static ViewAction setBackgroundTintMode(final PorterDuff.Mode mode) { argument
78 return "set background tint mode";
85 ViewCompat.setBackgroundTintMode(view, mode);
119 * Sets the passed mode as the image source tint mode on a <code>View</code>.
121 public static ViewAction setImageSourceTintMode(final PorterDuff.Mode mode) { argument
130 return "set image source tint mode";
137 ImageViewCompat.setImageTintMode((ImageView) view, mode);
[all...]
H A DBaseTestActivity.java191 public void onSupportActionModeStarted(@NonNull ActionMode mode) { argument
193 mAppCompatCallback.onSupportActionModeStarted(mode);
198 public void onSupportActionModeFinished(@NonNull ActionMode mode) { argument
200 mAppCompatCallback.onSupportActionModeFinished(mode);
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/app/
H A DAppCompatDelegate.java93 * Mode which means to not use night mode, and therefore prefer {@code notnight} qualified
101 * Mode which means to always use night mode, and therefore prefer {@code night} qualified
109 * Mode which means to use night mode when it is determined that it is night or not.
121 * Mode which uses the system's night mode setting to determine if it is night or not.
160 * <p>This mode is especially useful with {@code View.SYSTEM_UI_FLAG_FULLSCREEN}, which allows
162 * When an ActionBar is in this mode it will adjust the insets provided to
172 * If overlay is enabled, the action mode UI will be allowed to cover existing window content.
346 * Start an action mode.
348 * @param callback Callback that will manage lifecycle events for this context mode
416 * <p>You can override the night mode usin
439 setLocalNightMode(@ightMode int mode) argument
454 setDefaultNightMode(@ightMode int mode) argument
[all...]
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/
H A DWindowCallbackWrapper.java165 public void onActionModeStarted(ActionMode mode) { argument
166 mWrapped.onActionModeStarted(mode);
170 public void onActionModeFinished(ActionMode mode) { argument
171 mWrapped.onActionModeFinished(mode);
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp398 int16 mode = ((inputPtr[0] >> 3) & 0x0f); local
400 size_t frameSize = WmfDecBytesPerFrame[mode] + 1;
445 int16 mode = ((inputPtr[0] >> 3) & 0x0f); local
447 if (mode >= 10 && mode <= 13) {
449 mode);
457 size_t frameSize = getFrameSize(mode);
467 if (mode >= 9) {
471 } else if (mode < 9) {
477 &frameType, &mode, local
[all...]
/frameworks/av/media/libaudioclient/tests/
H A Dtest_create_utils.cpp79 mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; local
103 outputFileFd = open(*argv, O_WRONLY|O_CREAT, mode);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDrm.h99 CryptoPlugin::Mode mode; member in struct:android::NuPlayerDrm::CryptoInfo
108 CryptoPlugin::Mode mode,

Completed in 461 milliseconds

1234567891011>>