Searched refs:mode (Results 376 - 400 of 4497) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DGraphicsContextAnnotator.cpp97 AnnotationModeFlags mode = paintInfo.context->annotationMode(); local
100 if (mode & AnnotateRendererName)
103 if (mode & AnnotatePaintPhase)
106 if ((mode & AnnotateElementId) && element && element->hasID())
109 if ((mode & AnnotateElementClass) && element && element->hasClass()) {
123 if ((mode & AnnotateElementTag) && element)
126 if (mode & AnnotateInspectorId) {
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dconsole.cc94 DWORD mode;
95 if (!GetConsoleMode(hIn, &mode))
99 mode = mode | ENABLE_ECHO_INPUT;
101 mode = mode & ~ENABLE_ECHO_INPUT;
104 SetConsoleMode(hIn, mode);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_split_prim.h16 unsigned mode; member in struct:util_split_prim
28 unsigned mode, unsigned start, unsigned count)
30 if (mode == PIPE_PRIM_LINE_LOOP) {
31 s->mode = PIPE_PRIM_LINE_STRIP;
34 s->mode = mode;
65 switch (s->mode) {
27 util_split_prim_init(struct util_split_prim *s, unsigned mode, unsigned start, unsigned count) argument
/external/chromium_org/third_party/skia/src/views/
H A DSkParsePaint.cpp34 SkShader::TileMode mode = SkShader::kClamp_TileMode; local
37 if ((index = dom.findList(node, "tile-mode", "clamp,repeat,mirror")) >= 0)
38 mode = (SkShader::TileMode)index;
39 return SkGradientShader::CreateLinear(pts, colors, NULL, 2, mode);
51 SkShader::TileMode mode = SkShader::kRepeat_TileMode; local
54 if ((index = dom.findList(node, "tile-mode", "clamp,repeat,mirror")) >= 0)
55 mode = (SkShader::TileMode)index;
57 return SkShader::CreateBitmapShader(bm, mode, mode);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_split_prim.h16 unsigned mode; member in struct:util_split_prim
28 unsigned mode, unsigned start, unsigned count)
30 if (mode == PIPE_PRIM_LINE_LOOP) {
31 s->mode = PIPE_PRIM_LINE_STRIP;
34 s->mode = mode;
65 switch (s->mode) {
27 util_split_prim_init(struct util_split_prim *s, unsigned mode, unsigned start, unsigned count) argument
/external/skia/src/views/
H A DSkParsePaint.cpp34 SkShader::TileMode mode = SkShader::kClamp_TileMode; local
37 if ((index = dom.findList(node, "tile-mode", "clamp,repeat,mirror")) >= 0)
38 mode = (SkShader::TileMode)index;
39 return SkGradientShader::CreateLinear(pts, colors, NULL, 2, mode);
51 SkShader::TileMode mode = SkShader::kRepeat_TileMode; local
54 if ((index = dom.findList(node, "tile-mode", "clamp,repeat,mirror")) >= 0)
55 mode = (SkShader::TileMode)index;
57 return SkShader::CreateBitmapShader(bm, mode, mode);
/external/chromium_org/crypto/
H A Dencryptor_nss.cc18 inline CK_MECHANISM_TYPE GetMechanism(Encryptor::Mode mode) { argument
19 switch (mode) {
24 // NSS doesn't support CTR encryption mode.
27 NOTREACHED() << "Unsupported mode of operation";
45 Mode mode,
48 DCHECK(CBC == mode || CTR == mode) << "Unsupported mode of operation";
51 mode_ = mode;
53 if (mode
44 Init(SymmetricKey* key, Mode mode, const base::StringPiece& iv) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dhtmlmixed.js23 mode: CodeMirror.getMode(config, "javascript")});
26 scriptTypes.push({matches: conf.matches, mode: conf.mode && CodeMirror.getMode(config, conf.mode)});
29 mode: CodeMirror.getMode(config, "text/plain")});
36 // Script block: mode to change to depends on type attribute
43 if (tp.mode) {
45 state.localMode = tp.mode;
46 state.localState = tp.mode.startState && tp.mode
[all...]
H A Dcomment.js24 var minLine = Infinity, ranges = cm.listSelections(), mode = null;
30 if (mode == null) {
31 if (cm.uncomment(from, to)) mode = "un";
32 else { cm.lineComment(from, to); mode = "line"; }
33 } else if (mode == "un") {
43 var self = this, mode = self.getModeAt(from);
44 var commentString = options.lineComment || mode.lineComment;
46 if (options.blockCommentStart || mode.blockCommentStart) {
78 var self = this, mode = self.getModeAt(from);
79 var startString = options.blockCommentStart || mode
[all...]
/external/chromium_org/cc/resources/
H A Dmanaged_tile_state.cc79 for (int mode = 0; mode < NUM_RASTER_MODES; ++mode) {
80 has_resource |= (tile_versions[mode].resource_.get() != 0);
81 has_active_task |= (tile_versions[mode].raster_task_.get() != 0);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dcondrender.c42 _mesa_BeginConditionalRender(GLuint queryId, GLenum mode) argument
55 switch (mode) {
63 _mesa_error(ctx, GL_INVALID_ENUM, "glBeginConditionalRender(mode=%s)",
64 _mesa_lookup_enum_by_nr(mode));
82 ctx->Query.CondRenderMode = mode;
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
146 _mesa_problem(ctx, "Bad cond render mode %s in "
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrTextureDomain.cpp16 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
20 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
23 fMode = mode;
49 SkASSERT((Mode)-1 == fMode || textureDomain.mode() == fMode);
50 SkDEBUGCODE(fMode = textureDomain.mode();)
54 if (textureDomain.mode() != kIgnore_Mode && !fDomainUni.isValid()) {
65 switch (textureDomain.mode()) {
142 SkASSERT(textureDomain.mode() == fMode);
143 if (kIgnore_Mode != textureDomain.mode()) {
228 GrTextureDomain::Mode mode,
225 Create(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
246 GrTextureDomainEffect(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
295 GrTextureDomain::Mode mode = local
[all...]
/external/deqp/framework/delibs/debase/
H A DdeMath.c52 int mode = fegetround();
53 switch (mode)
66 deBool deSetRoundingMode (deRoundingMode mode) argument
73 switch (mode)
89 switch (mode)
/external/libhevc/common/
H A Dihevc_chroma_intra_pred.h48 WORD32 mode);
56 WORD32 mode);
64 WORD32 mode);
72 WORD32 mode);
80 WORD32 mode);
88 WORD32 mode);
96 WORD32 mode);
104 WORD32 mode);
112 WORD32 mode);
120 WORD32 mode);
[all...]
/external/mesa3d/src/mesa/main/
H A Dcondrender.c42 _mesa_BeginConditionalRender(GLuint queryId, GLenum mode) argument
55 switch (mode) {
63 _mesa_error(ctx, GL_INVALID_ENUM, "glBeginConditionalRender(mode=%s)",
64 _mesa_lookup_enum_by_nr(mode));
82 ctx->Query.CondRenderMode = mode;
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
146 _mesa_problem(ctx, "Bad cond render mode %s in "
/external/skia/src/effects/
H A DSkColorFilters.cpp20 // baseclass for filters that store a color and mode
29 SkModeColorFilter(SkColor color, SkXfermode::Mode mode) { argument
31 fMode = mode;
40 virtual bool asColorMode(SkColor* color, SkXfermode::Mode* mode) const SK_OVERRIDE {
48 if (mode) {
49 *mode = fMode;
84 str->append(" mode: ");
176 static inline ColorExpr color_filter_expression(const SkXfermode::Mode& mode, argument
181 SkAssertResult(SkXfermode::ModeAsCoeff(mode, &filterColorCoeff, &colorCoeff));
190 static GrEffectRef* Create(const GrColor& c, SkXfermode::Mode mode) { argument
220 SkXfermode::Mode mode() const { return fMode; } function in class:ModeColorFilterEffect
236 SkXfermode::Mode mode = drawEffect.castEffect<ModeColorFilterEffect>().mode(); variable
278 ModeColorFilterEffect(GrColor color, SkXfermode::Mode mode) argument
404 SkXfermode::Mode mode = SkXfermode::kDst_Mode; local
499 CreateModeFilter(SkColor color, SkXfermode::Mode mode) argument
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inflate.c115 state->mode = HEAD;
633 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
639 switch (state->mode) {
642 state->mode = TYPEDO;
651 state->mode = FLAGS;
663 state->mode = BAD;
668 state->mode = BAD;
677 state->mode = BAD;
683 state->mode
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dinflate.c115 state->mode = HEAD;
633 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
639 switch (state->mode) {
642 state->mode = TYPEDO;
651 state->mode = FLAGS;
663 state->mode = BAD;
668 state->mode = BAD;
677 state->mode = BAD;
683 state->mode
[all...]
/external/zlib/src/
H A Dinflate.c115 state->mode = HEAD;
633 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
639 switch (state->mode) {
642 state->mode = TYPEDO;
651 state->mode = FLAGS;
663 state->mode = BAD;
668 state->mode = BAD;
677 state->mode = BAD;
683 state->mode
[all...]
/external/chromium_org/third_party/zlib/
H A Dinflate.c113 state->mode = HEAD;
617 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
623 switch (state->mode) {
626 state->mode = TYPEDO;
635 state->mode = FLAGS;
647 state->mode = BAD;
652 state->mode = BAD;
661 state->mode = BAD;
667 state->mode
[all...]
/external/skia/src/gpu/effects/
H A DGrTextureDomain.cpp15 GrTextureDomain::GrTextureDomain(const SkRect& domain, Mode mode, int index) argument
19 if (domain.contains(kFullRect) && kClamp_Mode == mode) {
22 fMode = mode;
48 SkASSERT((Mode)-1 == fMode || textureDomain.mode() == fMode);
49 SkDEBUGCODE(fMode = textureDomain.mode();)
51 if (kIgnore_Mode == textureDomain.mode()) {
69 if (kClamp_Mode == textureDomain.mode()) {
78 SkASSERT(GrTextureDomain::kDecal_Mode == textureDomain.mode());
117 SkASSERT(textureDomain.mode() == fMode);
118 if (kIgnore_Mode != textureDomain.mode()) {
199 Create(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
222 GrTextureDomainEffect(GrTexture* texture, const SkMatrix& matrix, const SkRect& domain, GrTextureDomain::Mode mode, GrTextureParams::FilterMode filterMode, GrCoordSet coordSet) argument
269 GrTextureDomain::Mode mode = local
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dcelt_decoder.c65 const OpusCustomMode *mode; member in struct:OpusCustomDecoder
91 celt_sig _decode_mem[1]; /* Size = channels*(DECODE_BUFFER_SIZE+mode->overlap) */
93 /* opus_val16 oldEBands[], Size = 2*mode->nbEBands */
94 /* opus_val16 oldLogE[], Size = 2*mode->nbEBands */
95 /* opus_val16 oldLogE2[], Size = 2*mode->nbEBands */
96 /* opus_val16 backgroundLogE[], Size = 2*mode->nbEBands */
101 const CELTMode *mode = opus_custom_mode_create(48000, 960, NULL); local
102 return opus_custom_decoder_get_size(mode, channels);
105 OPUS_CUSTOM_NOSTATIC int opus_custom_decoder_get_size(const CELTMode *mode, int channels) argument
108 + (channels*(DECODE_BUFFER_SIZE+mode
115 opus_custom_decoder_create(const CELTMode *mode, int channels, int *error) argument
144 opus_custom_decoder_init(CELTDecoder *st, const CELTMode *mode, int channels) argument
260 compute_inv_mdcts(const CELTMode *mode, int shortBlocks, celt_sig *X, celt_sig * OPUS_RESTRICT out_mem[], int C, int LM) argument
342 const OpusCustomMode *mode; local
696 const OpusCustomMode *mode; local
[all...]
/external/libopus/celt/
H A Dcelt_decoder.c65 const OpusCustomMode *mode; member in struct:OpusCustomDecoder
91 celt_sig _decode_mem[1]; /* Size = channels*(DECODE_BUFFER_SIZE+mode->overlap) */
93 /* opus_val16 oldEBands[], Size = 2*mode->nbEBands */
94 /* opus_val16 oldLogE[], Size = 2*mode->nbEBands */
95 /* opus_val16 oldLogE2[], Size = 2*mode->nbEBands */
96 /* opus_val16 backgroundLogE[], Size = 2*mode->nbEBands */
101 const CELTMode *mode = opus_custom_mode_create(48000, 960, NULL); local
102 return opus_custom_decoder_get_size(mode, channels);
105 OPUS_CUSTOM_NOSTATIC int opus_custom_decoder_get_size(const CELTMode *mode, int channels) argument
108 + (channels*(DECODE_BUFFER_SIZE+mode
115 opus_custom_decoder_create(const CELTMode *mode, int channels, int *error) argument
144 opus_custom_decoder_init(CELTDecoder *st, const CELTMode *mode, int channels) argument
260 compute_inv_mdcts(const CELTMode *mode, int shortBlocks, celt_sig *X, celt_sig * OPUS_RESTRICT out_mem[], int C, int LM) argument
342 const OpusCustomMode *mode; local
696 const OpusCustomMode *mode; local
[all...]
/external/chromium_org/ash/touch/
H A Dtouchscreen_util_unittest.cc24 DisplayMode mode(gfx::Size(1920, 1080), 60.0, false, true);
25 mode.native = true;
26 std::vector<DisplayMode> modes(1, mode);
34 DisplayMode mode(gfx::Size(800, 600), 60.0, false, true);
35 mode.native = true;
36 std::vector<DisplayMode> modes(1, mode);
41 // Display without native mode. Must not be matched to any touch screen.
49 DisplayMode mode(gfx::Size(1024, 768), 60.0, false, true);
50 mode.native = true;
51 std::vector<DisplayMode> modes(1, mode);
[all...]
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dreload_button.cc55 void ReloadButton::ChangeMode(Mode mode, bool force) { argument
56 intended_mode_ = mode;
62 ((mode == MODE_STOP) ?
66 if (mode != visible_mode_)
67 ChangeModeInternal(mode);
73 // applicable when instant extended API is enabled and mode is NTP, which is
224 void ReloadButton::ChangeModeInternal(Mode mode) { argument
229 (mode == MODE_RELOAD) ? IDR_RELOAD : IDR_STOP)));
231 (mode == MODE_RELOAD) ? IDR_RELOAD_D : IDR_STOP_D)));
234 visible_mode_ = mode;
[all...]

Completed in 3063 milliseconds

<<11121314151617181920>>