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

1 2

  /external/chromium_org/v8/test/mjsunit/tools/
profile.js 146 function Driver() {
151 Inherits(Driver, ProfileTestDriver);
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/v8/test/mjsunit/tools/
profile.js 146 function Driver() {
151 Inherits(Driver, ProfileTestDriver);
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...]
  /libcore/luni/src/main/java/java/sql/
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/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
__init__.py 34 from driver import Driver, DriverInput, DriverOutput
driver_unittest.py 33 from webkitpy.layout_tests.port import Port, Driver, DriverOutput
49 wrapper = Driver(self.make_port(), None, pixel_tests=False)._command_wrapper(wrapper_string)
63 driver = Driver(port, None, pixel_tests=False)
64 self.assertEqual(driver.test_to_uri('foo/bar.html'), 'file://%s/foo/bar.html' % port.layout_tests_dir())
65 self.assertEqual(driver.test_to_uri('http/tests/foo.html'), 'http://127.0.0.1:8000/foo.html')
66 self.assertEqual(driver.test_to_uri('http/tests/ssl/bar.html'), 'https://127.0.0.1:8443/ssl/bar.html')
70 driver = Driver(port, None, pixel_tests=False)
71 self.assertEqual(driver.uri_to_test('file://%s/foo/bar.html' % port.layout_tests_dir()), 'foo/bar.html'
    [all...]
driver.py 55 """Groups information about a output from driver for easy passing
81 class Driver(object):
82 """object for running test(s) using content_shell or other driver."""
85 """Initialize a Driver to subsequently run tests.
91 worker_number - identifier for a particular worker/driver instance
110 # stderr output, as well as if we've seen #EOF on this driver instance.
133 the driver in an indeterminate state. The upper layers of the program
base_unittest.py 45 from webkitpy.layout_tests.port import Port, Driver, DriverOutput
test.py 34 from webkitpy.layout_tests.port import Port, Driver, DriverOutput
396 # the mock_drt Driver. We return something, but make sure it's useless.
540 class TestDriver(Driver):
541 """Test/Dummy implementation of the driver interface."""
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 8 """Parser driver.
16 __all__ = ["Driver", "load_grammar"]
29 class Driver(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
driver.py 8 """Parser driver.
16 __all__ = ["Driver", "load_grammar"]
29 class Driver(object):
  /external/chromium/net/tools/fetch/
fetch_client.cc 34 // Test Driver
35 class Driver {
37 Driver()
51 static base::LazyInstance<Driver> g_driver(base::LINKER_INITIALIZED);
  /external/chromium_org/net/tools/fetch/
fetch_client.cc 40 // Test Driver
41 class Driver {
43 Driver()
57 static base::LazyInstance<Driver> g_driver = LAZY_INSTANCE_INITIALIZER;
  /external/chromium_org/third_party/mesa/src/src/egl/main/
egldriver.c 60 _EGLDriver *Driver;
139 * Open the named driver and find its bootstrap function: _eglMain().
175 _eglLog(_EGL_WARNING, "Could not open driver %s (%s)",
194 * Load a module and create the driver object.
203 if (mod->Driver)
224 _eglLog(_EGL_WARNING, "Driver loaded from %s has no name", mod->Path);
229 mod->Driver = drv;
242 /* destroy the driver */
243 if (mod->Driver && mod->Driver->Unload
    [all...]
egldisplay.h 130 _EGLDriver *Driver; /**< Matched driver of the display */
133 /* options that affect how the driver initializes the display */
135 EGLBoolean TestOnly; /**< Driver should not set fields when true */
136 EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */
139 /* these fields are set by the driver during init */
140 void *DriverData; /**< Driver private data */
  /external/clang/include/clang/Driver/
Driver.h 1 //===--- Driver.h - Clang GCC Compatible Driver -----------------*- C++ -*-===//
15 #include "clang/Driver/Phases.h"
16 #include "clang/Driver/Types.h"
17 #include "clang/Driver/Util.h"
38 namespace driver { namespace in namespace:clang
47 /// Driver - Encapsulate logic for constructing compilation processes
48 /// from a set of gcc-driver-like command line arguments.
49 class Driver {
69 /// The name the driver was invoked as
    [all...]
  /external/mesa3d/src/egl/main/
egldriver.c 60 _EGLDriver *Driver;
139 * Open the named driver and find its bootstrap function: _eglMain().
175 _eglLog(_EGL_WARNING, "Could not open driver %s (%s)",
194 * Load a module and create the driver object.
203 if (mod->Driver)
224 _eglLog(_EGL_WARNING, "Driver loaded from %s has no name", mod->Path);
229 mod->Driver = drv;
242 /* destroy the driver */
243 if (mod->Driver && mod->Driver->Unload
    [all...]
egldisplay.h 130 _EGLDriver *Driver; /**< Matched driver of the display */
133 /* options that affect how the driver initializes the display */
135 EGLBoolean TestOnly; /**< Driver should not set fields when true */
136 EGLBoolean UseFallback; /**< Use fallback driver (sw or less features) */
139 /* these fields are set by the driver during init */
140 void *DriverData; /**< Driver private data */
  /external/clang/lib/Driver/
Driver.cpp 1 //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
10 #include "clang/Driver/Driver.h"
14 #include "clang/Driver/Action.h"
15 #include "clang/Driver/Compilation.h"
16 #include "clang/Driver/DriverDiagnostic.h"
17 #include "clang/Driver/Job.h"
18 #include "clang/Driver/Options.h"
19 #include "clang/Driver/Tool.h
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 38 * SAX2 Driver that pulls events from XmlPullParser
44 public class Driver implements Locator, XMLReader, Attributes
79 public Driver() throws XmlPullParserException {
85 public Driver(XmlPullParser pp) throws XmlPullParserException {
460 * on the <code>ContentHandler</code> with <code>this</code> driver object as the
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_context.h 39 * by the device driver.
201 /** Driver interface:
203 struct swrast_device_driver Driver;
345 * driver's opportunity to map renderbuffers and textures.
351 if (swrast->Driver.SpanRenderStart)
352 swrast->Driver.SpanRenderStart(ctx);
361 if (swrast->Driver.SpanRenderFinish)
362 swrast->Driver.SpanRenderFinish(ctx);
  /external/mesa3d/src/mesa/swrast/
s_context.h 39 * by the device driver.
201 /** Driver interface:
203 struct swrast_device_driver Driver;
345 * driver's opportunity to map renderbuffers and textures.
351 if (swrast->Driver.SpanRenderStart)
352 swrast->Driver.SpanRenderStart(ctx);
361 if (swrast->Driver.SpanRenderFinish)
362 swrast->Driver.SpanRenderFinish(ctx);
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_context.h 488 /* Driver may request additional render passes by returning GL_TRUE
505 /* Driver interface.
507 struct tnl_device_driver Driver;
  /external/mesa3d/src/mesa/tnl/
t_context.h 488 /* Driver may request additional render passes by returning GL_TRUE
505 /* Driver interface.
507 struct tnl_device_driver Driver;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
mtypes.h     [all...]

Completed in 654 milliseconds

1 2