/external/javassist/sample/evolve/ |
H A D | Sample.java | 9 public static Object make(Object[] args) {
method in class:Sample 10 return VersionManager.make(_version, args);
|
/external/clang/test/SemaCXX/ |
H A D | microsoft-cxx0x.cpp | 14 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 D | summarize.sh | 11 if (! make test.$i.report &> /dev/null); then
|
H A D | build.sh | 11 make -j $CPUS \
|
/external/libpng/contrib/pngminus/ |
H A D | pngminus.sh | 2 make -f makefile.std
|
/external/webkit/Source/JavaScriptCore/ |
H A D | make-generated-sources.sh | 11 make -f ../../DerivedSources.make JavaScriptCore=../.. BUILT_PRODUCTS_DIR=../..
|
/external/webkit/Source/WebCore/ |
H A D | make-generated-sources.sh | 7 make -C DerivedSources/WebCore -f ../../DerivedSources.make $@
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/ |
H A D | p1.cpp | 7 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 D | p1.cpp | 5 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 D | p12.cpp | 18 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 D | Android.mk | 9 export ASR_MAKE_DIR := $(ASR_ROOT_DIR)/make/asr
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
H A D | 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,
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
H A D | 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...] |
H A D | 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}.
|
H A D | 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}.
|
H A D | 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}.
|
H A D | 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}.
|
H A D | 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}.
|
/external/webkit/Source/WebCore/gyp/ |
H A D | generate-webcore-export-file-generator.sh | 5 "${SRCROOT}"/../make-export-file-generator "${SRCROOT}/../WebCore.exp.in" "${OUTPUT_DIR}/ExportFileGenerator.cpp"
|
/external/webkit/Source/WebKit2/win/ |
H A D | build-generated-files.sh | 24 # 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 D | 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(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 D | 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/dexmaker/src/main/java/com/google/dexmaker/ |
H A D | Constants.java | 47 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 D | generate-derived-sources.sh | 9 make -f "JavaScriptCore/DerivedSources.make" -j `/usr/sbin/sysctl -n hw.ncpu`
|
/external/llvm/autoconf/m4/ |
H A D | check_gnu_make.m4 | 6 [AC_CACHE_CHECK([for GNU make],[llvm_cv_gnu_make_command], 7 dnl Search all the common names for GNU make 9 for a in "$MAKE" make gmake gnumake ; do
|