HomeSort by relevance Sort by last modified time
    Searched refs:Driver (Results 1 - 25 of 428) 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...]
  /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...]
  /libcore/luni/src/test/java/libcore/java/sql/
DriverTest.java 23 import java.sql.Driver;
36 // Trigger the static initializer that will cause the driver to register itself with
42 Driver driver = getDriver(); local
43 assertTrue(driver instanceof JDBCDriver);
47 Driver driver = getDriver(); local
48 assertTrue(driver.acceptsURL(SQLITE_JDBC_URL));
60 Driver driver = getDriver() local
72 Driver driver = DriverManager.getDriver(SQLITE_JDBC_URL); local
    [all...]
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 58 private static final List<Driver> theDrivers = new ArrayList<Driver>(10);
88 // Load the driver class
105 * Removes a driver from the {@code DriverManager}'s registered driver list.
106 * This will only succeed when the caller's class loader loaded the driver
107 * that is to be removed. If the driver was loaded by a different class
108 * loader, the removal of the driver fails silently.
111 * driver in the future when asked to get a {@code Connection}.
113 * @param driver
    [all...]
Driver.java 23 * An interface to a JDBC driver. Instances are returned by {@link DriverManager}.
25 * <p>The JDBC driver uses URLs to specify the location of specific data. URL
28 * the same for all of a particular driver. " {@code SpecificData}" is a string
29 * which identifies the particular data source that the driver should use.
33 public interface Driver {
36 * Returns whether the driver thinks that it can open a connection to the
41 * @return {@code true} if the driver thinks that is can open a connection
43 * driver will respond {@code true} if it thinks that it can handle
44 * the subprotocol specified by the driver.
69 * Gets the driver's major version number
    [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;
  /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 \

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011>>