Searched refs:Driver (Results 1 - 25 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A D__init__.py34 from driver import DeviceFailure, Driver, DriverInput, DriverOutput namespace
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver2.java20 import java.sql.Driver;
30 Driver theDriver = new TestHelper_Driver2();
H A DTestHelper_Driver5.java20 import java.sql.Driver;
30 Driver theDriver = new TestHelper_Driver5();
H A DTestHelper_DriverManager.java20 import java.sql.Driver;
27 * Helper class for the Driver manager tes - it allows the test code to be
33 static Driver testDriver = null;
46 public static void setDriver(Driver theDriver) {
48 // System.out.println("TestHelper_DriverManager: Test Driver set!");
51 } // end method setDriver( Driver )
60 Driver aDriver;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
H A Ddriverfuncs.c216 * Call the ctx->Driver.* state functions with current values to initialize
223 ctx->Driver.AlphaFunc(ctx, ctx->Color.AlphaFunc, ctx->Color.AlphaRef);
225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
227 ctx->Driver.BlendEquationSeparate(ctx,
231 ctx->Driver.BlendFuncSeparate(ctx,
237 if (ctx->Driver.ColorMaskIndexed) {
240 ctx->Driver.ColorMaskIndexed(ctx, i,
248 ctx->Driver.ColorMask(ctx,
255 ctx->Driver.CullFace(ctx, ctx->Polygon.CullFaceMode);
256 ctx->Driver
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Ddriverfuncs.c216 * Call the ctx->Driver.* state functions with current values to initialize
223 ctx->Driver.AlphaFunc(ctx, ctx->Color.AlphaFunc, ctx->Color.AlphaRef);
225 ctx->Driver.BlendColor(ctx, ctx->Color.BlendColor);
227 ctx->Driver.BlendEquationSeparate(ctx,
231 ctx->Driver.BlendFuncSeparate(ctx,
237 if (ctx->Driver.ColorMaskIndexed) {
240 ctx->Driver.ColorMaskIndexed(ctx, i,
248 ctx->Driver.ColorMask(ctx,
255 ctx->Driver.CullFace(ctx, ctx->Polygon.CullFaceMode);
256 ctx->Driver
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexturebarrier.c53 ctx->Driver.TextureBarrier(ctx);
H A Dcondrender.c84 if (ctx->Driver.BeginConditionalRender)
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
101 if (ctx->Driver.EndConditionalRender)
102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery);
136 ctx->Driver.WaitQuery(ctx, q);
143 ctx->Driver.CheckQuery(ctx, q);
H A Dlines.c77 if (ctx->Driver.LineWidth)
78 ctx->Driver.LineWidth(ctx, width);
113 if (ctx->Driver.LineStipple)
114 ctx->Driver.LineStipple( ctx, factor, pattern );
/external/mesa3d/src/mesa/main/
H A Dtexturebarrier.c53 ctx->Driver.TextureBarrier(ctx);
H A Dcondrender.c84 if (ctx->Driver.BeginConditionalRender)
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
101 if (ctx->Driver.EndConditionalRender)
102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery);
136 ctx->Driver.WaitQuery(ctx, q);
143 ctx->Driver.CheckQuery(ctx, q);
H A Dlines.c77 if (ctx->Driver.LineWidth)
78 ctx->Driver.LineWidth(ctx, width);
113 if (ctx->Driver.LineStipple)
114 ctx->Driver.LineStipple( ctx, factor, pattern );
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vp_build.c56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
57 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
H A Dt_vb_render.c36 * context->Driver.Render.*
84 tnl->Driver.Render.Points( ctx, start, count )
124 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \
125 const tnl_triangle_func TriangleFunc = tnl->Driver.Render.Triangle; \
126 const tnl_quad_func QuadFunc = tnl->Driver.Render.Quad; \
132 #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
133 #define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
155 tnl_render_func render_tris = tnl->Driver.Render.PrimTabElts[GL_TRIANGLES];
163 tnl->Driver.Render.PrimitiveNotify( ctx, GL_TRIANGLES );
195 tnl->Driver
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vp_build.c56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
57 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
H A Dt_vb_render.c36 * context->Driver.Render.*
84 tnl->Driver.Render.Points( ctx, start, count )
124 const tnl_line_func LineFunc = tnl->Driver.Render.Line; \
125 const tnl_triangle_func TriangleFunc = tnl->Driver.Render.Triangle; \
126 const tnl_quad_func QuadFunc = tnl->Driver.Render.Quad; \
132 #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x )
133 #define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx )
155 tnl_render_func render_tris = tnl->Driver.Render.PrimTabElts[GL_TRIANGLES];
163 tnl->Driver.Render.PrimitiveNotify( ctx, GL_TRIANGLES );
195 tnl->Driver
[all...]
/external/chromium_org/v8/test/mjsunit/tools/
H A Dprofile.js146 function Driver() {
151 Inherits(Driver, ProfileTestDriver); class
153 Driver.prototype.enter = function(func) {
160 Driver.superClass_.enter.call(this, func);
167 Driver.prototype.stay = function() {
170 Driver.superClass_.stay.call(this);
178 Driver.prototype.leave = function() {
179 Driver.superClass_.leave.call(this);
184 var testDriver = new Driver();
226 function Driver() {
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_save.c42 ctx->Driver.NewList = vbo_save_NewList;
43 ctx->Driver.EndList = vbo_save_EndList;
44 ctx->Driver.SaveFlushVertices = vbo_save_SaveFlushVertices;
45 ctx->Driver.BeginCallList = vbo_save_BeginCallList;
46 ctx->Driver.EndCallList = vbo_save_EndCallList;
47 ctx->Driver.NotifySaveBegin = vbo_save_NotifyBegin;
92 ctx->Driver.CurrentSavePrimitive = PRIM_UNKNOWN;
H A Dvbo_exec.c56 ctx->Driver.NeedFlush = 0;
57 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
58 ctx->Driver.BeginVertices = vbo_exec_BeginVertices;
59 ctx->Driver.FlushVertices = vbo_exec_FlushVertices;
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save.c42 ctx->Driver.NewList = vbo_save_NewList;
43 ctx->Driver.EndList = vbo_save_EndList;
44 ctx->Driver.SaveFlushVertices = vbo_save_SaveFlushVertices;
45 ctx->Driver.BeginCallList = vbo_save_BeginCallList;
46 ctx->Driver.EndCallList = vbo_save_EndCallList;
47 ctx->Driver.NotifySaveBegin = vbo_save_NotifyBegin;
92 ctx->Driver.CurrentSavePrimitive = PRIM_UNKNOWN;
H A Dvbo_exec.c56 ctx->Driver.NeedFlush = 0;
57 ctx->Driver.CurrentExecPrimitive = PRIM_OUTSIDE_BEGIN_END;
58 ctx->Driver.BeginVertices = vbo_exec_BeginVertices;
59 ctx->Driver.FlushVertices = vbo_exec_FlushVertices;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c516 ctx->Driver.AlphaFunc = nouveau_alpha_func;
517 ctx->Driver.BlendColor = nouveau_blend_color;
518 ctx->Driver.BlendEquationSeparate = nouveau_blend_equation_separate;
519 ctx->Driver.BlendFuncSeparate = nouveau_blend_func_separate;
520 ctx->Driver.ClipPlane = nouveau_clip_plane;
521 ctx->Driver.ColorMask = nouveau_color_mask;
522 ctx->Driver.ColorMaterial = nouveau_color_material;
523 ctx->Driver.CullFace = nouveau_cull_face;
524 ctx->Driver.FrontFace = nouveau_front_face;
525 ctx->Driver
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c516 ctx->Driver.AlphaFunc = nouveau_alpha_func;
517 ctx->Driver.BlendColor = nouveau_blend_color;
518 ctx->Driver.BlendEquationSeparate = nouveau_blend_equation_separate;
519 ctx->Driver.BlendFuncSeparate = nouveau_blend_func_separate;
520 ctx->Driver.ClipPlane = nouveau_clip_plane;
521 ctx->Driver.ColorMask = nouveau_color_mask;
522 ctx->Driver.ColorMaterial = nouveau_color_material;
523 ctx->Driver.CullFace = nouveau_cull_face;
524 ctx->Driver.FrontFace = nouveau_front_face;
525 ctx->Driver
[all...]
/external/clang/lib/
H A DMakefile13 FrontendTool Tooling Driver Format Edit Rewrite Serialization \
/external/clang/unittests/
H A DMakefile17 PARALLEL_DIRS = Basic Lex Driver libclang

Completed in 3555 milliseconds

1234567891011>>