HomeSort by relevance Sort by last modified time
    Searched refs:Mode (Results 426 - 450 of 1175) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/audio_processing/
gain_control_impl.cc 23 int16_t MapSetting(GainControl::Mode mode) {
24 switch (mode) {
268 int GainControlImpl::set_mode(Mode mode) {
271 if (MapSetting(mode) == -1) {
275 mode_ = mode;
279 GainControl::Mode GainControlImpl::mode() const { function in class:webrtc::GainControlImpl
  /external/webrtc/webrtc/modules/audio_processing/include/
audio_processing.h 48 // Use to enable the extended filter mode in the AEC, along with robustness
724 // Sets echo control appropriate for the audio routing |mode| on the device.
726 virtual int set_routing_mode(RoutingMode mode) = 0;
760 // the analog mode, prescribing an analog gain to be applied at the audio HAL.
768 // When an analog mode is set, this must be called prior to |ProcessStream()|
773 // When an analog mode is set, this should be called after |ProcessStream()|
778 enum Mode {
779 // Adaptive mode intended for use if an analog volume control is available
788 // Adaptive mode intended for situations in which an analog volume control
790 // mode, but with scaling instead applied in the digital domain. As wit
    [all...]
  /frameworks/base/core/java/android/widget/
CheckedTextView.java 58 private PorterDuff.Mode mCheckMarkTintMode = null;
210 * current tint mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
214 * tint mode using
243 * Specifies the blending mode used to apply the tint specified by
245 * drawable. The default mode is {@link PorterDuff.Mode#SRC_IN}.
247 * @param tintMode the blending mode used to apply the tint, may be
251 * @see Drawable#setTintMode(PorterDuff.Mode)
253 public void setCheckMarkTintMode(@Nullable PorterDuff.Mode tintMode)
    [all...]
CompoundButton.java 60 private PorterDuff.Mode mButtonTintMode = null;
270 * mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
274 * mode using
301 * Specifies the blending mode used to apply the tint specified by
303 * default mode is {@link PorterDuff.Mode#SRC_IN}.
305 * @param tintMode the blending mode used to apply the tint, may be
309 * @see Drawable#setTintMode(PorterDuff.Mode)
311 public void setButtonTintMode(@Nullable PorterDuff.Mode tintMode)
    [all...]
ProgressBar.java 77 * A progress bar can also be made indeterminate. In indeterminate mode, the
78 * progress bar shows a cyclic animation without an indication of progress. This mode is used by
582 * <p>Indicate whether this progress bar is in indeterminate mode.</p>
584 * @return true if the progress bar is in indeterminate mode
592 * <p>Change the indeterminate mode for this progress bar. In indeterminate
593 * mode, the progress is ignored and the progress bar shows an infinite
596 * If this progress bar's style only supports indeterminate mode (such as the circular
599 * @param indeterminate true to enable the indeterminate mode
633 * indeterminate mode.</p>
645 * Define the drawable used to draw the progress bar in indeterminate mode
    [all...]
  /cts/tests/tests/display/src/android/display/cts/
DisplayTest.java 69 // To test display mode switches.
262 * Tests that the mode-related attributes and methods work as expected.
267 Display.Mode mode = display.getMode();
268 assertEquals(display.getSupportedModes()[0], mode);
269 assertEquals(SECONDARY_DISPLAY_WIDTH, mode.getPhysicalWidth());
270 assertEquals(SECONDARY_DISPLAY_HEIGHT, mode.getPhysicalHeight());
271 assertEquals(display.getRefreshRate(), mode.getRefreshRate());
275 * Tests that mode switch requests are correctly executed.
280 Display.Mode[] modes = display.getSupportedModes()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AlphaBitmap.java 53 p.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC));
  /device/asus/fugu/libaudio/
alsa_utils.cpp 68 "Audio Mode Count",
69 "Audio Mode To Query",
70 "Query Mode : Format",
71 "Query Mode : Max Ch Count",
72 "Query Mode : Sample Rate Mask",
73 "Query Mode : PCM Bits/Sample Mask",
74 "Query Mode : Max Compressed Bitrate"
153 Mode m;
155 // Pick the mode we want to fetch info for.
163 ALOGI("Got mode %d from ALSA driver.", m.fmt)
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 10 // This file contains the ARM addressing mode implementation stuff.
25 /// ARM_AM - ARM Addressing Mode Stuff
74 static inline const char *getAMSubModeStr(AMSubMode Mode) {
75 switch (Mode) {
76 default: llvm_unreachable("Unknown addressing sub-mode!");
99 // Addressing Mode #1: shift_operand with registers
102 // This 'addressing mode' is used for arithmetic instructions. It can
390 // Addressing Mode #2
401 // fourth operand 16-17 encodes the index mode.
403 // If this addressing mode is a frame index (before prolog/epilog insertio
    [all...]
  /external/mesa3d/src/mesa/main/
api_validate.c 206 * Is 'mode' a valid value for glBegin(), glDrawArrays(), glDrawElements(),
211 _mesa_valid_prim_mode(struct gl_context *ctx, GLenum mode, const char *name)
215 switch (mode) {
243 _mesa_error(ctx, GL_INVALID_ENUM, "%s(mode=%x)", name, mode);
252 * * a geometry shader is not active and <mode> does not match the
265 switch (mode) {
267 pass = ctx->TransformFeedback.Mode == GL_POINTS;
272 pass = ctx->TransformFeedback.Mode == GL_LINES;
275 pass = ctx->TransformFeedback.Mode == GL_TRIANGLES
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 124 GLfloat diffuseColor[4], specularColor[4]; /* for RGB mode only */
279 switch (texUnit->GenS.Mode) {
302 switch (texUnit->GenT.Mode) {
325 switch (texUnit->GenR.Mode) {
345 switch (texUnit->GenQ.Mode) {
  /external/skia/bench/
Xfer4fBench.cpp 17 // Benchmark that draws non-AA rects or AA text with an SkXfermode::Mode.
20 XferD32Bench(SkXfermode::Mode mode, const char name[], bool doN, uint32_t flags)
24 fXfer.reset(SkXfermode::Create(mode));
  /external/skia/include/gpu/
GrPaint.h 64 void setPorterDuffXPFactory(SkXfermode::Mode mode) {
65 fXPFactory.reset(GrPorterDuffXPFactory::Create(mode));
  /external/skia/src/gpu/effects/
GrMatrixConvolutionEffect.cpp 146 GrTextureDomain::Mode tileMode,
191 GrTextureDomain::Mode tileMode,
245 GrTextureDomain::Mode tileMode =
246 static_cast<GrTextureDomain::Mode>(d->fRandom->nextRangeU(0, 2));
  /external/skia/tests/
GpuColorFilterTest.cpp 43 SkXfermode::Mode filterMode; // "in mode [mode]"
77 // A color filtered with a color in mode Src, produces the filter color.
  /external/v8/src/mips/
assembler-mips-inl.h 56 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
183 Isolate* isolate, Address pc, Address target, RelocInfo::Mode mode) {
184 if (mode == RelocInfo::INTERNAL_REFERENCE_ENCODED) {
188 DCHECK(mode == RelocInfo::INTERNAL_REFERENCE);
374 RelocInfo::Mode mode = rmode(); local
375 if (mode == RelocInfo::EMBEDDED_OBJECT) {
377 } else if (RelocInfo::IsCodeTarget(mode)) {
379 } else if (mode == RelocInfo::CELL)
399 RelocInfo::Mode mode = rmode(); local
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 56 Operand::Operand(int64_t immediate, RelocInfo::Mode rmode) {
182 Isolate* isolate, Address pc, Address target, RelocInfo::Mode mode) {
183 if (mode == RelocInfo::INTERNAL_REFERENCE_ENCODED) {
187 DCHECK(mode == RelocInfo::INTERNAL_REFERENCE);
375 RelocInfo::Mode mode = rmode(); local
376 if (mode == RelocInfo::EMBEDDED_OBJECT) {
378 } else if (RelocInfo::IsCodeTarget(mode)) {
380 } else if (mode == RelocInfo::CELL)
400 RelocInfo::Mode mode = rmode(); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cbsearch.cpp 63 mode -- enum Mode -- coder mode
143 #include "mode.h"
196 enum Mode mode, /* i : coder mode */
209 if ((mode == MR475) || (mode == MR515))
226 else if (mode == MR59
    [all...]
cl_ltp.cpp 442 mode = codec mode value, of type enum Mode
496 enum Mode mode, // i : coder mode
524 mode, T_op, exc, xn, h1,
544 *gain_pit = G_pitch(mode, xn, y1, g_coeff, L_SUBFR);
556 // special for the MR475, MR515 mode; limit the gain to 0.85 to
558 if ((sub (mode, MR475) == 0) || (sub (mode, MR515) == 0))
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
datapart_encode.cpp 30 /* Purpose : Encode a frame of MPEG4 bitstream in datapartitioning mode. */
204 /* Purpose : Encode a slice of MPEG4 bitstream in DataPar mode and save */
216 UChar mode, *Mode = video->headerInfo.Mode; local
362 mode = Mode[mbnum];
420 Mode[mbnum] = mode;
433 mbnum++; /* has to increment before SCD, to preserve Mode[mbnum] *
    [all...]
vop.cpp 47 UChar *Mode = video->headerInfo.Mode;
52 /* Initialize mode */
58 M4VENC_MEMSET(Mode, MODE_INTRA, sizeof(UChar)*currVol->nTotalMB);
61 M4VENC_MEMSET(Mode, MODE_INTER, sizeof(UChar)*currVol->nTotalMB);
64 /*M4VENC_MEMSET(Mode, MODE_INTER_B,sizeof(UChar)*nTotalMB);*/
159 status = EncodeFrameDataPartMode(video); /* Encode Data Partitioning Mode VOP */
163 status = EncodeFrameCombinedMode(video); /* Encode Combined Mode VOP */
167 status = EncodeFrameCombinedMode(video); /* Encode Combined Mode VOP */
235 status = EncodeSliceDataPartMode(video); /* Encode Data Partitioning Mode VOP *
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ImageUtils.java 77 mTempCompactBitmapCanvas.drawColor(0, PorterDuff.Mode.SRC); // select all, erase
  /frameworks/base/graphics/java/android/graphics/drawable/
ShapeDrawable.java 29 import android.graphics.PorterDuff.Mode;
295 public void setTintMode(PorterDuff.Mode tintMode) {
457 state.mTintMode = Drawable.parseTintMode(tintMode, Mode.SRC_IN);
534 Mode mTintMode = DEFAULT_TINT_MODE;
  /frameworks/base/libs/hwui/renderstate/
RenderState.h 70 void invokeFunctor(Functor* functor, DrawGlInfo::Mode mode, DrawGlInfo* info);
  /frameworks/base/media/jni/
android_media_AmrInputStream.cpp 81 (Mode) MR122,

Completed in 2154 milliseconds

<<11121314151617181920>>