Searched refs:mode (Results 251 - 275 of 4497) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/content/browser/accessibility/
H A Dbrowser_accessibility_state_impl.h54 // Adds the given accessibility mode to the current accessibility mode bitmap.
55 void AddAccessibilityMode(AccessibilityMode mode);
57 // Removes the given accessibility mode from the current accessibility mode
61 void RemoveAccessibilityMode(AccessibilityMode mode);
79 // Updates the accessibility mode of all web contents, including swapped out
80 // ones. |add| specifies whether the mode should be added or removed.
81 void AddOrRemoveFromAllWebContents(AccessibilityMode mode, bool add);
H A Daccessibility_mode_browsertest.cc45 AccessibilityMode CorrectedAccessibility(AccessibilityMode mode) { argument
46 return AddAccessibilityModeTo(GetBaseAccessibilityMode(), mode);
49 bool ShouldBeBrowserAccessibilityManager(AccessibilityMode mode) { argument
50 mode = CorrectedAccessibility(mode);
51 switch (mode) {
/external/chromium_org/remoting/webapp/
H A Dlog_to_server.js50 * @param {remoting.ClientSession.Mode} mode
53 function(state, connectionError, mode) {
54 this.maybeExpireSessionId(mode);
66 state, connectionError, mode);
82 this.logAccumulatedStatistics(mode);
137 * @param {remoting.ClientSession.Mode} mode
139 remoting.LogToServer.prototype.logStatistics = function(stats, mode) {
140 this.maybeExpireSessionId(mode);
147 this.logAccumulatedStatistics(mode);
158 * @param {remoting.ClientSession.Mode} mode
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h46 extern void r200TclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) r200TclFallback( ctx, bit, mode )
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h47 extern void radeonTclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) radeonTclFallback( ctx, bit, mode )
/external/chromium_org/third_party/skia/tools/
H A Dbench_pictures_cfg_helper.py17 config = {'mode': ['tile', str(tile_x), str(tile_y)]}
54 return RTreeConfig(mode='simple', viewport=[str(viewport_x), str(viewport_y)],
59 return GridConfig(viewport_x, viewport_y, mode='simple',
64 return BitmapConfig(mode=['copyTile', str(tile_x), str(tile_y)], **kwargs)
68 return BitmapConfig(mode='record', **kwargs)
72 return BitmapConfig(mode='playbackCreation', **kwargs)
85 def GridConfig(tile_x, tile_y, mode, **kwargs):
86 return BitmapConfig(mode=mode, bbh=['grid', str(tile_x), str(tile_y)],
91 return RTreeConfig(mode
[all...]
H A DPictureRenderingFlags.cpp54 DEFINE_string(mode, "simple", "Run in the corresponding mode:\n"
71 DEFINE_bool(pipe, false, "Use SkGPipe rendering. Currently incompatible with \"mode\".");
74 DEFINE_string(tiles, "", "Used with --mode copyTile to specify number of tiles per larger tile "
94 const char* mode = NULL; local
107 mode = FLAGS_mode[0];
108 if (0 == strcmp(mode, "record")) {
111 } else if (0 == strcmp(mode, "tile") || 0 == strcmp(mode, "pow2tile")
112 || 0 == strcmp(mode, "copyTil
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-reloc-info.cc36 byte* pc, RelocInfo::Mode mode, intptr_t data) {
37 RelocInfo rinfo(pc, mode, data, NULL);
56 RelocInfo::Mode mode = (i % 2 == 0) ? local
58 WriteRinfo(&writer, pc, mode, pos);
71 RelocInfo::Mode mode = (i % 2 == 0) ? local
73 if (mode == RelocInfo::POSITION) {
75 CHECK_EQ(mode, it.rinfo()->rmode());
88 RelocInfo::Mode mode = (i % 2 == 0) ? local
90 if (mode == RelocInfo::STATEMENT_POSITION) {
92 CHECK_EQ(mode, i
35 WriteRinfo(RelocInfoWriter* writer, byte* pc, RelocInfo::Mode mode, intptr_t data) argument
105 RelocInfo::Mode mode = (i % 2 == 0) ? local
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h46 extern void r200TclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) r200TclFallback( ctx, bit, mode )
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h47 extern void radeonTclFallback( struct gl_context *ctx, GLuint bit, GLboolean mode );
62 #define TCL_FALLBACK( ctx, bit, mode ) radeonTclFallback( ctx, bit, mode )
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_syswm.cc42 SDL_GrabMode BE_GrabInput(_THIS, SDL_GrabMode mode) argument
44 if ( mode == SDL_GRAB_OFF ) {
48 must be leaving relative mode, move mouse from
64 must be entering relative mode, get ready by
75 return(mode);
/external/skia/include/effects/
H A DSkAvoidXfermode.h28 There are two modes, and each mode interprets a tolerance value.
30 Avoid: In this mode, drawing is allowed only on destination pixels that
35 Target: In this mode, drawing only occurs on destination pixels that
40 static SkAvoidXfermode* Create(SkColor opColor, U8CPU tolerance, Mode mode) { argument
41 return SkNEW_ARGS(SkAvoidXfermode, (opColor, tolerance, mode));
56 SkAvoidXfermode(SkColor opColor, U8CPU tolerance, Mode mode);
/external/skia/src/opts/
H A DSkXfermode_opts_SSE2.h16 SkSSE2ProcCoeffXfermode(const ProcCoeff& rec, SkXfermode::Mode mode, argument
18 : INHERITED(rec, mode), fProcSIMD(procSIMD) {}
36 SkXfermode::Mode mode);
/external/skia/tools/
H A Dbench_pictures_cfg_helper.py17 config = {'mode': ['tile', str(tile_x), str(tile_y)]}
54 return RTreeConfig(mode='simple', viewport=[str(viewport_x), str(viewport_y)],
59 return GridConfig(viewport_x, viewport_y, mode='simple',
64 return BitmapConfig(mode=['copyTile', str(tile_x), str(tile_y)], **kwargs)
68 return BitmapConfig(mode='record', **kwargs)
72 return BitmapConfig(mode='playbackCreation', **kwargs)
85 def GridConfig(tile_x, tile_y, mode, **kwargs):
86 return BitmapConfig(mode=mode, bbh=['grid', str(tile_x), str(tile_y)],
91 return RTreeConfig(mode
[all...]
/external/srec/srec/include/
H A Dportable.h50 static PINLINE PFile* file_must_open(PFile* afile, const LCHAR *name, const LCHAR *mode, ESR_BOOL littleEndian) argument
55 fp = pfopen ( name, mode );
65 PLogError(L("Could not open file %s, mode=%s, cwd=%s\n"), name, mode, tmp);
/external/valgrind/main/none/tests/s390x/
H A Dfpext_warn.stderr.exp3 The specified rounding mode cannot be supported. That
6 the rounding mode from FPC. Results may differ!
9 The specified rounding mode cannot be supported. That
12 the rounding mode from FPC. Results may differ!
15 The specified rounding mode cannot be supported. That
18 the rounding mode from FPC. Results may differ!
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_exec_array.c350 GLenum mode, GLint start, GLsizei count)
357 printf("vbo_exec_DrawArrays(mode 0x%x, start %d, count %d):\n",
358 mode, start, count);
583 vbo_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, argument
596 prim[0].mode = mode;
658 * Called from glDrawArrays when in immediate mode (not display list mode).
661 vbo_exec_DrawArrays(GLenum mode, GLint start, GLsizei count) argument
667 _mesa_lookup_enum_by_nr(mode), star
349 print_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, GLsizei count) argument
687 vbo_exec_DrawArraysInstanced(GLenum mode, GLint start, GLsizei count, GLsizei numInstances) argument
713 vbo_exec_DrawArraysInstancedBaseInstance(GLenum mode, GLint first, GLsizei count, GLsizei numInstances, GLuint baseInstance) argument
803 vbo_validated_drawrangeelements(struct gl_context *ctx, GLenum mode, GLboolean index_bounds_valid, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex, GLint numInstances, GLuint baseInstance) argument
880 vbo_exec_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
964 vbo_exec_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) argument
984 vbo_exec_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
1006 vbo_exec_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1029 vbo_exec_DrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances) argument
1052 vbo_exec_DrawElementsInstancedBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex) argument
1077 vbo_exec_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLuint baseInstance) argument
1103 vbo_exec_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex, GLuint baseInstance) argument
1131 vbo_validated_multidrawelements(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex) argument
1251 vbo_exec_MultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1268 vbo_exec_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLsizei *basevertex) argument
1287 vbo_draw_transform_feedback(struct gl_context *ctx, GLenum mode, struct gl_transform_feedback_object *obj, GLuint stream, GLuint numInstances) argument
1332 vbo_exec_DrawTransformFeedback(GLenum mode, GLuint name) argument
1346 vbo_exec_DrawTransformFeedbackStream(GLenum mode, GLuint name, GLuint stream) argument
1360 vbo_exec_DrawTransformFeedbackInstanced(GLenum mode, GLuint name, GLsizei primcount) argument
1375 vbo_exec_DrawTransformFeedbackStreamInstanced(GLenum mode, GLuint name, GLuint stream, GLsizei primcount) argument
1439 _mesa_DrawArrays(GLenum mode, GLint first, GLsizei count) argument
1446 _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
1454 _mesa_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1462 _mesa_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) argument
1470 _mesa_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1480 _mesa_MultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1488 _mesa_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount, const GLint *basevertex) argument
1500 _mesa_DrawTransformFeedback(GLenum mode, GLuint name) argument
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_array.c350 GLenum mode, GLint start, GLsizei count)
357 printf("vbo_exec_DrawArrays(mode 0x%x, start %d, count %d):\n",
358 mode, start, count);
583 vbo_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, argument
596 prim[0].mode = mode;
658 * Called from glDrawArrays when in immediate mode (not display list mode).
661 vbo_exec_DrawArrays(GLenum mode, GLint start, GLsizei count) argument
667 _mesa_lookup_enum_by_nr(mode), star
349 print_draw_arrays(struct gl_context *ctx, GLenum mode, GLint start, GLsizei count) argument
687 vbo_exec_DrawArraysInstanced(GLenum mode, GLint start, GLsizei count, GLsizei numInstances) argument
713 vbo_exec_DrawArraysInstancedBaseInstance(GLenum mode, GLint first, GLsizei count, GLsizei numInstances, GLuint baseInstance) argument
803 vbo_validated_drawrangeelements(struct gl_context *ctx, GLenum mode, GLboolean index_bounds_valid, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex, GLint numInstances, GLuint baseInstance) argument
880 vbo_exec_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
964 vbo_exec_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) argument
984 vbo_exec_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
1006 vbo_exec_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1029 vbo_exec_DrawElementsInstanced(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances) argument
1052 vbo_exec_DrawElementsInstancedBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex) argument
1077 vbo_exec_DrawElementsInstancedBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLuint baseInstance) argument
1103 vbo_exec_DrawElementsInstancedBaseVertexBaseInstance(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei numInstances, GLint basevertex, GLuint baseInstance) argument
1131 vbo_validated_multidrawelements(struct gl_context *ctx, GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLint *basevertex) argument
1251 vbo_exec_MultiDrawElements(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1268 vbo_exec_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, const GLsizei *basevertex) argument
1287 vbo_draw_transform_feedback(struct gl_context *ctx, GLenum mode, struct gl_transform_feedback_object *obj, GLuint stream, GLuint numInstances) argument
1332 vbo_exec_DrawTransformFeedback(GLenum mode, GLuint name) argument
1346 vbo_exec_DrawTransformFeedbackStream(GLenum mode, GLuint name, GLuint stream) argument
1360 vbo_exec_DrawTransformFeedbackInstanced(GLenum mode, GLuint name, GLsizei primcount) argument
1375 vbo_exec_DrawTransformFeedbackStreamInstanced(GLenum mode, GLuint name, GLuint stream, GLsizei primcount) argument
1439 _mesa_DrawArrays(GLenum mode, GLint first, GLsizei count) argument
1446 _mesa_DrawElements(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices) argument
1454 _mesa_DrawElementsBaseVertex(GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1462 _mesa_DrawRangeElements(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices) argument
1470 _mesa_DrawRangeElementsBaseVertex(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices, GLint basevertex) argument
1480 _mesa_MultiDrawElementsEXT(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) argument
1488 _mesa_MultiDrawElementsBaseVertex(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount, const GLint *basevertex) argument
1500 _mesa_DrawTransformFeedback(GLenum mode, GLuint name) argument
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dmanage_profile_overlay.js155 * @param {string} mode A label that specifies the type of dialog box which
161 registerCommonEventHandlers_: function(mode, submitFunction) {
163 $(mode + '-profile-icon-grid').addEventListener('change', function(e) {
164 self.onIconGridSelectionChanged_(mode);
166 $(mode + '-profile-name').oninput = function(event) {
167 self.onNameChanged_(mode);
169 $(mode + '-profile-ok').onclick = function(event) {
185 * @param {string} mode A label that specifies the type of dialog box which
189 setProfileInfo_: function(profileInfo, mode) {
192 $(mode
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertificateFactorySpi.java45 // mode: false - list of encodings is empty
46 // mode: true - list of encodings consists of 2 elements
48 private static boolean mode; field in class:MyCertificateFactorySpi
54 mode = true;
61 mode = newMode;
113 if (mode) {
123 if (mode) {
131 if (!mode) {
/external/chromium_org/base/test/
H A Dtest_file_util_posix.cc47 mode_t* mode = new mode_t; local
48 *mode = stat_buf.st_mode & ~S_IFMT; // Filter out file/path kind.
50 return mode;
63 mode_t* mode = reinterpret_cast<mode_t*>(info); local
65 int rv = HANDLE_EINTR(chmod(path.value().c_str(), *mode));
67 delete mode;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBDatabase.idl46 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMString storeName, optional IDBTransactionMode mode = "readonly");
47 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(sequence<DOMString> storeNames, optional IDBTransactionMode mode = "readonly");
48 [CallWith=ScriptState, RaisesException] IDBTransaction transaction(DOMStringList storeNames, optional IDBTransactionMode mode = "readonly");
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseGitDiffHeader.pl63 new file mode 100644
74 new file mode 100644
89 deleted file mode 100644
102 deleted file mode 100644
254 old mode 100644
255 new mode 100755
266 old mode 100644
267 new mode 100755
289 new file mode 100644
303 new file mode 10064
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/include/
H A Dvoe_codec.h68 // secondary send codec enables dual-streaming. In dual-streaming mode,
118 // Sets the VAD/DTX (silence suppression) status and |mode| for a
122 VadModes mode = kVadConventional,
125 // Gets the VAD/DTX status and |mode| for a specified |channel|.
126 virtual int GetVADStatus(int channel, bool& enabled, VadModes& mode,
138 virtual int SetAMREncFormat(int channel, AmrMode mode) { return -1; } argument
139 virtual int SetAMRDecFormat(int channel, AmrMode mode) { return -1; } argument
140 virtual int SetAMRWbEncFormat(int channel, AmrMode mode) { return -1; } argument
141 virtual int SetAMRWbDecFormat(int channel, AmrMode mode) { return -1; } argument
/external/chromium_org/ui/accessibility/extensions/highcontrast/
H A Dhighcontrast.js5 var mode; variable
40 if (html.getAttribute('hc') != mode + scheme)
41 html.setAttribute('hc', mode + scheme);
51 if (mode == 'a') {
59 html.setAttribute('hc', mode + '0');
96 mode = 'a';
98 mode = 'b';

Completed in 2066 milliseconds

<<11121314151617181920>>