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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
AvoidXfermode_ModeTest.java 19 import android.graphics.AvoidXfermode.Mode;
25 assertEquals(Mode.AVOID, Mode.valueOf("AVOID"));
26 assertEquals(Mode.TARGET, Mode.valueOf("TARGET"));
30 Mode[] mode = Mode.values(); local
32 assertEquals(2, mode.length);
33 assertEquals(Mode.AVOID, mode[0])
    [all...]
  /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,
  /external/chromium_org/third_party/skia/include/effects/
SkPorterDuff.h 16 /** DEPRECATED - use SkXfermode::Mode instead
28 enum Mode {
53 /** Return an SkXfermode object for the specified mode.
55 static SkXfermode* CreateXfermode(Mode mode);
58 porter-duff transfer mode.
60 static SkXfermodeProc GetXfermodeProc(Mode mode);
63 porter-duff transfer mode and srcColor to a 16bit device color. Note,
64 if the mode+srcColor might return a non-opaque color, then there is no
    [all...]
  /external/skia/include/effects/
SkPorterDuff.h 16 /** DEPRECATED - use SkXfermode::Mode instead
28 enum Mode {
53 /** Return an SkXfermode object for the specified mode.
55 static SkXfermode* CreateXfermode(Mode mode);
58 porter-duff transfer mode.
60 static SkXfermodeProc GetXfermodeProc(Mode mode);
63 porter-duff transfer mode and srcColor to a 16bit device color. Note,
64 if the mode+srcColor might return a non-opaque color, then there is no
    [all...]
  /external/llvm/lib/Target/
TargetSubtargetInfo.cpp 31 AntiDepBreakMode& Mode,
33 Mode = ANTIDEP_NONE;
  /frameworks/base/graphics/java/android/graphics/
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.
27 public enum Mode {
31 Mode(int nativeInt) {
40 * 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) {
56 native_instance = nativeCreate(opColor, tolerance, mode.nativeInt);
PorterDuff.java 22 public enum Mode {
61 Mode(int nativeInt) {
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/mesh/
VirtualIndexBuffer.java 3 import com.jme3.scene.Mesh.Mode;
8 * based on a specific Mesh {@link Mode}.
9 * The generated indices are as if the mesh is in the given mode
15 * <li>{@link Mode#Triangles}: 0, 1, 2 | 3, 4, 5 | 6, 7, 8 | ...</li>
16 * <li>{@link Mode#TriangleStrip}: 0, 1, 2 | 2, 1, 3 | 2, 3, 4 | ...</li>
17 * <li>{@link Mode#TriangleFan}: 0, 1, 2 | 0, 2, 3 | 0, 3, 4 | ...</li>
26 protected Mode meshMode;
28 public VirtualIndexBuffer(int numVerts, Mode meshMode){
60 if (meshMode == Mode.Triangles || meshMode == Mode.Lines || meshMode == Mode.Points)
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/image_editor/
image_adjust.js 11 * @extends ImageEditor.Mode
13 ImageEditor.Mode.Adjust = function() {
14 ImageEditor.Mode.apply(this, arguments);
20 ImageEditor.Mode.Adjust.prototype = {__proto__: ImageEditor.Mode.prototype};
23 ImageEditor.Mode.Adjust.prototype.getCommand = function() {
30 ImageEditor.Mode.Adjust.prototype.cleanUpUI = function() {
31 ImageEditor.Mode.prototype.cleanUpUI.apply(this, arguments);
38 ImageEditor.Mode.Adjust.prototype.hidePreview = function() {
48 ImageEditor.Mode.Adjust.prototype.cleanUpCaches = function()
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebInbandTextTrack.h 50 enum Mode {
61 virtual void setMode(Mode) = 0;
62 virtual Mode mode() const = 0;
  /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/native/services/surfaceflinger/Effects/
Daltonizer.h 35 enum Mode {
44 void setMode(Mode mode);
53 Mode mMode;
  /external/chromium_org/chrome/browser/ui/extensions/
app_metro_infobar_delegate_win.h 16 // infobar offering to relaunch the browser in metro mode, and then relaunching
17 // in Desktop mode if confirmed.
20 enum Mode {
26 // activates Metro mode.
28 Mode mode,
33 Mode mode,
46 Mode mode_;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.h 53 #include "mode.h"
72 enum Mode mode, /* i : AMR mode */
  /external/chromium_org/third_party/skia/src/effects/
SkPorterDuff.cpp 17 #define MAKE_PAIR(mode) { SkPorterDuff::k##mode##_Mode, SkXfermode::k##mode##_Mode }
19 // this table must be in SkPorterDuff::Mode order, so it can be indexed directly
20 // with a porterduff mode.
22 SkPorterDuff::Mode fPD;
23 SkXfermode::Mode fXF;
47 static bool find_pdmode(SkXfermode::Mode src, SkPorterDuff::Mode* dst) {
60 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode)
    [all...]
  /external/skia/src/effects/
SkPorterDuff.cpp 17 #define MAKE_PAIR(mode) { SkPorterDuff::k##mode##_Mode, SkXfermode::k##mode##_Mode }
19 // this table must be in SkPorterDuff::Mode order, so it can be indexed directly
20 // with a porterduff mode.
22 SkPorterDuff::Mode fPD;
23 SkXfermode::Mode fXF;
47 static bool find_pdmode(SkXfermode::Mode src, SkPorterDuff::Mode* dst) {
60 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode)
    [all...]
  /external/chromium_org/content/public/common/
file_chooser_params.h 21 enum Mode {
36 Mode mode; member in struct:content::FileChooserParams
39 // which will be either "Open" or "Save" depending on the mode.
  /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/chromium_org/content/renderer/media/
webinbandtexttrack_impl.h 24 virtual void setMode(Mode mode);
25 virtual Mode mode() const;
38 Mode mode_;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
Pagination.h 34 enum Mode { Unpaginated, LeftToRightPaginated, RightToLeftPaginated, TopToBottomPaginated, BottomToTopPaginated };
37 : mode(Unpaginated)
46 return mode == other.mode && behavesLikeColumns == other.behavesLikeColumns && pageLength == other.pageLength && gap == other.gap;
51 return mode != other.mode || behavesLikeColumns != other.behavesLikeColumns || pageLength != other.pageLength || gap != other.gap;
54 Mode mode; member in struct:WebCore::Pagination
59 static void setStylesForPaginationMode(Mode, RenderStyle*);

Completed in 537 milliseconds

1 2 3 4 5 6 7 8 91011>>