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

1 2 3 4 5 6 7 8 91011>>

  /external/qemu/
android-rebuild.sh 11 make clean && \
12 make -j4 && \
Makefile 22 CONFIG_MAKE := $(OBJS_DIR)/config.make
30 include $(BUILD_SYSTEM)/definitions.make
39 CLEAR_VARS := $(BUILD_SYSTEM)/clear_vars.make
40 BUILD_HOST_EXECUTABLE := $(BUILD_SYSTEM)/host_executable.make
41 BUILD_HOST_STATIC_LIBRARY := $(BUILD_SYSTEM)/host_static_library.make
  /external/libpng/contrib/pngminus/
pngminus.sh 2 make -f makefile.std
  /external/webkit/JavaScriptCore/
make-generated-sources.sh 10 make -f ../../DerivedSources.make JavaScriptCore=../.. BUILT_PRODUCTS_DIR=../..
  /external/webkit/WebCore/
make-generated-sources.sh 7 make -C DerivedSources/WebCore -f ../../DerivedSources.make $@
  /dalvik/dx/src/com/android/dx/rop/code/
Exceptions.java 64 public static final StdTypeList LIST_Error = StdTypeList.make(TYPE_Error);
71 StdTypeList.make(TYPE_Error, TYPE_ArithmeticException);
78 StdTypeList.make(TYPE_Error, TYPE_ClassCastException);
85 StdTypeList.make(TYPE_Error, TYPE_NegativeArraySizeException);
92 StdTypeList.make(TYPE_Error, TYPE_NullPointerException);
100 StdTypeList.make(TYPE_Error,
111 StdTypeList.make(TYPE_Error,
123 StdTypeList.make(TYPE_Error,
  /dalvik/dx/src/com/android/dx/rop/cst/
CstInteger.java 31 public static final CstInteger VALUE_M1 = make(-1);
34 public static final CstInteger VALUE_0 = make(0);
37 public static final CstInteger VALUE_1 = make(1);
40 public static final CstInteger VALUE_2 = make(2);
43 public static final CstInteger VALUE_3 = make(3);
46 public static final CstInteger VALUE_4 = make(4);
49 public static final CstInteger VALUE_5 = make(5);
58 public static CstInteger make(int value) { method in class:CstInteger
60 * Note: No need to synchronize, since we don't make any sort
77 * Constructs an instance. This constructor is private; use {@link #make}
    [all...]
CstLong.java 28 public static final CstLong VALUE_0 = make(0);
31 public static final CstLong VALUE_1 = make(1);
39 public static CstLong make(long value) { method in class:CstLong
48 * Constructs an instance. This constructor is private; use {@link #make}.
CstByte.java 28 public static final CstByte VALUE_0 = make((byte) 0);
36 public static CstByte make(byte value) { method in class:CstByte
48 public static CstByte make(int value) { method in class:CstByte
56 return make(cast);
60 * Constructs an instance. This constructor is private; use {@link #make}.
CstChar.java 28 public static final CstChar VALUE_0 = make((char) 0);
36 public static CstChar make(char value) { method in class:CstChar
48 public static CstChar make(int value) { method in class:CstChar
56 return make(cast);
60 * Constructs an instance. This constructor is private; use {@link #make}.
CstFloat.java 28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
42 public static CstFloat make(int bits) { method in class:CstFloat
51 * Constructs an instance. This constructor is private; use {@link #make}.
CstShort.java 28 public static final CstShort VALUE_0 = make((short) 0);
37 public static CstShort make(short value) { method in class:CstShort
49 public static CstShort make(int value) { method in class:CstShort
57 return make(cast);
61 * Constructs an instance. This constructor is private; use {@link #make}.
CstBoolean.java 39 public static CstBoolean make(boolean value) { method in class:CstBoolean
50 public static CstBoolean make(int value) { method in class:CstBoolean
61 * Constructs an instance. This constructor is private; use {@link #make}.
  /development/ide/intellij/
make+intelligen.sh 11 if make -j4; then
  /external/bluetooth/glib/gmodule/
makefile.msc.in 6 !INCLUDE ..\build\win32\make.msc
  /external/bluetooth/glib/gthread/
makefile.msc.in 6 !INCLUDE ..\build\win32\make.msc
  /external/opencore/oscl/
local.mk 9 $(SRC_ROOT)/oscl/oscl/osclbase/build/make/local.mk \
10 $(SRC_ROOT)/oscl/oscl/osclerror/build/make/local.mk \
11 $(SRC_ROOT)/oscl/oscl/osclmemory/build/make/local.mk \
12 $(SRC_ROOT)/oscl/oscl/osclutil/build/make/local.mk \
13 $(SRC_ROOT)/oscl/oscl/osclproc/build/make/local.mk \
14 $(SRC_ROOT)/oscl/oscl/osclio/build/make/local.mk \
15 $(SRC_ROOT)/oscl/oscl/osclregserv/build/make/local.mk \
16 $(SRC_ROOT)/oscl/oscl/osclregcli/build/make/local.mk \
17 $(SRC_ROOT)/oscl/pvlogger/build/make/local.mk
20 LOCAL_MAKEFILES_LIST += $(SRC_ROOT)/oscl/oscl/oscllib/build/make/local.mk
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
46 = StdTypeList.make(Type.RETURN_ADDRESS);
50 StdTypeList.make(Type.THROWABLE);
54 StdTypeList.make(Type.INT, Type.INT);
58 StdTypeList.make(Type.LONG, Type.LONG);
62 StdTypeList.make(Type.FLOAT, Type.FLOAT)
170 public static StdTypeList make(Type type) { method in class:StdTypeList
183 public static StdTypeList make(Type type0, Type type1) { method in class:StdTypeList
198 public static StdTypeList make(Type type0, Type type1, Type type2) { method in class:StdTypeList
215 public static StdTypeList make(Type type0, Type type1, Type type2, method in class:StdTypeList
    [all...]
  /external/webkit/WebKitTools/wx/
install-unix-extras 40 # NOTE: If you change this, make sure the dir is on the path.
95 make CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" \
97 make install
101 make
102 #make check
103 make install
118 make CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc" \
120 make install
124 make
125 make instal
    [all...]
  /external/dropbear/libtomcrypt/
testbuild.sh 3 make clean 1>/dev/null 2>/dev/null
6 CFLAGS="$2 $CFLAGS $4" EXTRALIBS="$5" make -f $3 test tv_gen 1>gcc_1.txt 2>gcc_2.txt || (echo "build $1 failed see gcc_2.txt for more information" && cat gcc_2.txt && rm -f testok.txt && exit 1)
  /external/srec/
Android.mk 9 export ASR_MAKE_DIR := $(ASR_ROOT_DIR)/make/asr
  /ndk/
ndk-build 30 # This really is a tiny wrapper around GNU Make.
34 # this is needed if the caller uses the -C <path> GNU Make
43 # if GNUMAKE is not defined in the environment, use 'make'
45 GNUMAKE=make
49 # invoking a cygwin-compatible GNU Make binary. It is unfortunately
55 CYGWIN_GNUMAKE=`$GNUMAKE -f $PROGDIR_MIXED/build/core/check-cygwin-make.mk 2>&1`
57 echo "ERROR: You are using a non-Cygwin compatible Make program."
62 echo "1. Ensure that the Cygwin 'make' package is installed."
63 echo " NOTE: You will need GNU Make 3.81 or later!"
67 echo " export GNUMAKE=/usr/bin/make"
    [all...]
  /dalvik/vm/compiler/template/
rebuild.sh 22 for arch in armv5te armv5te-vfp armv7-a armv7-a-neon; do TARGET_ARCH_EXT=$arch make -f Makefile-template; done
  /external/bluetooth/glib/gobject/
makefile.msc.in 6 !INCLUDE ..\build\win32\make.msc
  /external/bluetooth/hcidump/
bootstrap-configure 4 make maintainer-clean

Completed in 979 milliseconds

1 2 3 4 5 6 7 8 91011>>