HomeSort by relevance Sort by last modified time
    Searched refs:setup (Results 251 - 275 of 1014) sorted by null

<<11121314151617181920>>

  /ndk/toolchains/llvm-3.3/
setup.mk 38 include $(NDK_ROOT)/toolchains/llvm-3.3/setup-common.mk
51 include $(NDK_ROOT)/toolchains/llvm-3.3/setup-common.mk
64 include $(NDK_ROOT)/toolchains/llvm-3.3/setup-common.mk
77 include $(NDK_ROOT)/toolchains/llvm-3.3/setup-common.mk
90 include $(NDK_ROOT)/toolchains/llvm-3.3/setup-common.mk
102 include $(NDK_ROOT)/toolchains/arm-linux-androideabi-clang3.3/setup.mk
113 include $(NDK_ROOT)/toolchains/arm-linux-androideabi-clang3.3/setup.mk
124 include $(NDK_ROOT)/toolchains/arm-linux-androideabi-clang3.3/setup.mk
135 include $(NDK_ROOT)/toolchains/x86-clang3.3/setup.mk
146 include $(NDK_ROOT)/toolchains/mipsel-linux-android-clang3.3/setup.m
    [all...]
config.mk 17 # the real meat is in the setup.mk file adjacent to this one
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 306 public void setup() {
324 public void setup() {
351 public void setup() {
373 public void setup() {
392 public void setup() {
414 public void setup() {
436 public void setup() {
455 public void setup() {
474 public void setup() {
493 public void setup() {
602 setup(); method
605 public void setup() { method in class:ProviderTest.MockProvider
    [all...]
  /external/libusb/libusb/
libusb.h 511 * Setup packet for control transfers. */
824 * buffer, as the setup packet comes first.
840 * Get the control setup packet of a control transfer. This convenience
841 * function is here to remind you that the control setup occupies the first
858 * Helper function to populate the setup packet (first 8 bytes of the data
862 * \param buffer buffer to output the setup packet into
883 struct libusb_control_setup *setup = (struct libusb_control_setup *) buffer; local
884 setup->bmRequestType = bmRequestType;
885 setup->bRequest = bRequest;
886 setup->wValue = libusb_cpu_to_le16(wValue)
928 struct libusb_control_setup *setup = (struct libusb_control_setup *) buffer; local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
OutputSurface.java 73 setup(); method
81 setup(); method
88 private void setup() { method in class:OutputSurface
  /external/chromium_org/third_party/libusb/src/libusb/os/
openbsd_usb.c 683 struct libusb_control_setup *setup; local
689 setup = (struct libusb_control_setup *)transfer->buffer;
692 setup->bmRequestType, setup->bRequest,
693 libusb_le16_to_cpu(setup->wValue),
694 libusb_le16_to_cpu(setup->wIndex),
695 libusb_le16_to_cpu(setup->wLength), transfer->timeout);
698 req.ucr_request.bmRequestType = setup->bmRequestType;
699 req.ucr_request.bRequest = setup->bRequest;
701 (*(uint16_t *)req.ucr_request.wValue) = setup->wValue
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
bitvect_test.c 146 runtest_(const char *testname, int (*testfunc)(void), void (*setup)(void),
150 if (setup)
151 setup();
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 73 setup(XMLReaderFactory.createXMLReader());
89 setup(xmlReader);
95 * Internal setup.
99 private void setup (XMLReader xmlReader)
98 private void setup (XMLReader xmlReader) method in class:XMLReaderAdapter
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WpsConnectionActivity.java 20 import com.android.tv.settings.connectivity.setup.MessageWizardFragment;
21 import com.android.tv.settings.connectivity.setup.SelectFromListWizardFragment;
145 wpsConfig.setup = mWpsSetup;
  /external/chromium_org/chrome/browser/ui/webui/
sync_setup_browsertest.js 8 * Test fixture for sync setup WebUI testing.
62 // that the sync setup dialog appears, and dismiss it.
73 // Handle SyncSetupStartSignIn by displaying the sync setup dialog, verifying
  /ndk/build/core/
setup-abi.mk 16 # this file is included multiple times by build/core/setup-app.mk
67 TARGET_GDB_SETUP := $(TARGET_OUT)/setup.gdb
84 include $(BUILD_SYSTEM)/setup-toolchain.mk
add-toolchain.mk 71 $(_toolchain).setup := $(wildcard $(_dir)/setup.mk)
73 $(if $(strip $($(_toolchain).setup)),,\
74 $(call __ndk_error, Toolchain $(_name) lacks a setup.mk in $(_dir)))
  /external/blktrace/
btrace.spec 35 %setup -q
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_query.c 137 lp_setup_begin_query(llvmpipe->setup, pq);
150 lp_setup_end_query(llvmpipe->setup, pq);
  /external/lldb/source/Interpreter/
wrap_python.mk 8 # setup target-specific variables; otherwise, this evaluates to a
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_query.c 137 lp_setup_begin_query(llvmpipe->setup, pq);
150 lp_setup_end_query(llvmpipe->setup, pq);
  /external/protobuf/python/
setup.py 10 from setuptools import setup namespace
100 setup(name = 'protobuf',
104 test_suite = 'setup.MakeTestSuite',
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewConfiguration.java 73 private void setup(Context context) { method in class:ShadowViewConfiguration
91 shadowOf(viewConfiguration).setup(context);
  /external/valgrind/main/none/tests/linux/
mremap2.c 45 char* setup ( void* other_stuff, int other_len ) function
131 src = setup( tidythis, tidylen );
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 264 * was last set to in a call to {@link #setup(int, int, Rect)}.
272 * was last set to in a call to {@link #setup(int, int, Rect)}.
369 * Initializes the hardware renderer for the specified surface and setup the
372 * reinitialized and setup when the render {@link #isRequested()} and
389 setup(width, height, surfaceInsets); method
404 abstract void setup(int width, int height, Rect surfaceInsets); method in class:HardwareRenderer
  /ndk/toolchains/llvm-3.4/
config.mk 17 # the real meat is in the setup.mk file adjacent to this one
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
JPEGInputStream.java 167 int flag = setup(dimens, in, mFormat);
170 break; // allow setup to continue
182 native private int setup(Point dimens, InputStream in, int format); method in class:JPEGInputStream
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_core.py 13 # setup script that uses __file__
18 from distutils.core import setup
19 setup()
27 from distutils.core import setup
28 setup()
34 def setUp(self):
35 super(CoreTestCase, self).setUp()
64 # setup.py script will raise NameError.
69 # This tests that the setup script is run with the current directory
75 # Create a directory and write the setup.py file there
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_core.py 13 # setup script that uses __file__
18 from distutils.core import setup
19 setup()
27 from distutils.core import setup
28 setup()
34 def setUp(self):
35 super(CoreTestCase, self).setUp()
64 # setup.py script will raise NameError.
69 # This tests that the setup script is run with the current directory
75 # Create a directory and write the setup.py file there
    [all...]
  /bionic/libc/tools/zoneinfo/
update-tzdata.py 58 setup = open('setup', 'w')
60 setup.write(link)
62 setup.write('%s\n' % zone)
63 setup.close()
175 'setup', 'data', 'extracted/zone.tab',
179 # Run with no arguments from any directory, with no special setup required.

Completed in 2325 milliseconds

<<11121314151617181920>>