/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
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(Type.FLOAT, Type.FLOAT); [all …]
|
/external/webkit/Tools/wx/ |
D | install-unix-extras | 107 make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \ 109 make install 113 make 115 make install 130 make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \ 132 make install 136 make 137 make install 154 make CFLAGS="-O -g -isysroot $SDK $ARCH_FLAGS" \ 156 make install [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
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) { in make() method in CstInteger
|
D | CstByte.java | 28 public static final CstByte VALUE_0 = make((byte) 0); 36 public static CstByte make(byte value) { in make() method in CstByte 48 public static CstByte make(int value) { in make() method in CstByte 56 return make(cast); in make()
|
D | CstChar.java | 28 public static final CstChar VALUE_0 = make((char) 0); 36 public static CstChar make(char value) { in make() method in CstChar 48 public static CstChar make(int value) { in make() method in CstChar 56 return make(cast); in make()
|
D | CstShort.java | 28 public static final CstShort VALUE_0 = make((short) 0); 37 public static CstShort make(short value) { in make() method in CstShort 49 public static CstShort make(int value) { in make() method in CstShort 57 return make(cast); in make()
|
/external/expat/bcb5/ |
D | makefile.mak | 7 make -l -fexpat.mak 10 make -l -fexpatw.mak 13 make -l -fexpat_static.mak 16 make -l -fexpatw_static.mak 19 make -l -felements.mak 22 make -l -foutline.mak 25 make -l -fxmlwf.mak
|
D | all_projects.bpg | 8 MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$** 20 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak 24 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak 28 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak 32 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak 36 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak 40 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak 44 $(ROOT)\bin\make -$(MAKEFLAGS) -f$*.mak
|
/external/valgrind/main/docs/internals/ |
D | howto_BUILD_KDE42.txt | 5 It is recommended to make a new user ("kde4", maybe) to do the 104 # (make confclean, then redo configure) 106 make -j 2 107 make install 131 make 132 # make -j 2 quite often screws up 133 make install 162 make -j 2 163 make install 171 make -j 2 [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
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/main/java/com/google/dexmaker/ |
D | Constants.java | 47 return CstBoolean.make((Boolean) value); in getConstant() 49 return CstByte.make((Byte) value); in getConstant() 51 return CstChar.make((Character) value); in getConstant() 53 return CstDouble.make(Double.doubleToLongBits((Double) value)); in getConstant() 55 return CstFloat.make(Float.floatToIntBits((Float) value)); in getConstant() 57 return CstInteger.make((Integer) value); in getConstant() 59 return CstLong.make((Long) value); in getConstant() 61 return CstShort.make((Short) value); in getConstant()
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/ |
D | p5-cxx0x.cpp | 91 template<typename T> T make(); 92 template<int N, bool OK> S<N, OK> make(); 95 decltype(make<0, false>()) *p1; // ok 96 decltype((make<1, false>())) *p2; // ok 99 decltype(123, make<2, false>()) *p3; // expected-note {{here}} 101 decltype(consume(make<3, false>())) *p4; // expected-note {{here}} 103 decltype(make<decltype(make<4, false>())>()) *p5; // ok
|
/external/clang/test/ARCMT/ |
D | cxx-checking.mm | 5 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 9 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 13 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 30 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 34 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 42 …tween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}… 43 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 48 …tween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}… 49 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 54 …tween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}… [all …]
|
/external/clang/test/SemaObjCXX/ |
D | arc-non-pod.mm | 4 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 8 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 12 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 29 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 33 …e; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}} 41 …tween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}… 42 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 47 …tween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}… 48 …ot be shared between ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}} 53 …tween ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}… [all …]
|
/external/llvm/docs/ |
D | make.bat | 20 echo.Please use `make ^<target^>` where ^<target^> is one of 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 23 echo. singlehtml to make a single large HTML file 24 echo. pickle to make pickle files 25 echo. json to make JSON files 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project 28 echo. devhelp to make HTML files and a Devhelp project 29 echo. epub to make an epub [all …]
|
/external/expat/ |
D | CMake.README | 11 From that directory, call cmake first, then call make, make test and 12 make install in the usual way: 24 ~/expat-2.1.0/build$ make && make test && make install 33 For Windows builds, you must make sure to call cmake from an environment where 36 make sure that gcc can be called. On Windows, you also might want to specify a
|
D | README | 60 After running the configure script, the "make" command will build 61 things and "make install" will install things into their proper 63 "make" options. Note that you need to have write permission into 68 these instructions (after having run "make distclean"): 91 3. Run "make buildlib" (which builds the library only). 92 Or, to save step 2, run "make buildlib LIBRARY=libexpatw.la". 94 4. Run "make installlib" (which installs the library only). 95 Or, if step 2 was omitted, run "make installlib LIBRARY=libexpatw.la". 98 value for DESTDIR, and the rest of the make file using only DESTDIR. 100 $ make install DESTDIR=/path/to/image [all …]
|
/external/bzip2/ |
D | words3 | 8 make install 12 make install PREFIX=/xxx/yyy 14 If you are (justifiably) paranoid and want to see what 'make install' 17 make -n install or 18 make -n install PREFIX=/xxx/yyy respectively. 20 The -n instructs make to show the commands it would execute, but
|
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/ |
D | process.js | 1011 var gen = make(expr); 1095 return add_spaces([ "throw", make(expr) ]) + ";"; 1098 args = args.length > 0 ? "(" + add_commas(MAP(args, make)) + ")" : ""; 1116 … return add_spaces([ "switch", "(" + make(expr) + ")", make_switch_block(body) ]); 1138 return add_spaces([ make(lvalue), op, parenthesize(rvalue, "seq") ]); 1141 var out = make(expr), i = 1; 1151 var f = make(func); 1161 var out = [ "if", "(" + make(co) + ")", el ? make_then(th) : make(th) ]; 1163 out.push("else", make(el)); 1169 init = (init != null ? make(init) : "").replace(/;*\s*$/, ";" + space); [all …]
|
/external/javassist/src/main/javassist/ |
D | CtNewConstructor.java | 64 public static CtConstructor make(String src, CtClass declaring) in make() method in CtNewConstructor 94 public static CtConstructor make(CtClass[] parameters, in make() method in CtNewConstructor 180 return make(parameters, exceptions, PASS_NONE, in skeleton() 195 public static CtConstructor make(CtClass[] parameters, in make() method in CtNewConstructor 199 return make(parameters, exceptions, PASS_PARAMS, in make() 307 public static CtConstructor make(CtClass[] parameters, in make() method in CtNewConstructor
|
/external/dropbear/ |
D | INSTALL | 13 make PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" 17 make PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" install 20 recompile after changing the PROGRAMS list, you *MUST* "make clean" before 25 If you want to compile statically, add "STATIC=1" to the make command-line. 27 Binaries can be strippd with "make strip" 38 Firstly, make sure you have at least uclibc 0.9.17, as getusershell() in prior 45 You can use "make STATIC=1" to make statically linked binaries, and it is 46 advisable to strip the binaries too. If you're looking to make a small binary, 55 before ./configure and make. 71 make sure that it is.
|
/external/webkit/Tools/android/flex-2.5.4a/ |
D | INSTALL | 25 containing the source code, you must use a version of `make' that 26 supports the VPATH variable, such as GNU `make'. `cd' to the directory 35 By default, `make install' will install the package's files in 39 for the `prefix' variable when you run `make', e.g., 40 make prefix=/usr/gnu 45 `make' variable `exec_prefix' to PATH, the package will use PATH as 73 The `make' variables that you might want to override with environment 95 2. Type `make' to compile the package. If you want, you can override 96 the `make' variables CFLAGS and LDFLAGS like this: 98 make CFLAGS=-O2 LDFLAGS=-s [all …]
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
D | p12.cpp | 18 static Temp<A::Public> make() { return Temp<A::Public>(); } in make() function in 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 … in make() function in test2::Temp
|
/external/openssl/crypto/des/ |
D | INSTALL | 14 type 'make' 18 run './speed' to see how fast those optimisations make the library run :-) 30 There are some special Makefile targets that make life easier. 31 make cc - standard cc build 32 make gcc - standard gcc build 33 make x86-elf - x86 assembler (elf), linux-elf. 34 make x86-out - x86 assembler (a.out), FreeBSD 35 make x86-solaris- x86 assembler 36 make x86-bsdi - x86 assembler (a.out with primative assembler). 41 A make install will by default install
|
/external/dbus/cmake/ |
D | readme-cmake.txt | 17 5. make 18 6. make install 26 6. make 27 7. make install 35 6. make 36 7. make install
|