/external/chromium_org/third_party/mesa/src/src/mesa/drivers/common/ |
driverfuncs.c | 70 _mesa_init_driver_functions(struct dd_function_table *driver) 72 memset(driver, 0, sizeof(*driver)); 74 driver->GetString = NULL; /* REQUIRED! */ 75 driver->UpdateState = NULL; /* REQUIRED! */ 76 driver->GetBufferSize = NULL; /* REQUIRED! */ 77 driver->ResizeBuffers = _mesa_resize_framebuffer; 78 driver->Error = NULL; 80 driver->Finish = NULL; 81 driver->Flush = NULL [all...] |
/external/mesa3d/src/mesa/drivers/common/ |
driverfuncs.c | 70 _mesa_init_driver_functions(struct dd_function_table *driver) 72 memset(driver, 0, sizeof(*driver)); 74 driver->GetString = NULL; /* REQUIRED! */ 75 driver->UpdateState = NULL; /* REQUIRED! */ 76 driver->GetBufferSize = NULL; /* REQUIRED! */ 77 driver->ResizeBuffers = _mesa_resize_framebuffer; 78 driver->Error = NULL; 80 driver->Finish = NULL; 81 driver->Flush = NULL [all...] |
/external/clang/include/clang/ |
CMakeLists.txt | 3 add_subdirectory(Driver)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
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...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
driver_i.h | 2 * wpa_supplicant - Internal driver interface wrappers 12 #include "drivers/driver.h" 18 if (wpa_s->driver->init2) 19 return wpa_s->driver->init2(wpa_s, ifname, 21 if (wpa_s->driver->init) { 22 return wpa_s->driver->init(wpa_s, ifname); 29 if (wpa_s->driver->deinit) 30 wpa_s->driver->deinit(wpa_s->drv_priv); 36 if (wpa_s->driver->set_param) 37 return wpa_s->driver->set_param(wpa_s->drv_priv, param) [all...] |
/external/bison/examples/calc++/ |
calc++.cc | 3 #include "calc++-driver.hh" 9 calcxx_driver driver; local 12 driver.trace_parsing = true; 14 driver.trace_scanning = true; 15 else if (!driver.parse (argv[i])) 16 std::cout << driver.result << std::endl;
|
/external/chromium_org/gpu/config/ |
DEPS | 3 "+third_party/libXNVCtrl", # For NV driver version query.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
atm_eni.h | 1 /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by 2 driver-specific utilities) */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atm_eni.h | 1 /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by 2 driver-specific utilities) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atm_eni.h | 1 /* atm_eni.h - Driver-specific declarations of the ENI driver (for use by 2 driver-specific utilities) */
|
/external/chromium/net/data/ftp/ |
dir-listing-netware-2.expected | 11 Driver
|
/external/chromium_org/net/data/ftp/ |
dir-listing-netware-2.expected | 11 Driver
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/target-helpers/ |
inline_wrapper_sw_helper.h | 18 const char *driver; local 20 driver = debug_get_option("GALLIUM_DRIVER", "native"); 21 if (strcmp(driver, "native") == 0) 28 sw_screen = sw_screen_create_named(sws, driver);
|
inline_sw_helper.h | 24 sw_screen_create_named(struct sw_winsys *winsys, const char *driver) 29 if (screen == NULL && strcmp(driver, "llvmpipe") == 0) 46 const char *driver; local 56 driver = debug_get_option("GALLIUM_DRIVER", default_driver); 57 return sw_screen_create_named(winsys, driver);
|
/external/mesa3d/src/gallium/auxiliary/target-helpers/ |
inline_wrapper_sw_helper.h | 18 const char *driver; local 20 driver = debug_get_option("GALLIUM_DRIVER", "native"); 21 if (strcmp(driver, "native") == 0) 28 sw_screen = sw_screen_create_named(sws, driver);
|
inline_sw_helper.h | 24 sw_screen_create_named(struct sw_winsys *winsys, const char *driver) 29 if (screen == NULL && strcmp(driver, "llvmpipe") == 0) 46 const char *driver; local 56 driver = debug_get_option("GALLIUM_DRIVER", default_driver); 57 return sw_screen_create_named(winsys, driver);
|
/external/wpa_supplicant_8/src/ap/ |
ap_drv_ops.h | 2 * hostapd - Driver operations 106 #include "drivers/driver.h" 115 if (hapd->driver == NULL || 116 hapd->driver->hapd_set_countermeasures == NULL) 118 return hapd->driver->hapd_set_countermeasures(hapd->drv_priv, enabled); 125 if (hapd->driver == NULL || hapd->driver->set_sta_vlan == NULL) 127 return hapd->driver->set_sta_vlan(hapd->drv_priv, addr, ifname, 134 if (hapd->driver == NULL || hapd->driver->get_inact_sec == NULL [all...] |
/external/chromium_org/chrome/test/functional/ |
pyauto_webdriver.py | 15 driver = self.NewWebDriver() 16 driver.get('about:blank') 17 driver.execute_script('document.body.innerHTML = "<input type=\'text\'>"') 18 input = driver.find_element_by_tag_name('input') 25 driver = self.NewWebDriver() 27 driver = self.NewWebDriver() 28 driver.get('about:blank') 29 self.assertEquals('about:blank', driver.title)
|
about_plugins_ui.py | 20 driver = self.NewWebDriver() 21 detail_link = driver.find_element_by_id('details-link') 27 self.assertTrue(self.WaitUntil(lambda: len(driver.find_elements_by_xpath( 40 driver = self.NewWebDriver() 44 def _IsEnabled(self, driver, plugin_name): 48 driver: A Chrome driver object. 56 return driver.execute_script(check_plugin_enabled_js) 58 def _ExpandDetailInfoLink(self, driver): 62 driver: A Chrome driver object [all...] |
/external/clang/test/Driver/ |
integrated-as.c | 3 // gcc is invoked instead of clang-cc1as with gcc-driver -save-temps. 4 // REQUIRES: clang-driver
|
linker-opts.c | 4 // GCC driver is used as linker on cygming. It should be aware of LIBRARY_PATH. 6 // REQUIRES: clang-driver
|
/external/chromium_org/third_party/mesa/src/src/egl/main/ |
README.txt | 9 calls into driver-specific functions. 11 2. Fallbacks for EGL API functions. A driver _could_ implement all the 19 When the apps calls eglOpenDisplay() a device driver is selected and loaded 22 The driver's _eglMain() function is then called. This driver function 29 driver->API.Initialize and driver->API.Terminate _must_ be implemented 30 with driver-specific code (no default/fallback function is possible). 34 to the driver->API.Initialize() function. Any additional driver [all...] |
/external/mesa3d/src/egl/main/ |
README.txt | 9 calls into driver-specific functions. 11 2. Fallbacks for EGL API functions. A driver _could_ implement all the 19 When the apps calls eglOpenDisplay() a device driver is selected and loaded 22 The driver's _eglMain() function is then called. This driver function 29 driver->API.Initialize and driver->API.Terminate _must_ be implemented 30 with driver-specific code (no default/fallback function is possible). 34 to the driver->API.Initialize() function. Any additional driver [all...] |
/external/droiddriver/samples/testapp/tests/src/com/google/android/apps/common/testing/ui/testapp/ |
AbstractSendActivityTest.java | 16 private DroidDriver driver; field in class:AbstractSendActivityTest 28 if (driver == null) { 29 driver = getDriver(); 35 driver.on(By.text(activity.getString(R.string.button_send))).click(); 36 assertTrue(driver.on(By.text(getDisplayTitle())).isVisible()); 40 driver.on(By.xpath("//ScrollView//Button")).click(); 41 assertTrue(driver.on(By.xpath("//TextView" + XPaths.text(getDisplayTitle()))).isVisible());
|
/system/core/rootdir/etc/ |
mountd.conf | 14 ## path to the UMS driver file for specifying the block device path 15 ## use this for the mass_storage function driver 17 ## use this for android_usb composite gadget driver
|