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

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/
Makefile.cvs 3 configure:
4 ./autogen.sh --no-configure
8 .PHONY: configure
  /external/libvncserver/
autogen.sh 4 ./configure
  /hardware/intel/img/psb_video/
autogen.sh 3 ./configure "$@"
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/
BasicConfigurator.java 23 public static void configure() { method in class:BasicConfigurator
26 public static void configure(Appender appender) { method in class:BasicConfigurator
PropertyConfigurator.java 29 public static void configure(Properties properties) { method in class:PropertyConfigurator
32 public static void configure(String configFilename) { method in class:PropertyConfigurator
35 public static void configure(java.net.URL configURL) { method in class:PropertyConfigurator
  /external/guice/core/src/com/google/inject/
Module.java 28 * <p>In addition to the bindings configured via {@link #configure}, bindings
30 * Use scope and binding annotations on these methods to configure the
42 void configure(Binder binder); method in interface:Module
  /frameworks/data-binding/extensions/
publishExtensions.sh 2 ./gradlew l:upArch --configure-on-demand && ./gradlew bA:upArch --configure-on-demand
  /external/c-ares/
maketgz 36 if(!-f "configure") {
40 print "adding $version in the configure.ac file\n";
41 `sed -e 's/AC_INIT.*/AC_INIT([c-ares], [$version],/' < configure.ac > configure.ac.dist`;
43 # now make a new configure script with this
44 print "makes a new configure script\n";
45 `autoconf configure.ac.dist >configure`;
47 # now run this new configure to get a fine makefile
48 print "running configure\n"
    [all...]
  /external/guice/extensions/struts2/src/com/google/inject/struts2/
Struts2GuicePluginModule.java 30 protected void configure() { method in class:Struts2GuicePluginModule
  /external/zlib/src/
configure 2 # configure script for zlib.
4 # Normally configure builds both a static and a shared library.
5 # If you want to build just a static library, use: ./configure --static
8 # prefix=$HOME CC=cc CFLAGS="-O4" ./configure
10 # (setenv prefix $HOME; setenv CC cc; setenv CFLAGS "-O4"; ./configure)
16 # start off configure.log
17 echo -------------------- >> configure.log
18 echo $0 $* >> configure.log
19 date >> configure.log
39 test -n "${CROSS_PREFIX}" && echo Using ${AR} | tee -a configure.lo
    [all...]
  /external/jemalloc/
autogen.sh 12 echo "./configure --enable-autogen $@"
13 ./configure --enable-autogen $@
15 echo "Error $? in ./configure"
  /external/jetty/src/java/org/eclipse/jetty/xml/
ConfigurationProcessor.java 36 public Object configure( Object obj) throws Exception; method in interface:ConfigurationProcessor
37 public Object configure() throws Exception; method in interface:ConfigurationProcessor
  /external/libdrm/
autogen.sh 13 "$srcdir"/configure "$@"
  /external/libpcap/
Makefile-devel-adds 2 # Auto-regenerate configure script or Makefile when things change.
5 ${srcdir}/configure: configure.in aclocal.m4
10 ${srcdir}/stamp-h.in: configure.in aclocal.m4
21 config.status: ${srcdir}/configure
  /external/mesa3d/
autogen.sh 13 "$srcdir"/configure "$@"
  /external/tcpdump/
Makefile-devel-adds 2 # Auto-regenerate configure script or Makefile when things change.
5 ${srcdir}/configure: configure.in aclocal.m4
10 ${srcdir}/stamp-h.in: configure.in aclocal.m4
21 config.status: ${srcdir}/configure
  /hardware/intel/common/libwsbm/
autogen.sh 12 $srcdir/configure --enable-maintainer-mode "$@"
  /external/iproute2/testsuite/iproute2/
Makefile 2 .PHONY: all configure clean distclean show $(SUBDIRS)
4 all: configure
14 configure: link
16 echo "Entering $$dir" && cd $$dir && if [ -f configure ]; then ./configure; fi && cd ..; \
  /toolchain/binutils/binutils-2.25/
setup.com 8 $ if (P1 .EQS. "CONFIGURE") .OR. (P1 .EQS. "ALL")
11 $ @configure
13 $ @configure
15 $ @configure
17 $ @configure
19 $ @configure
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
AlgorithmProvider.java 7 public abstract void configure(ConfigurableProvider provider); method in class:AlgorithmProvider
  /external/guice/core/test/com/google/inject/
ModuleTest.java 15 public void configure(Binder binder) { method in class:ModuleTest.A
23 public void configure(Binder binder) { method in class:ModuleTest.B
30 public void configure(Binder binder) { method in class:ModuleTest.C
37 public void configure(Binder binder) { method in class:ModuleTest.D
  /hardware/intel/img/psb_video/debian/
rules 32 configure: configure-stamp
33 configure-stamp:
35 # Add here commands to configure the package.
42 ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)"
44 touch configure-stamp
48 build-stamp: configure-stamp
59 rm -f build-stamp configure-stamp
112 .PHONY: build clean binary-indep binary-arch binary install configure
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
Formatter.java 35 * Configurator.configure(ctx, this, xmlCfgId);
42 public Formatter<PlotType> configure(Context ctx, int xmlCfgId) { method in class:Formatter
43 Configurator.configure(ctx, this, xmlCfgId);
  /external/avahi/
autogen.sh 58 rm -f Makefile.am~ configure.ac~
62 test -f configure.ac~ && mv configure.ac~ configure.ac
74 ./configure "$@"
  /development/ndk/platforms/android-3/include/linux/
transport_class.h 24 int (*configure)(struct transport_container *, struct device *, member in struct:transport_class
30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }

Completed in 815 milliseconds

1 2 3 4 5 6 7 8 91011>>