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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Driver2.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
30 Driver theDriver = new TestHelper_Driver2();
39 System.out.println("Failed to register driver!");
TestHelper_Driver5.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
30 Driver theDriver = new TestHelper_Driver5();
34 System.out.println("Failed to register driver!");
TestHelper_DriverManager.java 20 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;
65 // Try to get a driver from the general pool... this should fail
68 fail("testDeregisterDriver: Didn't get exception when getting valid driver from other classloader.");
72 "testDeregisterDriver: Got exception when getting valid driver from other classloader."
    [all...]
TestHelper_Driver1.java 21 import java.sql.Driver;
28 * A simple implementation of a class implementing a JDBC Driver, for use in the
31 public class TestHelper_Driver1 implements Driver {
40 static Driver theDriver;
47 System.out.println("Failed to register driver!");
61 // driver
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/
driverfuncs.c 70 _mesa_init_driver_functions(struct dd_function_table *driver)
72 memset(driver, 0, sizeof(*driver));
74 driver->GetString = NULL; /* REQUIRED! */
75 driver->UpdateState = NULL; /* REQUIRED! */
76 driver->GetBufferSize = NULL; /* REQUIRED! */
77 driver->ResizeBuffers = _mesa_resize_framebuffer;
78 driver->Error = NULL;
80 driver->Finish = NULL;
81 driver->Flush = NULL
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 70 _mesa_init_driver_functions(struct dd_function_table *driver)
72 memset(driver, 0, sizeof(*driver));
74 driver->GetString = NULL; /* REQUIRED! */
75 driver->UpdateState = NULL; /* REQUIRED! */
76 driver->GetBufferSize = NULL; /* REQUIRED! */
77 driver->ResizeBuffers = _mesa_resize_framebuffer;
78 driver->Error = NULL;
80 driver->Finish = NULL;
81 driver->Flush = NULL
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
__init__.py 34 from driver import DeviceFailure, Driver, DriverInput, DriverOutput
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texturebarrier.c 42 _mesa_init_texture_barrier_functions(struct dd_function_table *driver)
44 driver->TextureBarrier = _mesa_texture_barrier;
53 ctx->Driver.TextureBarrier(ctx);
condrender.c 84 if (ctx->Driver.BeginConditionalRender)
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
101 if (ctx->Driver.EndConditionalRender)
102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery);
117 * called via a new driver hook?
136 ctx->Driver.WaitQuery(ctx, q);
143 ctx->Driver.CheckQuery(ctx, q);
lines.c 77 if (ctx->Driver.LineWidth)
78 ctx->Driver.LineWidth(ctx, width);
91 * change flushes the vertices and notifies the driver via
113 if (ctx->Driver.LineStipple)
114 ctx->Driver.LineStipple( ctx, factor, pattern );
  /external/mesa3d/src/mesa/main/
texturebarrier.c 42 _mesa_init_texture_barrier_functions(struct dd_function_table *driver)
44 driver->TextureBarrier = _mesa_texture_barrier;
53 ctx->Driver.TextureBarrier(ctx);
condrender.c 84 if (ctx->Driver.BeginConditionalRender)
85 ctx->Driver.BeginConditionalRender(ctx, q, mode);
101 if (ctx->Driver.EndConditionalRender)
102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery);
117 * called via a new driver hook?
136 ctx->Driver.WaitQuery(ctx, q);
143 ctx->Driver.CheckQuery(ctx, q);
lines.c 77 if (ctx->Driver.LineWidth)
78 ctx->Driver.LineWidth(ctx, width);
91 * change flushes the vertices and notifies the driver via
113 if (ctx->Driver.LineStipple)
114 ctx->Driver.LineStipple( ctx, factor, pattern );
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vp_build.c 53 /* Tell the driver about the change. Could define a new target for
56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
57 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
t_vb_render.c 36 * 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.Render.Points( ctx, start, count
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vp_build.c 53 /* Tell the driver about the change. Could define a new target for
56 if (ctx->VertexProgram._Current != prev && ctx->Driver.BindProgram) {
57 ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB,
t_vb_render.c 36 * 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.Render.Points( ctx, start, count
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_save.c 42 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;
vbo_exec.c 56 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;
104 * This is intended for use by driver back-ends in implementing the
  /external/mesa3d/src/mesa/vbo/
vbo_save.c 42 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;
vbo_exec.c 56 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;
104 * This is intended for use by driver back-ends in implementing the
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_state.c 516 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.DepthFunc = nouveau_depth_func
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_state.c 516 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.DepthFunc = nouveau_depth_func
    [all...]
  /external/clang/lib/
Makefile 13 FrontendTool Tooling Driver Format Edit Rewrite Serialization \
  /external/clang/unittests/
Makefile 17 PARALLEL_DIRS = Basic Lex Driver libclang

Completed in 3898 milliseconds

1 2 3 4 5 6 7 8 91011>>