HomeSort by relevance Sort by last modified time
    Searched refs:Mode (Results 1 - 25 of 1236) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/graphics/
PorterDuff.java 22 public enum Mode {
61 Mode(int nativeInt) {
74 public static final int modeToInt(Mode mode) {
75 return mode.nativeInt;
81 public static final Mode intToMode(int val) {
84 case 0: return Mode.CLEAR;
85 case 1: return Mode.SRC;
86 case 2: return Mode.DST;
87 case 3: return Mode.SRC_OVER
    [all...]
PorterDuffXfermode.java 23 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) {
31 this.mode = mode;
32 native_instance = nativeCreateXfermode(mode.nativeInt)
    [all...]
AvoidXfermode.java 21 * opColor or, depending on the Mode, draw only on top of the opColor.
29 public enum Mode {
33 Mode(int nativeInt) {
42 * There are two modes, and each mode interprets a tolerance value.
44 * Avoid: In this mode, drawing is allowed only on destination pixels that
49 * Target: In this mode, drawing only occurs on destination pixels that
54 public AvoidXfermode(int opColor, int tolerance, Mode mode) {
  /frameworks/base/core/java/android/view/
Display.aidl 19 parcelable Display.Mode;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
mcf-mov3q.s 7 mov3q.l #-1,%d0 | Mode 0
8 mov3q.l #1,%a1 | Mode 1
9 mov3q.l #2,(%a2) | Mode 2
10 mov3q.l #3,(%a3)+ | Mode 3
11 mov3q.l #4,-(%a4) | Mode 4
12 mov3q.l #5,(1234,%a5) | Mode 5
13 mov3q.l #6,(3,%a6,%d6) | Mode 6
14 mov3q.l #7,0x1234.w | Mode 7.0
15 mov3q.l #-1,0x12345678.l | Mode 7.1
mcf-movsr.s 7 move.w %d3,%sr | Mode 0
8 move.w #-1,%sr | Mode 7.4
9 move.w %sr,%d3 | Mode 0
11 move.w %d3,%ccr | Mode 0
12 move.w #-1,%ccr | Mode 7.4
13 move.w %ccr,%d3 | Mode 0
  /external/skia/include/gpu/effects/
GrCustomXfermode.h 16 * Custom Xfer modes are used for blending when the blend mode cannot be represented using blend
20 bool IsSupportedMode(SkXfermode::Mode mode);
21 GrXPFactory* CreateXPFactory(SkXfermode::Mode mode);
GrXfermodeFragmentProcessor.h 19 SkXfermode::Mode mode);
24 SkXfermode::Mode mode);
27 to both src and dst. The outputs of a src and dst are blended using mode and the original
31 SkXfermode::Mode mode);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
reverse_bits.h 36 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);
d_gain_p.h 52 #include "mode.h"
72 enum Mode mode, /* i : AMR mode */
bits2prm.h 53 #include "mode.h"
82 enum Mode mode,
d_gain_c.h 58 #include "mode.h"
112 enum Mode mode, /* i : AMR mode */
mode.h 38 * File : mode.h
39 * Purpose : Declaration of mode type
63 enum Mode { MR475 = 0,
  /frameworks/support/design/src/android/support/design/widget/
ViewUtils.java 42 static PorterDuff.Mode parseTintMode(int value, PorterDuff.Mode defaultMode) {
45 return PorterDuff.Mode.SRC_OVER;
47 return PorterDuff.Mode.SRC_IN;
49 return PorterDuff.Mode.SRC_ATOP;
51 return PorterDuff.Mode.MULTIPLY;
53 return PorterDuff.Mode.SCREEN;
  /external/clang/utils/analyzer/
SumTimerInfo.py 34 Mode = 1
37 Mode = 1
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
50 if (("The % of reachable basic blocks" in line) and (Mode == 1)) :
53 if (("The # of times we reached the max number of steps" in line) and (Mode == 1)) :
56 if (("The maximum number of basic blocks in a function" in line) and (Mode == 1)) :
60 if (("The # of steps executed" in line) and (Mode == 1)) :
63 if (("The # of times we inlined a call" in line) and (Mode == 1))
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.h 53 #include "mode.h"
72 enum Mode mode, /* i : AMR mode */
  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
ImageViewBindingObject.java 31 private PorterDuff.Mode mTintMode = PorterDuff.Mode.DARKEN;
41 public PorterDuff.Mode getTintMode() {
48 mTintMode = PorterDuff.Mode.LIGHTEN;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
PorterDuffColorFilter_Delegate.java 22 import android.graphics.PorterDuff.Mode;
52 private final Mode mMode;
64 return "PorterDuff Color Filter is not supported for mode: " + mMode.name() + ".";
86 private PorterDuffColorFilter_Delegate(int srcColor, int mode) {
88 mMode = getCompatibleMode(getPorterDuffMode(mode));
94 // in such cases, they can usually be mapped to some other mode, which produces an approximately
96 private Mode getCompatibleMode(Mode mode) {
97 Mode m = mode
    [all...]
  /frameworks/support/compat/gingerbread/android/support/v4/view/
TintableBackgroundView.java 31 * mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
34 * mutate the drawable and apply the specified tint and tint mode.
51 * Specifies the blending mode used to apply the tint specified by
53 * drawable. The default mode is {@link PorterDuff.Mode#SRC_IN}.
55 * @param tintMode the blending mode used to apply the tint, may be
59 void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode tintMode);
62 * Return the blending mode used to apply the tint to the background
65 * @return the blending mode used to apply the tint to the backgroun
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewSampleProjectWizard.java 18 import com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectWizardState.Mode;
30 super(Mode.SAMPLE);
NewTestProjectWizard.java 18 import com.android.ide.eclipse.adt.internal.wizards.newproject.NewProjectWizardState.Mode;
30 super(Mode.TEST);
  /external/eigen/bench/
basicbenchmark.h 7 template<int Mode, typename MatrixType>
10 template<int Mode, typename MatrixType>
15 if (Mode==LazyEval)
21 else if (Mode==OmpEval)
37 template<int Mode, typename MatrixType>
40 template<int Mode, typename MatrixType>
56 benchBasic_loop<Mode>(I, m, iterations);
  /external/eigen/demos/opengl/
trackball.h 21 enum Mode {Around, Local};
25 void start(Mode m = Around) { mMode = m; mLastPointOk = false; }
37 Mode mMode;
  /external/libchrome/base/profiler/
scoped_tracker.cc 13 ScopedProfile::Mode g_scoped_profile_mode = ScopedProfile::DISABLED;
  /external/skia/include/client/android/
SkAvoidXfermode.h 22 enum Mode {
30 There are two modes, and each mode interprets a tolerance value.
32 Avoid: In this mode, drawing is allowed only on destination pixels that
37 Target: In this mode, drawing only occurs on destination pixels that
42 static SkAvoidXfermode* Create(SkColor opColor, U8CPU tolerance, Mode mode) {
43 return new SkAvoidXfermode(opColor, tolerance, mode);
64 SkAvoidXfermode(SkColor opColor, U8CPU tolerance, Mode mode);
71 Mode fMode
    [all...]

Completed in 3438 milliseconds

1 2 3 4 5 6 7 8 91011>>