HomeSort by relevance Sort by last modified time
    Searched refs:driver (Results 101 - 125 of 1447) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DeLorian.java 25 @Inject @Driver Provider<Person> driver; field in class:DeLorian
  /external/icu/icu4c/source/test/intltest/
dadrfmt.h 49 TestDataModule *driver; member in class:DataDrivenFormatTest
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/csv/
CSVGroupHandlerTest.java 35 private ReportStructureTestDriver driver; field in class:CSVGroupHandlerTest
43 driver = new ReportStructureTestDriver();
48 driver.sendBundle(handler);
58 driver.sendGroup(handler);
  /external/kernel-headers/original/uapi/linux/
kernelcapi.h 25 char driver[32]; member in struct:kcapi_carddef
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
kernelcapi.h 24 char driver[32]; member in struct:kcapi_carddef
  /external/autotest/client/cros/cellular/
scpi.py 52 The SCPI driver must export: Query, Send, Reset and Close
55 def __init__(self, driver, opc_on_stanza=False):
56 self.driver = driver
62 response = self.driver.Query(command)
67 self.driver.Send(command)
73 self.driver.Reset()
77 self.driver.Close()
93 # really only accept -420 if the underlying driver is in a
scpi_shell 23 driver = prologix_scpi_driver.PrologixScpiDriver(hostname=target, variable
26 s = scpi.Scpi(driver)
  /external/droiddriver/src/io/appium/droiddriver/base/
DefaultPoller.java 60 public <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker) {
61 return pollFor(driver, finder, checker, timeoutMillis);
65 public <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker,
71 driver.refreshUiElementTree();
78 return checker.check(driver, finder);
84 pollingListener.onPolling(driver, finder);
90 timeoutListener.onTimeout(driver, finder);
  /external/ltp/testcases/kernel/device-drivers/v4l/user_space/
test_VIDIOC_QUERYCAP.c 71 dprintf("\tcap = { .driver = \"%s\", .card = \"%s\", "
76 cap.driver,
90 CU_ASSERT(0 < strlen((char *)cap.driver));
91 CU_ASSERT(valid_string((char *)cap.driver, sizeof(cap.driver)));
110 /* Check if the unused bytes of the driver, card and bus_info
116 strncpy((char *)cap2.driver, (char *)cap.driver,
117 sizeof(cap2.driver));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
support.py 14 from lib2to3.pgen2 import driver
19 grammar = driver.load_grammar(grammar_path)
20 driver = driver.Driver(grammar, convert=pytree.convert) variable
23 return driver.parse_string(reformat(string), debug=True)
  /external/autotest/server/cros/ap_configurators/
belkinF9K1103_ap_configurator.py 35 self.driver.delete_all_cookies()
38 self.driver.switch_to_default_content()
39 frame = self.driver.find_element_by_name('mainFrame')
40 self.driver.switch_to_frame(frame)
47 element = self.driver.find_element_by_id('60')
103 self.driver.switch_to_default_content()
104 frame = self.driver.find_element_by_name('mainFrame')
105 self.driver.switch_to_frame(frame)
110 self.driver.get(page_url)
111 self.wait.until(lambda _:'index.htm' in self.driver.title
    [all...]
web_driver_core_helpers.py 18 self.driver = None
19 self.wait = WebDriverWait(self.driver, timeout=5)
31 alert = self.driver.switch_to_alert()
45 self.driver.find_element_by_xpath(xpath)
64 alert = self.driver.switch_to_alert()
87 self.wait = WebDriverWait(self.driver, timeout=time)
92 self.wait = WebDriverWait(self.driver, timeout=5)
173 self.driver.get(page_url)
176 self.wait.until(lambda _: page_title in self.driver.title)
178 self.driver.get(page_url
    [all...]
netgear3700_ap_configurator.py 31 frame1 = self.driver.find_element_by_xpath('//frame[@name="contents"]')
32 frame2 = self.driver.switch_to_frame(frame1)
35 default = self.driver.switch_to_default_content()
36 setframe = self.driver.find_element_by_xpath(
38 settings = self.driver.switch_to_frame(setframe)
74 self.driver.switch_to_default_content()
belkinF7D1301_ap_configurator.py 32 self.wait.until(lambda _:'index.htm' in self.driver.title)
35 if (self.driver.find_element_by_xpath(xpath)):
  /external/mesa3d/src/gallium/targets/libgl-gdi/
libgl_gdi.c 65 const char *driver; local
81 driver = debug_get_option("GALLIUM_DRIVER", default_driver);
84 if (strcmp(driver, "llvmpipe") == 0) {
91 if (strcmp(driver, "swr") == 0) {
97 (void) driver;
121 * been introduced between the state-trackers and the pipe driver.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 14 from lib2to3.pgen2 import driver
19 grammar = driver.load_grammar(grammar_path)
20 driver = driver.Driver(grammar, convert=pytree.convert) variable
23 return driver.parse_string(reformat(string), debug=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 14 from lib2to3.pgen2 import driver
19 grammar = driver.load_grammar(grammar_path)
20 driver = driver.Driver(grammar, convert=pytree.convert) variable
23 return driver.parse_string(reformat(string), debug=True)
  /test/vts/drivers/hal/common/include/driver_manager/
VtsHalDriverManager.h 40 // Loads the driver library for the target HAL, creates the corresponding
41 // driver instance, assign it a driver id and registers the created driver
43 // Returns the generated driver id.
53 // the corresonding driver instance. If func_msg specified the driver_id,
54 // use the driver instance corresponds to driver_id, otherwise, use the
55 // default driver instance (with driver_id = 0).
61 // driver id.
64 // Searches hal_driver_map_ for Hidl HAL driver instance with the give
147 std::unique_ptr<DriverBase> driver; member in struct:android::vts::VtsHalDriverManager::HalDriverInfo
    [all...]
  /prebuilts/tools/common/fest/
fest-swing-1.2.1.jar 
  /external/syslinux/gpxe/src/drivers/bus/
eisa.c 44 * Searches for a driver for the EISA device. If a driver is found,
48 struct eisa_driver *driver; local
57 for_each_table_entry ( driver, EISA_DRIVERS ) {
58 for ( i = 0 ; i < driver->id_count ; i++ ) {
59 id = &driver->ids[i];
65 eisa->driver = driver;
67 DBG ( "...using driver %s\n", eisa->driver_name );
68 if ( ( rc = driver->probe ( eisa, id ) ) != 0 )
    [all...]
mca.c 2 * MCA bus driver code
26 * Searches for a driver for the MCA device. If a driver is found,
30 struct mca_driver *driver; local
41 for_each_table_entry ( driver, MCA_DRIVERS ) {
42 for ( i = 0 ; i < driver->id_count ; i++ ) {
43 id = &driver->ids[i];
46 mca->driver = driver;
48 DBG ( "...using driver %s\n", mca->driver_name )
    [all...]
  /external/mesa3d/src/egl/drivers/haiku/
egl_haiku.cpp 322 * This is the main entrypoint into the driver, called by libEGL.
331 struct haiku_egl_driver* driver; local
332 driver = (struct haiku_egl_driver*) calloc(1, sizeof(*driver));
333 if (!driver) {
338 _eglInitDriverFallbacks(&driver->base);
339 driver->base.API.Initialize = init_haiku;
340 driver->base.API.Terminate = haiku_terminate;
341 driver->base.API.CreateContext = haiku_create_context;
342 driver->base.API.DestroyContext = haiku_destroy_context
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/uiautomation/
UiAutomationDriver.java 129 void clearAccessibilityNodeInfoCache(UiAutomationDriver driver);
137 public void clearAccessibilityNodeInfoCache(UiAutomationDriver driver) {
138 driver.getUiDevice().sleep();
139 driver.getUiDevice().wakeUp();
149 public void clearAccessibilityNodeInfoCache(UiAutomationDriver driver) {
151 (AccessibilityManager) driver.context.getInstrumentation().getTargetContext()
UiAutomationContext.java 32 public UiAutomationContext(Instrumentation instrumentation, UiAutomationDriver driver) {
33 super(instrumentation, driver);
  /external/freetype/src/type1/
t1objs.c 64 module = FT_Get_Module( size->root.face->driver->root.library,
164 module = FT_Get_Module( slot->face->driver->root.library,
337 FT_TRACE2(( "Type 1 driver\n" ));
573 /* Initializes a given Type 1 driver object. */
576 /* driver :: A handle to the target driver object. */
584 PS_Driver driver = (PS_Driver)module; local
591 driver->hinting_engine = FT_HINTING_FREETYPE;
593 driver->hinting_engine = FT_HINTING_ADOBE;
596 driver->no_stem_darkening = TRUE
    [all...]

Completed in 567 milliseconds

1 2 3 45 6 7 8 91011>>