Searched refs:mode (Results 51 - 75 of 4497) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowViewMeasureSpec.java30 public static int makeMeasureSpec (int size, int mode) { argument
31 return size + mode;
36 int mode = getMode(measureSpec);
41 if (mode == View.MeasureSpec.UNSPECIFIED)
43 else if (mode == View.MeasureSpec.EXACTLY)
45 else if (mode == View.MeasureSpec.AT_MOST)
48 sb.append(mode).append(" ");
/external/chromium_org/third_party/skia/src/effects/
H A DSkPorterDuff.cpp17 #define MAKE_PAIR(mode) { SkPorterDuff::k##mode##_Mode, SkXfermode::k##mode##_Mode }
20 // with a porterduff mode.
60 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode) { argument
61 SkASSERT((unsigned)mode < SkPorterDuff::kModeCount);
62 const Pair& pair = gPairs[mode];
63 SkASSERT(pair.fPD == mode);
67 SkXfermode* SkPorterDuff::CreateXfermode(SkPorterDuff::Mode mode) { argument
68 const Pair& pair = gPairs[mode];
81 GetXfermodeProc(Mode mode) argument
85 GetXfermodeProc16(Mode mode, SkColor srcColor) argument
[all...]
/external/lzma/xz-embedded/
H A Dxz_private.h53 /* If no specific decoding mode is requested, enable support for all modes. */
62 * The DEC_IS_foo(mode) macros are used in "if" statements. If only some
67 # define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE)
69 # define DEC_IS_SINGLE(mode) (false)
73 # define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC)
75 # define DEC_IS_PREALLOC(mode) (false)
79 # define DEC_IS_DYNALLOC(mode) ((mode)
[all...]
/external/skia/src/effects/
H A DSkPorterDuff.cpp17 #define MAKE_PAIR(mode) { SkPorterDuff::k##mode##_Mode, SkXfermode::k##mode##_Mode }
20 // with a porterduff mode.
60 SkXfermode::Mode SkPorterDuff::ToXfermodeMode(Mode mode) { argument
61 SkASSERT((unsigned)mode < SkPorterDuff::kModeCount);
62 const Pair& pair = gPairs[mode];
63 SkASSERT(pair.fPD == mode);
67 SkXfermode* SkPorterDuff::CreateXfermode(SkPorterDuff::Mode mode) { argument
68 const Pair& pair = gPairs[mode];
81 GetXfermodeProc(Mode mode) argument
85 GetXfermodeProc16(Mode mode, SkColor srcColor) argument
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONWriter.java69 * The current mode. Values:
76 protected char mode; field in class:JSONWriter
98 this.mode = 'i';
114 if (this.mode == 'o' || this.mode == 'a') {
116 if (this.comma && this.mode == 'a') {
123 if (this.mode == 'o') {
124 this.mode = 'k';
142 if (this.mode == 'i' || this.mode
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dant.cmd21 parse arg mode envarg '::' antarg
23 if mode\='.' & mode\='..' & mode\='/' then do
24 envarg = mode envarg
25 mode = ''
39 if mode = '' then mode = _getenv_('ANT_MODE' '..')
40 if mode \= '/' then do
43 if mode
[all...]
/external/chromium_org/sdch/open-vcdiff/src/
H A Dinstruction_map.h37 // inst (also known as instruction type), size, and mode and arriving at
47 // max_mode is the maximum value for the mode of a COPY instruction.
54 // Finds an opcode that has the given inst, size, and mode for its first
65 // of expressing all combinations of inst and mode with size=0.
69 unsigned char mode) const {
70 return first_instruction_map_.Lookup(inst, size, mode);
75 // the first opcode, and has the given inst, size, and mode for its second
85 unsigned char mode) const {
86 return second_instruction_map_.Lookup(first_opcode, inst, size, mode);
99 unsigned char mode,
97 Add(unsigned char inst, unsigned char size, unsigned char mode, unsigned char opcode) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathBuilder.cpp36 void SVGPathBuilder::moveTo(const FloatPoint& targetPoint, bool closed, PathCoordinateMode mode) argument
39 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
45 void SVGPathBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
48 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
52 void SVGPathBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
55 if (mode == RelativeCoordinates) {
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dhint.c37 _mesa_Hint( GLenum target, GLenum mode )
45 _mesa_lookup_enum_by_nr(mode));
47 if (mode != GL_NICEST && mode != GL_FASTEST && mode != GL_DONT_CARE) {
48 _mesa_error(ctx, GL_INVALID_ENUM, "glHint(mode)");
56 if (ctx->Hint.Fog == mode)
59 ctx->Hint.Fog = mode;
64 if (ctx->Hint.LineSmooth == mode)
67 ctx->Hint.LineSmooth = mode;
[all...]
H A Dcondrender.h36 _mesa_BeginConditionalRender(GLuint queryId, GLenum mode);
/external/mesa3d/src/mesa/main/
H A Dhint.c37 _mesa_Hint( GLenum target, GLenum mode )
45 _mesa_lookup_enum_by_nr(mode));
47 if (mode != GL_NICEST && mode != GL_FASTEST && mode != GL_DONT_CARE) {
48 _mesa_error(ctx, GL_INVALID_ENUM, "glHint(mode)");
56 if (ctx->Hint.Fog == mode)
59 ctx->Hint.Fog = mode;
64 if (ctx->Hint.LineSmooth == mode)
67 ctx->Hint.LineSmooth = mode;
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-header-panel/
H A Dcore-header-panel-extracted.js26 * `waterfall`: Similar to standard mode, but header is initially presented as
40 * core-header-panel[mode=cover]::shadow #mainContainer {
48 * <core-header-panel mode="cover">
55 * @attribute mode
59 mode: {value: '', reflect: true},
62 * The class used in waterfall-tall mode. Change this if the header
72 * If true, the drop-shadow is always shown no matter what mode is set to.
100 return this.mode === 'scroll' ?
117 (atTop && shadowMode[this.mode] || noShadow[this.mode]));
[all...]
/external/compiler-rt/test/tsan/
H A Duser_fopen.cc6 extern "C" FILE *__interceptor_fopen(const char *file, const char *mode);
9 extern "C" FILE *fopen(const char *file, const char *mode) { argument
13 return __interceptor_fopen(file, mode);
/external/aac/libAACenc/src/
H A Dchannel_map.h107 /* Element mode */
115 AAC_ENCODER_ERROR FDKaacEnc_DetermineEncoderMode(CHANNEL_MODE* mode,
118 AAC_ENCODER_ERROR FDKaacEnc_InitChannelMapping(CHANNEL_MODE mode,
128 ELEMENT_MODE FDKaacEnc_GetMonoStereoMode(const CHANNEL_MODE mode);
130 const CHANNEL_MODE_CONFIG_TAB* FDKaacEnc_GetChannelModeConfiguration(const CHANNEL_MODE mode);
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dabi_conversion.cc31 // Some fields in host_stat, such as st_dev, group/other bits of mode and
38 nacl_abi_mode_t mode; local
41 mode = NACL_ABI_S_IFREG;
44 mode = NACL_ABI_S_IFDIR;
47 mode = NACL_ABI_S_IFCHR;
52 mode = NACL_ABI_S_UNSUP;
55 mode |= NACL_ABI_S_IRUSR;
57 mode |= NACL_ABI_S_IWUSR;
59 mode |= NACL_ABI_S_IXUSR;
60 nacl_stat->nacl_abi_st_mode = mode;
[all...]
/external/chromium_org/ipc/
H A Dipc_channel_factory.cc14 Channel::Mode mode)
15 : handle_(handle), mode_(mode) {
38 const ChannelHandle& handle, Channel::Mode mode) {
39 return scoped_ptr<ChannelFactory>(new PlatformChannelFactory(handle, mode));
13 PlatformChannelFactory(ChannelHandle handle, Channel::Mode mode) argument
37 Create( const ChannelHandle& handle, Channel::Mode mode) argument
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_open.c54 sem_open (const char *name, int oflag, mode_t mode, unsigned int value) argument
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DANGLEInstancedArrays.idl39 void drawArraysInstancedANGLE(unsigned long mode, long first, long count, long primcount);
40 void drawElementsInstancedANGLE(unsigned long mode, long count, unsigned long type, long long offset, long primcount);
/external/chromium_org/third_party/mesa/src/scons/
H A Dfixes.py11 def new_spawnve(mode, file, args, env):
14 if mode == os.P_WAIT:
17 ret = old_spawnve(mode, file, args, env)
20 if mode == os.P_WAIT:
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_util.h41 extern GLuint brw_translate_blend_equation( GLenum mode );
/external/chromium_org/third_party/opus/src/celt/
H A Dmodes.h43 #define OVERLAP(mode) ((mode)->overlap)
47 #define FRAMESIZE(mode) ((mode)->mdctSize)
/external/chromium_org/third_party/skia/include/effects/
H A DSkPorterDuff.h51 /** Return an SkXfermode object for the specified mode.
53 static SkXfermode* CreateXfermode(Mode mode);
56 porter-duff transfer mode.
58 static SkXfermodeProc GetXfermodeProc(Mode mode);
61 porter-duff transfer mode and srcColor to a 16bit device color. Note,
62 if the mode+srcColor might return a non-opaque color, then there is not
65 static SkXfermodeProc16 GetXfermodeProc16(Mode mode, SkColor srcColor);
68 modes (via SkXfermode::Coeff), return true and if not null, set mode
69 to the corresponding porterduff mode. If it is not recognized as a one,
70 return false and ignore the mode paramete
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Ddecode.h33 int16_t mode /* (i) 0: bad packet, PLC,
/external/clang/test/Sema/
H A Dattr-mode.c8 typedef int i16_1 __attribute((mode(HI)));
13 typedef float f64 __attribute((mode(DF)));
16 typedef int invalid_1 __attribute((mode)); // expected-error{{'mode' attribute takes one argument}}
17 typedef int invalid_2 __attribute((mode())); // expected-error{{'mode' attribute takes one argument}}
18 typedef int invalid_3 __attribute((mode(II))); // expected-error{{unknown machine mode}}
19 typedef struct {int i,j,k;} invalid_4 __attribute((mode(SI))); // expected-error{{mode attribut
[all...]
/external/fio/os/windows/posix/include/
H A Ddlfcn.h6 void *dlopen(const char *file, int mode);

Completed in 949 milliseconds

1234567891011>>