Searched refs:mode (Results 1 - 25 of 611) sorted by relevance

1234567891011>>

/frameworks/base/graphics/java/android/graphics/
H A DPorterDuffXfermode.java23 public final PorterDuff.Mode mode; field in class:PorterDuffXfermode
26 * Create an xfermode that uses the specified porter-duff mode.
28 * @param mode The porter-duff mode that is applied
30 public PorterDuffXfermode(PorterDuff.Mode mode) { argument
31 this.mode = mode;
32 native_instance = nativeCreateXfermode(mode.nativeInt);
35 private static native long nativeCreateXfermode(int mode); argument
H A DAvoidXfermode.java40 * There are two modes, and each mode interprets a tolerance value.
42 * Avoid: In this mode, drawing is allowed only on destination pixels that
47 * Target: In this mode, drawing only occurs on destination pixels that
52 public AvoidXfermode(int opColor, int tolerance, Mode mode) { argument
56 native_instance = nativeCreate(opColor, tolerance, mode.nativeInt);
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDrawArraysIndirect.java1 // C function void glDrawArraysIndirect ( GLenum mode, const void *indirect );
3 public static native void glDrawArraysIndirect(int mode, long indirect); argument
H A DglDrawElementsIndirect.java1 // C function glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect );
3 public static native void glDrawElementsIndirect(int mode, int type, long indirect); argument
H A DglDrawArraysIndirect.cpp1 /* void glDrawArraysIndirect ( GLenum mode, const void *indirect ) */
2 static void android_glDrawArraysIndirect(JNIEnv *_env, jobject, int mode, jlong indirect) { argument
10 glDrawArraysIndirect(mode, (const void*)indirect);
H A DglDrawElementsIndirect.cpp1 /* void glDrawElementsIndirect ( GLenum mode, GLenum type, const void *indirect ) */
2 static void android_glDrawElementsIndirect(JNIEnv *_env, jobject, jint mode, jint type, jlong indirect) { argument
10 glDrawElementsIndirect(mode, type, (const void*)indirect);
H A DglDrawElementsInstanced.java1 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
4 int mode,
11 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
14 int mode,
3 glDrawElementsInstanced( int mode, int count, int type, java.nio.Buffer indices, int instanceCount ) argument
13 glDrawElementsInstanced( int mode, int count, int type, int indicesOffset, int instanceCount ) argument
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dreverse_bits.h36 Description: Adding #include "mode.h" so that it compiles and works for the
65 #include "mode.h"
105 void reverse_bits(enum Mode mode, unsigned char *pCompressedBlock);
H A Dd_gain_p.h52 #include "mode.h"
72 enum Mode mode, /* i : AMR mode */
H A Dbits2prm.h53 #include "mode.h"
82 enum Mode mode,
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dol_ltp.cpp91 mode = coder mode (Mode)
133 enum Mode mode, // i : coder mode
143 if (sub ((Word16)mode, (Word16)MR102) != 0 )
149 if (sub ((Word16)mode, (Word16)MR475) == 0 || sub ((Word16)mode, (Word16)MR515) == 0 )
151 *T_op = Pitch_ol(vadSt, mode, wsp, PIT_MIN, PIT_MAX, L_FRAME, idx, dtx);
155 if ( sub ((Word16)mode, (Word16)MR795) <= 0 )
157 *T_op = Pitch_ol(vadSt, mode, ws
201 ol_ltp( pitchOLWghtState *st, vadState *vadSt, enum Mode mode, Word16 wsp[], Word16 *T_op, Word16 old_lags[], Word16 ol_gain_flg[], Word16 idx, Flag dtx, Flag *pOverflow ) argument
[all...]
H A Dets_to_if2.h66 #include "mode.h"
108 void ets_to_if2(enum Frame_Type_3GPP mode,
H A Dprm2bits.h53 #include "mode.h"
72 enum Mode mode, /* i : AMR mode */
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dd_gain_p.cpp58 mode -- enumerated type -- AMR mode
125 #include "mode.h"
177 enum Mode mode, /* i : AMR mode */
185 if (mode == MR122)
176 d_gain_pitch( enum Mode mode, Word16 index ) argument
/frameworks/support/v4/gingerbread/android/support/v4/view/
H A DViewCompatGingerbread.java26 public static void setOverScrollMode(View v, int mode) { argument
27 v.setOverScrollMode(mode);
/frameworks/support/v4/jellybean-mr2/android/support/v4/view/
H A DViewGroupCompatJellybeanMR2.java27 public static void setLayoutMode(ViewGroup group, int mode) { argument
28 group.setLayoutMode(mode);
/frameworks/support/v4/kitkat/android/support/v4/view/
H A DViewCompatKitKat.java29 public static void setAccessibilityLiveRegion(View view, int mode) { argument
30 view.setAccessibilityLiveRegion(mode);
/frameworks/base/media/java/android/media/
H A DAudioGainConfig.java35 AudioGainConfig(int index, AudioGain gain, int mode, int channelMask, argument
39 mMode = mode;
57 public int mode() { method in class:AudioGainConfig
78 * Ramp duration in milliseconds. N/A if mode() does not
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dbits2prm.cpp52 #include "mode.h"
189 mode = AMR mode of type enum Mode
226 enum Mode mode, // i : AMR mode
233 for (i = 0; i < prmno[mode]; i++)
235 prm[i] = Bin2int (bitno[mode][i], bits);
236 bits += bitno[mode][i];
270 enum Mode mode, /* i : AMR mode */
269 Bits2prm( enum Mode mode, Word16 bits[], Word16 prm[] ) argument
[all...]
/frameworks/base/libs/hwui/
H A DTreeInfo.h58 explicit TreeInfo(TraversalMode mode, RenderState& renderState) argument
59 : mode(mode)
60 , prepareTextures(mode == MODE_FULL)
69 explicit TreeInfo(TraversalMode mode, const TreeInfo& clone) argument
70 : mode(mode)
71 , prepareTextures(mode == MODE_FULL)
80 const TraversalMode mode; member in class:android::uirenderer::TreeInfo
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityModel.java80 SecurityMode mode = SecurityMode.None;
82 mode = SecurityMode.SimPin;
85 mode = SecurityMode.SimPuk;
91 mode = mLockPatternUtils.isLockPasswordEnabled() ?
97 mode = mLockPatternUtils.isLockPasswordEnabled() ?
104 mode = mLockPatternUtils.isPermanentlyLocked() ?
113 return mode;
119 * returns @param mode.
121 * @param mode the mode w
124 getAlternateFor(SecurityMode mode) argument
140 getBackupSecurityMode(SecurityMode mode) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIUiModeManager.aidl25 * Enables the car mode. Only the system can do this.
31 * Disables the car mode.
36 * Return the current running mode.
41 * Sets the night mode.
42 * The mode can be one of:
43 * 1 - notnight mode
44 * 2 - night mode
45 * 3 - automatic mode switching
47 void setNightMode(int mode);
50 * Gets the currently configured night mode
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DIParcelFileDescriptorFactory.aidl25 ParcelFileDescriptor open(String name, int mode);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DIWifiP2pManager.aidl30 void setMiracastMode(int mode);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarTransitions.java59 private float getNonBatteryClockAlphaFor(int mode) { argument
60 return mode == MODE_LIGHTS_OUT ? ICON_ALPHA_WHEN_LIGHTS_OUT_NON_BATTERY_CLOCK
61 : !isOpaque(mode) ? ICON_ALPHA_WHEN_NOT_OPAQUE
65 private float getBatteryClockAlpha(int mode) { argument
66 return mode == MODE_LIGHTS_OUT ? ICON_ALPHA_WHEN_LIGHTS_OUT_BATTERY_CLOCK
67 : getNonBatteryClockAlphaFor(mode);
70 private boolean isOpaque(int mode) { argument
71 return !(mode == MODE_SEMI_TRANSPARENT || mode == MODE_TRANSLUCENT
72 || mode
81 applyMode(int mode, boolean animate) argument
[all...]

Completed in 1041 milliseconds

1234567891011>>