HomeSort by relevance Sort by last modified time
    Searched refs:driver (Results 476 - 500 of 1221) sorted by null

<<11121314151617181920>>

  /external/clang/include/clang/Driver/
Compilation.h 13 #include "clang/Driver/Job.h"
14 #include "clang/Driver/Util.h"
26 namespace driver { namespace in namespace:clang
27 class Driver;
32 /// Compilation - A set of tasks to perform for a single driver
35 /// The driver we were created by.
36 const Driver &TheDriver;
47 /// The driver translated arguments. Note that toolchains may perform their
79 Compilation(const Driver &D, const ToolChain &DefaultToolChain,
84 const Driver &getDriver() const { return TheDriver;
    [all...]
Job.h 24 namespace driver { namespace in namespace:clang
30 // Re-export this as clang::driver::ArgStringList.
89 // error handling in Driver::generateCompilationDiagnostics.
171 } // end namespace driver
  /external/google-breakpad/autotools/
test-driver 2 # test-driver - basic testsuite driver script.
45 test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
62 --version) echo "test-driver $scriptversion"; exit $?;;
  /external/icu/icu4c/source/test/intltest/
dadrcal.cpp 32 driver = TestDataModule::getTestDataModule("calendar", *this, status);
36 delete driver;
41 if (driver != NULL) {
47 TestData *testData = driver->createTestData(index, status);
  /external/libmicrohttpd/
test-driver 2 # test-driver - basic testsuite driver script.
45 test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
62 --version) echo "test-driver $scriptversion"; exit $?;;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_context.h 102 (to_nouveau_context(ctx)->screen->driver)
  /external/pcre/dist/
test-driver 2 # test-driver - basic testsuite driver script.
45 test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
62 --version) echo "test-driver $scriptversion"; exit $?;;
  /external/protobuf/gtest/build-aux/
test-driver 2 # test-driver - basic testsuite driver script.
45 test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
62 --version) echo "test-driver $scriptversion"; exit $?;;
  /external/protobuf/
test-driver 2 # test-driver - basic testsuite driver script.
45 test-driver --test-name=NAME --log-file=PATH --trs-file=PATH
62 --version) echo "test-driver $scriptversion"; exit $?;;
  /external/selinux/libsepol/include/sepol/policydb/
avtab.h 78 uint8_t driver; member in struct:avtab_extended_perms
  /external/skia/src/gpu/gl/builders/
GrGLShaderStringBuilder.cpp 57 bool checkCompiled = kChromium_GrGLDriver != glCtx.driver();
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_linux.c 169 ioc.driver = driver_magic;
205 strcpy(info.driver, "?");
206 strcat(info.driver, type);
217 strcpy(buf, info.driver);
288 * If dhd_check() fails then go for a regular wl driver verification
512 fprintf(stderr, "%s: wl driver adapter not found\n", av0);
  /external/autotest/client/tests/kvm/tests/
unattended_install.py 140 'driver image has this file')
160 driver floppy disk. Important to note that it's possible to specify
161 drivers from a CDROM, so the floppy driver copy is optional.
307 # Now, replacing the virtio network driver path, under double quotes
316 driver = self.virtio_network_installer_path
318 driver = 'dir'
323 installer = re.sub(dummy_re, driver, installer)
353 # Now, replacing the virtio driver paths or removing the entire
378 driver = self.virtio_network_installer_path
380 driver = 'dir
    [all...]
  /art/compiler/driver/
compiler_driver.cc 47 #include "driver/compiler_options.h"
497 Thread* self, const CompilerDriver& driver, Handle<mirror::ClassLoader> class_loader,
501 if (runtime->UseJitCompilation() || driver.GetCompilerOptions().VerifyAtRuntime()) {
534 const CompilerDriver& driver,
542 return GetDexToDexCompilationLevel(self, driver, class_loader, dex_file, class_def);
561 CompilerDriver* driver,
572 REQUIRES(!driver->compiled_methods_lock_) {
573 DCHECK(driver != nullptr);
578 if (driver->GetCurrentDexToDexMethods() != nullptr) {
582 if (driver->GetCurrentDexToDexMethods()->IsBitSet(method_idx))
2662 CompilerDriver* const driver = manager_->GetCompiler(); variable
    [all...]
  /art/compiler/optimizing/
intrinsics.h 36 IntrinsicsRecognizer(HGraph* graph, CompilerDriver* driver, OptimizingCompilerStats* stats)
38 driver_(driver) {}
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
Android.mk 62 endif # building 'real' driver BUILD_EMULATOR_OPENGL_DRIVER
  /external/autotest/server/cros/ap_configurators/
linksyse_single_band_configurator.py 142 ssid_field = self.driver.find_element_by_xpath(xpath)
151 self._sec_alert(self.driver.switch_to_alert())
netgear_WNDR_dual_band_configurator.py 101 if 'NETGEAR Router' in self.driver.title:
111 self.driver.refresh()
trendnet_ap_configurator.py 74 logging.info('Page did not load completely. Refresh driver')
75 self.driver.refresh()
86 html = self.driver.execute_script(
  /external/clang/include/clang/Tooling/
Tooling.h 38 #include "clang/Driver/Util.h"
52 namespace driver { namespace in namespace:clang
54 } // end namespace driver
213 /// (see clang driver implementation) or mapped in via mapVirtualFile.
258 clang::driver::Compilation *Compilation,
425 /// defined had the compiler driver been invoked through the path InvokedAs.
428 /// the arguments '-target', 'i686-linux-android`, `--driver-mode=g++` will
431 /// This function will not add new `-target` or `--driver-mode` flags if they
437 /// \param CommandLine the command line used to invoke the compiler driver or
439 /// \param InvokedAs the path to the driver used to infer implicit flags
    [all...]
  /external/clang/lib/Driver/
MinGWToolChain.cpp 11 #include "clang/Driver/Driver.h"
12 #include "clang/Driver/Options.h"
18 using namespace clang::driver;
19 using namespace clang::driver::toolchains;
65 MinGW::MinGW(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
Types.cpp 1 //===--- Types.cpp - Driver input & temporary type information ------------===//
10 #include "clang/Driver/Types.h"
16 using namespace clang::driver;
17 using namespace clang::driver::types;
29 #include "clang/Driver/Types.def"
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 18 #include "clang/Driver/Options.h"
167 std::unique_ptr<OptTable> Opts(driver::createDriverOptTable());
170 /*Include=*/ driver::options::CC1Option, /*Exclude=*/ 0);
  /external/libpcap/msdos/
pkt_rx1.s 70 ; This routine gets called by the packet driver twice:
119 retf ; far return to driver with ES:DI
  /external/mesa3d/src/glx/
dri_glx.c 75 void *driver; member in struct:dri_screen
97 * the DRI driver for the screen (i.e., "i965", "radeon", "nouveau", etc).
123 ErrorMessageF("Cannot determine driver name for screen %d\n",
148 * Exported function for querying the DRI driver for a given screen.
173 * Exported function for obtaining a driver's option list (UTF-8 encoded XML).
175 * The returned char pointer points directly into the driver. Therefore
178 * If the driver was not found or does not support configuration NULL is
181 * Note: The driver remains opened after this function returns.
306 * driver's \c __driCreateNewScreen function.
312 * \param createNewScreen Pointer to the client-side driver'
    [all...]

Completed in 674 milliseconds

<<11121314151617181920>>