Searched defs:make (Results 1 - 25 of 43) sorted by relevance

12

/external/javassist/sample/evolve/
H A DSample.java9 public static Object make(Object[] args) { method in class:Sample
10 return VersionManager.make(_version, args);
H A DVersionManager.java63 * make() performs the object creation of the updatable classes. The
67 public static Object make(Class clazz, Object[] args) { method in class:VersionManager
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp9 void *(*make)(); member in struct:Test1::Item
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstBoolean.java39 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}.
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 DCstDouble.java41 public static CstDouble make(long bits) { method in class:CstDouble
50 * 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 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 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}.
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...]
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalItem.java40 public static LocalItem make(CstString name, CstString signature) { method in class:LocalItem
H A DRegisterSpecList.java39 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
52 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
68 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
86 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
H A DRegisterSpec.java90 public static RegisterSpec make(int reg, TypeBearer type) { method in class:RegisterSpec
105 public static RegisterSpec make(int reg, TypeBearer type, method in class:RegisterSpec
144 * {@link #make}.
471 return (resultLocal == null) ? make(reg, resultTypeBearer) :
472 make(reg, resultTypeBearer, resultLocal);
/external/javassist/src/main/javassist/
H A DCtNewConstructor.java25 * An instance of this class does not make any sense.
64 public static CtConstructor make(String src, CtClass declaring) method in class:CtNewConstructor
94 public static CtConstructor make(CtClass[] parameters, method in class:CtNewConstructor
180 return make(parameters, exceptions, PASS_NONE,
195 public static CtConstructor make(CtClass[] parameters, method in class:CtNewConstructor
199 return make(parameters, exceptions, PASS_PARAMS,
266 * CtConstructor c = CtNewConstructor.make(argTypes, null,
307 public static CtConstructor make(CtClass[] parameters, method in class:CtNewConstructor
H A DCtNewMethod.java25 * An instance of this class does not make any sense.
41 public static CtMethod make(String src, CtClass declaring) method in class:CtNewMethod
44 return make(src, declaring, null, null);
64 public static CtMethod make(String src, CtClass declaring, method in class:CtNewMethod
97 * @see #make(int, CtClass, String, CtClass[], CtClass[], String, CtClass)
99 public static CtMethod make(CtClass returnType, method in class:CtNewMethod
105 return make(Modifier.PUBLIC, returnType, mname, parameters, exceptions,
126 public static CtMethod make(int modifiers, CtClass returnType, method in class:CtNewMethod
/external/javassist/src/main/javassist/compiler/ast/
H A DExpr.java43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { method in class:Expr
47 public static Expr make(int op, ASTree oprand1) { method in class:Expr
H A DStmnt.java41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { method in class:Stmnt
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) { method in class:Stmnt
H A DASTList.java38 public static ASTList make(ASTree e1, ASTree e2, ASTree e3) { method in class:ASTList
H A DDeclarator.java59 public Declarator make(Symbol sym, int dim, ASTree init) { method in class:Declarator
/external/clang/include/clang/AST/
H A DDeclAccessPair.h35 static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS) { function in class:clang::DeclAccessPair
/external/clang/test/Analysis/
H A Dtemp-obj-dtors-cfg-output.cpp9 static A make() { return A(); } function in class:A
82 A a = A::make();
87 const A& a = A::make();
88 foo(A::make());
684 // CHECK: 1: A::make
691 // CHECK: 8: A a = A::make();
702 // CHECK: 1: A::make
708 // CHECK: 7: const A &a = A::make();
709 // CHECK: 8: A::make
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DPositionList.java31 * constant for {@link #make} to indicate that no actual position
37 * constant for {@link #make} to indicate that only line number
43 * constant for {@link #make} to indicate that only "important" position
58 public static PositionList make(DalvInsnList insns, int howMuch) { method in class:PositionList
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DDominators.java86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, method in class:Dominators
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationImpl.java68 public static Object make(ClassLoader cl, Class clazz, ClassPool cp, method in class:AnnotationImpl

Completed in 271 milliseconds

12