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

12

/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Driver2.java20 import java.sql.Driver;
31 Driver theDriver = new TestHelper_Driver2();
H A DTestHelper_Driver5.java20 import java.sql.Driver;
31 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
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;
H A DTestHelper_Driver1.java21 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;
H A DTestHelper_Driver4.java21 import java.sql.Driver;
31 public class TestHelper_Driver4 implements Driver {
40 Driver theDriver = new TestHelper_Driver4();
H A DDriverManagerTest.java27 import java.sql.Driver;
84 Driver aDriver;
90 assertFalse("testDeregisterDriver: Driver was not deregistered.",
95 assertTrue("testDeregisterDriver: Driver did not reload.",
112 Class<?>[] methodClasses = { Class.forName("java.sql.Driver") };
120 "testDeregisterDriver: Driver was incorrectly deregistered.",
132 static boolean isDriverLoaded(Driver theDriver) {
135 if ((Driver) driverList.nextElement() == theDriver) {
140 } // end method isDriverLoaded( Driver )
296 Driver validDrive
[all...]
/external/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/clang/lib/
H A DMakefile13 FrontendTool Tooling Driver
/external/clang/include/clang/Driver/
H A DCompilation.h13 #include "clang/Driver/Job.h"
14 #include "clang/Driver/Util.h"
21 class Driver;
30 const Driver &TheDriver;
67 Compilation(const Driver &D, const ToolChain &DefaultToolChain,
71 const Driver &getDriver() const { return TheDriver; }
H A DToolChain.h13 #include "clang/Driver/Util.h"
14 #include "clang/Driver/Types.h"
25 class Driver;
47 const Driver &D;
59 ToolChain(const Driver &D, const llvm::Triple &T);
79 const Driver &getDriver() const;
/external/clang/lib/Driver/
H A DToolChains.h13 #include "clang/Driver/Action.h"
14 #include "clang/Driver/ToolChain.h"
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)
429 Generic_ELF(const Driver
[all...]
H A DAndroid.mk22 Driver.cpp \
H A DDriver.cpp1 //===--- 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/Jo
46 Driver::Driver(StringRef ClangExecutable, function in class:Driver
[all...]
/external/clang/
H A DAndroid.mk12 lib/Driver \
H A Dclang-tblgen-rules.mk135 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/OptParse
[all...]
/external/clang/lib/Tooling/
H A DTooling.cpp17 #include "clang/Driver/Compilation.h"
18 #include "clang/Driver/Driver.h"
19 #include "clang/Driver/Tool.h"
39 static clang::driver::Driver *newDriver(clang::DiagnosticsEngine *Diagnostics,
42 clang::driver::Driver *CompilerDriver = new clang::driver::Driver(
157 const llvm::OwningPtr<clang::driver::Driver> Driver(
160 Driver
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/clang/include/clang/
H A DMakefile2 DIRS := AST Basic Driver Lex Parse Sema Serialization
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml2 * Top-Level parsing and JIT Driver
/external/llvm/test/Bindings/Ocaml/
H A Dtarget.ml55 (*===-- Driver ------------------------------------------------------------===*)
/external/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp18 #include "clang/Driver/Compilation.h"
19 #include "clang/Driver/Driver.h"
20 #include "clang/Driver/ArgList.h"
21 #include "clang/Driver/Options.h"
22 #include "clang/Driver/Tool.h"
51 driver::Driver TheDriver("clang", llvm::sys::getDefaultTargetTriple(),

Completed in 1522 milliseconds

12