HomeSort by relevance Sort by last modified time
    Searched refs:bootstrap (Results 1 - 25 of 45) sorted by null

1 2

  /ndk/sources/host-tools/sed-4.2.1/
Makefile.am 11 noinst_DATA = bootstrap.sh
26 cmp bootstrap.sh $(srcdir)/bootstrap.sh > /dev/null 2>&1 || \
27 cp -p bootstrap.sh $(srcdir)/bootstrap.sh
28 cp -p $(srcdir)/bootstrap.sh $(distdir)/bootstrap.sh
bootstrap.sh 11 /* A bootstrap version of config.h, for systems which can't
16 re-build starting with a run of "configure", as the bootstrap
25 #define BOOTSTRAP 1
bootstrap.sh.in 11 /* A bootstrap version of config.h, for systems which can't
16 re-build starting with a run of "configure", as the bootstrap
25 #define BOOTSTRAP 1
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
DES.pm 17 bootstrap DES;
  /external/openssl/crypto/des/
DES.pm 17 bootstrap DES;
  /libcore/libdvm/src/main/java/dalvik/system/
VMStack.java 30 * bootstrap class loader.
65 public static ClassLoader getClosestUserClassLoader(ClassLoader bootstrap,
70 if (loader != null && loader != bootstrap && loader != system) {
  /libcore/libart/src/main/java/dalvik/system/
VMStack.java 30 * bootstrap class loader.
54 public native static ClassLoader getClosestUserClassLoader(ClassLoader bootstrap,
  /art/runtime/native/
dalvik_system_VMStack.cc 78 ClosestUserClassLoaderVisitor(Thread* thread, mirror::Object* bootstrap, mirror::Object* system)
79 : StackVisitor(thread, NULL), bootstrap(bootstrap), system(system), class_loader(NULL) {}
85 if (cl != NULL && cl != bootstrap && cl != system) {
92 mirror::Object* bootstrap; member in struct:art::ClosestUserClassLoaderVisitor
97 mirror::Object* bootstrap = soa.Decode<mirror::Object*>(javaBootstrap); local
99 ClosestUserClassLoaderVisitor visitor(soa.Self(), bootstrap, system);
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
SampleGenPlugin.groovy 79 project.task([type: GradleBuild], 'bootstrap', {
84 project.bootstrap.dependsOn(project.processTemplates)
85 project.bootstrap.dependsOn(project.processCommon)
86 project.create.dependsOn(project.bootstrap)
  /dalvik/tools/
dex-preopt 25 # bootstrap classes must be created before this can be run on other files;
26 # use the "--bootstrap" option to do this.
50 # of bootstrap classpath elements, colon-separated. Order is significant
57 # --bootstrap -- Process the bootstrap classes. If this is specified,
77 bootstrap='no'
128 elif [ "${option}" = 'bootstrap' -a "${hasValue}" = 'no' ]; then
129 bootstrap='yes'
144 # Check and set up the input and output files. In the case of bootstrap
148 if [ "${bootstrap}" = 'yes' ]; the
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_audio.c 38 static AudioBootStrap *bootstrap[] = { variable
319 for ( i=0; bootstrap[i]; ++i ) {
320 if ( SDL_strcasecmp(bootstrap[i]->name, "esd") == 0 ) {
330 if ( bootstrap[i]->available() ) {
331 audio = bootstrap[i]->create(0);
350 for ( i=0; bootstrap[i]; ++i ) {
351 if (SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
352 if ( bootstrap[i]->available() ) {
353 audio=bootstrap[i]->create(idx);
359 for ( i=0; bootstrap[i]; ++i )
    [all...]
  /external/chromium_org/tools/perf/
run_measurement 18 # Directory in which to save bootstrap files.
27 """Find the location of our Chromium or bootstrap checkout.
59 bootstrap = imp.new_module('bootstrap')
60 exec bootstrap_txt in bootstrap.__dict__
61 bootstrap.DownloadDeps(BOOTSTRAP_BASE_PATH, bootstrap_deps_url)
81 if '--print-bootstrap-deps' in sys.argv:
  /external/chromium_org/chrome/common/
multi_process_lock_mac.cc 11 #include <servers/bootstrap.h>
  /external/chromium_org/tools/clang/scripts/
update.sh 16 LLVM_BOOTSTRAP_DIR="${LLVM_DIR}/../llvm-bootstrap"
35 bootstrap=
45 --bootstrap)
46 bootstrap=yes
70 echo "--bootstrap: First build clang with CC, then with itself."
228 # Build bootstrap clang if requested.
229 if [[ -n "${bootstrap}" ]]; then
230 echo "Building bootstrap compiler"
234 # The bootstrap compiler only needs to be able to build the real compiler,
package.sh 11 LLVM_BOOTSTRAP_DIR="${THIS_DIR}/../../../third_party/llvm-bootstrap"
33 "${THIS_DIR}"/update.sh --run-tests --bootstrap --force-local-build 2>&1 | \
  /external/grub/docs/
menu.lst 41 module (fd0)/boot/bootstrap
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
RobolectricClassLoader.java 67 public Class<?> bootstrap(Class testClass) { method in class:RobolectricClassLoader
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/
RobolectricTestRunner.java 252 : ensureClassLoaderNotNull(classLoader).bootstrap(testClass));
270 Class<?> delegateClass = classLoader.bootstrap(this.getClass());
273 this.delegate = (RobolectricTestRunnerInterface) constructorForDelegate.newInstance(classLoader.bootstrap(testClass));
  /external/bison/build-aux/
gnu-web-doc-update 70 # FIXME: code duplication, see also bootstrap.
100 # Requirements: everything required to bootstrap your package, plus
157 ./bootstrap
  /external/chromium/base/
mach_ipc_mac.h 11 #include <servers/bootstrap.h>
  /ndk/build/tools/
gen-platforms.sh 701 # Copy the prebuilt binaries to bootstrap GCC
704 copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib-bootstrap/lib $SYSROOT_DST/lib "x86 sysroot libs (boostrap)"
705 copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib-bootstrap/lib64 $SYSROOT_DST/lib64 "x86_64 sysroot libs (boostrap)"
706 copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib-bootstrap/libx32 $SYSROOT_DST/libx32 "x32 sysroot libs (boostrap)"
708 copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib-bootstrap $SYSROOT_DST/lib "$ARCH sysroot libs (boostrap)"
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_video.c 35 static VideoBootStrap *bootstrap[] = { variable
183 for ( i=0; bootstrap[i]; ++i ) {
184 if ( SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) {
185 if ( bootstrap[i]->available() ) {
186 video = bootstrap[i]->create(index);
192 for ( i=0; bootstrap[i]; ++i ) {
193 if ( bootstrap[i]->available() ) {
194 video = bootstrap[i]->create(index);
206 current_video->name = bootstrap[i]->name;
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartDataUsageView.java 665 SpannableStringBuilder builder, Object key, CharSequence text, String bootstrap) {
669 start = TextUtils.indexOf(builder, bootstrap);
670 end = start + bootstrap.length();
  /external/chromium_org/chrome/browser/extensions/
extension_service.h 212 // See if we need to bootstrap the install verifier.
216 // |bootstrap| parameter indicates whether we're doing this because the
219 void VerifyAllExtensions(bool bootstrap);
223 void FinishVerifyAllExtensions(bool bootstrap, bool success);
    [all...]
  /external/kernel-headers/original/linux/netfilter/
x_tables.h 304 struct xt_table_info *bootstrap,

Completed in 455 milliseconds

1 2