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

1 2 3

  /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
31 Driver theDriver = new TestHelper_Driver2();
40 System.out.println("Failed to register driver!");
TestHelper_Driver5.java 20 import java.sql.Driver;
25 * Basic JDBC driver implementation to help with tests
31 Driver theDriver = new TestHelper_Driver5();
35 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
34 static Driver testDriver = null;
47 public static void setDriver(Driver theDriver) {
49 // System.out.println("TestHelper_DriverManager: Test Driver set!");
52 } // end method setDriver( Driver )
61 Driver aDriver;
66 // Try to get a driver from the general pool... this should fail
69 fail("testDeregisterDriver: Didn't get exception when getting valid driver from other classloader.");
73 "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
32 public class TestHelper_Driver1 implements Driver {
41 static Driver theDriver;
47 System.out.println("Failed to register driver!");
61 // driver
TestHelper_Driver4.java 21 import java.sql.Driver;
28 * Basic JDBC driver implementation to help with tests
31 public class TestHelper_Driver4 implements Driver {
40 Driver theDriver = new TestHelper_Driver4();
44 System.out.println("Failed to register driver!");
59 // driver
DriverManagerTest.java 27 import java.sql.Driver;
44 // Set of driver names to use
84 Driver aDriver;
87 // Deregister this driver
90 assertFalse("testDeregisterDriver: Driver was not deregistered.",
93 // Re-register this driver (so subsequent tests have it available)
95 assertTrue("testDeregisterDriver: Driver did not reload.",
98 // Test deregistering a null driver
101 // Test deregistering a driver which was not loaded by this test's
103 // TODO - need to load a driver with a different classloader!
    [all...]
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 54 private static final List<Driver> theDrivers = new ArrayList<Driver>(10);
84 // Load the driver class
101 * Removes a driver from the {@code DriverManager}'s registered driver list.
102 * This will only succeed when the caller's class loader loaded the driver
103 * that is to be removed. If the driver was loaded by a different class
104 * loader, the removal of the driver fails silently.
107 * driver in the future when asked to get a {@code Connection}.
109 * @param driver
    [all...]
Driver.java 23 * An interface to a JDBC driver.
25 * 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.
31 * A driver needs to be registered with a {@link DriverManager}. It is
37 public interface Driver {
40 * Returns whether the driver thinks that it can open a connection to the
45 * @return {@code true} if the driver thinks that is can open a connection
47 * driver will respond {@code true} if it thinks that it can handle
48 * the subprotocol specified by the driver
    [all...]
  /external/clang/lib/
Makefile 13 FrontendTool Tooling Driver
  /external/clang/include/clang/Driver/
Compilation.h 13 #include "clang/Driver/Job.h"
14 #include "clang/Driver/Util.h"
19 namespace driver { namespace in namespace:clang
21 class Driver;
26 /// Compilation - A set of tasks to perform for a single driver
29 /// The driver we were created by.
30 const Driver &TheDriver;
38 /// The driver translated arguments. Note that toolchains may perform their
67 Compilation(const Driver &D, const ToolChain &DefaultToolChain,
71 const Driver &getDriver() const { return TheDriver;
    [all...]
ToolChain.h 13 #include "clang/Driver/Util.h"
14 #include "clang/Driver/Types.h"
21 namespace driver { namespace in namespace:clang
25 class Driver;
47 const Driver &D;
59 ToolChain(const Driver &D, const llvm::Triple &T);
79 const Driver &getDriver() const;
254 } // end namespace 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"
32 namespace driver { namespace in namespace:clang
45 /// Driver - Encapsulate logic for constructing compilation processes
46 /// from a set of gcc-driver-like command line arguments.
47 class Driver {
60 /// The name the driver was invoked as
    [all...]
  /external/clang/lib/Driver/
ToolChains.h 13 #include "clang/Driver/Action.h"
14 #include "clang/Driver/ToolChain.h"
23 namespace driver { namespace in namespace:clang
69 /// Driver, and has logic for fuzzing that where appropriate.
83 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
124 Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
152 Hexagon_TC(const Driver &D, const llvm::Triple& Triple);
215 Darwin(const Driver &D, const llvm::Triple& Triple);
390 DarwinClang(const Driver &D, const llvm::Triple& Triple);
417 Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args
    [all...]
Android.mk 22 Driver.cpp \
Driver.cpp 1 //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===//
10 #include "clang/Driver/Driver.h"
12 #include "clang/Driver/Action.h"
13 #include "clang/Driver/Arg.h"
14 #include "clang/Driver/ArgList.h"
15 #include "clang/Driver/Compilation.h"
16 #include "clang/Driver/DriverDiagnostic.h"
17 #include "clang/Driver/Job.h
    [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...]
  /external/clang/
Android.mk 12 lib/Driver \
25 tools/driver \
clang-tblgen-rules.mk 135 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Driver/Options.inc
136 $(intermediates)/include/clang/Driver/Options.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
137 $(intermediates)/include/clang/Driver/Options.inc: $(CLANG_ROOT_PATH)/include/clang/Driver/Options.td $(CLANG_ROOT_PATH)/include/clang/Driver/OptParser.td $(CLANG_TBLGEN)
142 LOCAL_GENERATED_SOURCES += $(intermediates)/include/clang/Driver/CC1Options.inc
143 $(intermediates)/include/clang/Driver/CC1Options.inc: TBLGEN_LOCAL_MODULE := $(LOCAL_MODULE)
144 $(intermediates)/include/clang/Driver/CC1Options.inc: $(CLANG_ROOT_PATH)/include/clang/Driver/CC1Options.td $(CLANG_ROOT_PATH)/include/clang/Driver/OptParser.td $(CLANG_TBLGEN
    [all...]
  /hardware/ti/wpan/tools/kfmapp/
Android.mk 11 ## Kerenl FM Driver Test Application
  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 20 import java.sql.Driver;
52 Driver d = DriverManager.getDriver(connectionURL);
  /libcore/luni/src/test/java/libcore/sqlite/
OldJDBCDriverTest.java 21 import java.sql.Driver;
34 private Driver returnedDriver;
53 fail("no Driver available");
56 fail("Driver does not accept URL");
68 fail("no Driver available");
71 fail("Driver does not connect");
80 fail("no Driver available");
99 fail("no Driver available");
  /external/clang/lib/Tooling/
Tooling.cpp 17 #include "clang/Driver/Compilation.h"
18 #include "clang/Driver/Driver.h"
19 #include "clang/Driver/Tool.h"
38 /// \brief Builds a clang driver initialized for running clang tools.
39 static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
42 clang::driver::Driver *CompilerDriver = new clang::driver::Driver
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 2 * Top-Level parsing and JIT Driver
  /external/clang/include/clang/
Makefile 2 DIRS := AST Basic Driver Lex Parse Sema Serialization

Completed in 481 milliseconds

1 2 3