Searched defs:bootstrap (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/tools/perf/
H A Drun_measurement14 from telemetry.util import bootstrap namespace
22 if '--print-bootstrap-deps-cros' in sys.argv:
23 print bootstrap.ListAllDepsPaths(CROS_BOOSTRAP_DEPS_PATH)
/external/chromium_org/ipc/mojo/
H A Dipc_mojo_bootstrap_unittest.cc50 scoped_ptr<IPC::MojoBootstrap> bootstrap = IPC::MojoBootstrap::Create( local
53 ASSERT_TRUE(bootstrap->Connect());
55 ASSERT_TRUE(StartClientWithFD(bootstrap->GetClientFileDescriptor()));
59 bootstrap->OnClientLaunched(client_process());
72 scoped_ptr<IPC::MojoBootstrap> bootstrap = IPC::MojoBootstrap::Create( local
77 bootstrap->Connect();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DRobolectricClassLoader.java67 public Class<?> bootstrap(Class testClass) { method in class:RobolectricClassLoader
/external/bison/
H A Dcfg.mk54 bootstrap-tools = autoconf,automake,flex,gettext,gnulib
H A Dmaint.mk1287 bootstrap-tools ?= autoconf,automake,gnulib
1328 --bootstrap-tools=$(bootstrap-tools) \
1329 $$(case ,$(bootstrap-tools), in (*,gnulib,*) \
1493 # a gnulib patch directory whose default name is gl/ (defined in bootstrap
1498 # gnulib patch directory via bootstrap.conf, this rule detects that name.
1503 if test -f bootstrap.conf; then \
1505 -e 'END{defined $$d and print $$d}' bootstrap.conf); \
/external/ltrace/
H A Dprototype.h165 int bootstrap : 1; member in struct:protolib_cache
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dfind_dependencies.py18 from telemetry.util import bootstrap namespace
36 deps_paths = bootstrap.ListAllDepsPaths(deps_file)
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DNettyHttpClient.java20 import io.netty.bootstrap.Bootstrap;
62 private Bootstrap bootstrap; field in class:NettyHttpClient
85 bootstrap = new Bootstrap();
86 bootstrap.group(new NioEventLoopGroup(concurrencyLevel))
105 Channel channel = bootstrap.connect(url.getHost(), Util.getEffectivePort(url))
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_audio.c38 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[
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGame.java62 public void bootstrap(Context context, int viewWidth, int viewHeight, int gameWidth, int gameHeight, int difficulty) { method in class:Game
/external/chromium_org/chrome/browser/extensions/
H A Dinstall_verifier.cc92 if (value == "bootstrap")
149 void LogVerifyAllSuccessHistogram(bool bootstrap, bool success) { argument
151 if (bootstrap && success)
153 else if (bootstrap && !success)
155 else if (!bootstrap && success)
396 // will bootstrap itself once the ExtensionsSystem is ready.
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_video.c35 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;

Completed in 7422 milliseconds