Searched refs:make (Results 1 - 25 of 439) sorted by relevance

1234567891011>>

/external/javassist/sample/evolve/
H A DSample.java9 public static Object make(Object[] args) { method in class:Sample
10 return VersionManager.make(_version, args);
/external/eigen/scripts/
H A Dbuildtests.in7 echo " The EIGEN_MAKE_ARGS environment variable allows to pass args to 'make'."
17 make $targets_to_make ${EIGEN_MAKE_ARGS}
19 make $targets_to_make
/external/clang/test/SemaCXX/
H A Dmicrosoft-cxx0x.cpp14 S make();
16 template<typename F> auto x(F f) -> decltype(f(make()));
18 // expected-error@-2{{calling 'make' with incomplete return type 'PR13433::S'}}
19 // expected-note@-5{{'make' declared here}}
/external/clang/utils/ABITest/
H A Dsummarize.sh11 if (! make test.$i.report &> /dev/null); then
H A Dbuild.sh11 make -j $CPUS \
/external/libpng/contrib/pngminus/
H A Dpngminus.sh2 make -f makefile.std
/external/webkit/Source/JavaScriptCore/
H A Dmake-generated-sources.sh11 make -f ../../DerivedSources.make JavaScriptCore=../.. BUILT_PRODUCTS_DIR=../..
/external/webkit/Source/WebCore/
H A Dmake-generated-sources.sh7 make -C DerivedSources/WebCore -f ../../DerivedSources.make $@
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp1.cpp7 static DefArg &&make();
9 DefArg(const DefArg &DA = make()) = default; // expected-error {{an explicitly-defaulted constructor cannot have default arguments}}
11 DefArg(DefArg &&DA = make()) = default; // expected-error {{an explicitly-defaulted constructor cannot have default arguments}}
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp1.cpp5 template<typename T> T make();
9 int& ir0 = make<int&>();
10 A<int> a0 = make< A<int> >();
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp12.cpp18 static Temp<A::Public> make() { return Temp<A::Public>(); } function in class:test1::Temp
25 template class Temp<A::Private> Temp<int>::make();
39 static Temp<A::Public> make();
46 template <> class Temp<A::Private> Temp<int>::make() { // expected-error {{'Private' is a private member of 'test2::A'}} function in class:test2::Temp
/external/srec/
H A DAndroid.mk9 export ASR_MAKE_DIR := $(ASR_ROOT_DIR)/make/asr
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DExceptions.java64 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,
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstInteger.java31 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...]
H A DCstLong.java28 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}.
H A DCstByte.java28 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}.
H A DCstChar.java28 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}.
H A DCstFloat.java28 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}.
H A DCstShort.java28 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}.
/external/webkit/Source/WebCore/gyp/
H A Dgenerate-webcore-export-file-generator.sh5 "${SRCROOT}"/../make-export-file-generator "${SRCROOT}/../WebCore.exp.in" "${OUTPUT_DIR}/ExportFileGenerator.cpp"
/external/webkit/Source/WebKit2/win/
H A Dbuild-generated-files.sh24 # confuse GNU make. See <http://webkit.org/b/8173>.
34 make -f "${WebKit2}/DerivedSources.make"
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java30 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(Typ
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/dropbear/libtomcrypt/
H A Dtestbuild.sh3 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/dexmaker/src/main/java/com/google/dexmaker/
H A DConstants.java47 return CstBoolean.make((Boolean) value);
49 return CstByte.make((Byte) value);
51 return CstChar.make((Character) value);
53 return CstDouble.make(Double.doubleToLongBits((Double) value));
55 return CstFloat.make(Float.floatToIntBits((Float) value));
57 return CstInteger.make((Integer) value);
59 return CstLong.make((Long) value);
61 return CstShort.make((Short) value);
/external/webkit/Source/JavaScriptCore/gyp/
H A Dgenerate-derived-sources.sh9 make -f "JavaScriptCore/DerivedSources.make" -j `/usr/sbin/sysctl -n hw.ncpu`

Completed in 548 milliseconds

1234567891011>>