Home
last modified time | relevance | path

Searched refs:Prototype (Results 1 – 25 of 65) sorted by relevance

123

/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DPrototype.java26 public final class Prototype implements Comparable<Prototype> { class
28 private static final HashMap<String, Prototype> internTable =
29 new HashMap<String, Prototype>(500);
53 public static Prototype intern(String descriptor) { in intern()
58 Prototype result; in intern()
107 result = new Prototype(descriptor, returnType, parameterTypes); in intern()
168 public static Prototype intern(String descriptor, Type definer, in intern()
170 Prototype base = intern(descriptor); in intern()
191 public static Prototype internInts(Type returnType, int count) { in internInts()
215 private Prototype(String descriptor, Type returnType, in Prototype() method in Prototype
[all …]
/external/guice/extensions/spring/test/com/google/inject/spring/
DSpringIntegrationTest.java48 = new RootBeanDefinition(Prototype.class, false); in testBindFromSpring()
56 bind(Prototype.class) in testBindFromSpring()
57 .toProvider(fromSpring(Prototype.class, "prototype")); in testBindFromSpring()
65 assertNotNull(injector.getInstance(Prototype.class)); in testBindFromSpring()
66 assertNotSame(injector.getInstance(Prototype.class), in testBindFromSpring()
67 injector.getInstance(Prototype.class)); in testBindFromSpring()
79 = new RootBeanDefinition(Prototype.class, false); in testBindAll()
90 Key<Prototype> prototypeKey in testBindAll()
91 = Key.get(Prototype.class, Names.named("prototype")); in testBindAll()
103 static class Prototype {} class in SpringIntegrationTest
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstBaseMethodRef.java19 import com.android.dx.rop.type.Prototype;
32 private final Prototype prototype;
38 private Prototype instancePrototype;
50 this.prototype = Prototype.intern(descriptor); in CstBaseMethodRef()
60 public final Prototype getPrototype() { in getPrototype()
75 public final Prototype getPrototype(boolean isStatic) { in getPrototype()
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DProtoIdsSection.java20 import com.android.dx.rop.type.Prototype;
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>(); in ProtoIdsSection()
90 public ProtoIdItem intern(Prototype prototype) { in intern()
114 public int indexOf(Prototype prototype) { in indexOf()
DProtoIdItem.java21 import com.android.dx.rop.type.Prototype;
32 private final Prototype prototype;
48 public ProtoIdItem(Prototype prototype) { in ProtoIdItem()
67 private static CstString makeShortForm(Prototype prototype) { in makeShortForm()
/external/dexmaker/src/main/java/com/google/dexmaker/
DMethodId.java22 import com.android.dx.rop.type.Prototype;
96 Prototype prototype(boolean includeThis) { in prototype()
97 return Prototype.intern(descriptor(includeThis)); in prototype()
/external/llvm/bindings/ocaml/linker/
Dlinker_ocaml.c24 void llvm_raise(value Prototype, char *Message);
/external/llvm/bindings/ocaml/irreader/
Dirreader_ocaml.c21 void llvm_raise(value Prototype, char *Message);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dparser.ml160 Ast.Prototype (id, Array.of_list (List.rev args))
176 Ast.Prototype (name, args)
191 Ast.Function (Ast.Prototype ("", [||]), e)
Dast.ml32 | Prototype of string * string array Constructor
/external/llvm/bindings/ocaml/bitreader/
Dbitreader_ocaml.c21 void llvm_raise(value Prototype, char *Message);
/external/llvm/test/Feature/
Dtestvarargs.ll6 declare i32 @printf(i8*, ...) ;; Prototype for: int __builtin_printf(const char*, ...)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
Dparser.ml104 Ast.Prototype (id, Array.of_list (List.rev args))
118 Ast.Function (Ast.Prototype ("", [||]), e)
Dast.ml22 type proto = Prototype of string * string array Constructor
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
Dparser.ml104 Ast.Prototype (id, Array.of_list (List.rev args))
118 Ast.Function (Ast.Prototype ("", [||]), e)
Dast.ml22 type proto = Prototype of string * string array Constructor
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
Dparser.ml104 Ast.Prototype (id, Array.of_list (List.rev args))
118 Ast.Function (Ast.Prototype ("", [||]), e)
Dast.ml22 type proto = Prototype of string * string array Constructor
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dparser.ml186 Ast.Prototype (id, Array.of_list (List.rev args))
202 Ast.Prototype (name, args)
217 Ast.Function (Ast.Prototype ("", [||]), e)
Dast.ml35 | Prototype of string * string array Constructor
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
DRops.java23 import com.android.dx.rop.type.Prototype;
1208 Prototype meth = cstMeth.getPrototype(); in ropFor()
1215 Prototype meth = cstMeth.getPrototype(); in ropFor()
1222 Prototype meth = cstMeth.getPrototype(); in ropFor()
1229 Prototype meth = cstMeth.getPrototype(); in ropFor()
1983 public static Rop opInvokeStatic(Prototype meth) { in opInvokeStatic()
1997 public static Rop opInvokeVirtual(Prototype meth) { in opInvokeVirtual()
2011 public static Rop opInvokeSuper(Prototype meth) { in opInvokeSuper()
2025 public static Rop opInvokeDirect(Prototype meth) { in opInvokeDirect()
2039 public static Rop opInvokeInterface(Prototype meth) { in opInvokeInterface()
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dast.ml28 type proto = Prototype of string * string array Constructor
Dparser.ml140 Ast.Prototype (id, Array.of_list (List.rev args))
154 Ast.Function (Ast.Prototype ("", [||]), e)
/external/llvm/bindings/ocaml/executionengine/
Dexecutionengine_ocaml.c28 void llvm_raise(value Prototype, char *Message);
/external/llvm/docs/tutorial/
DOCamlLangImpl6.rst121 ``Ast.Prototype`` AST node. To represent our new user-defined operators
122 as prototypes, we have to extend the ``Ast.Prototype`` AST node like
131 | Prototype of string * string array
166 Ast.Prototype (id, Array.of_list (List.rev args))
182 Ast.Prototype (name, args)
359 Ast.Prototype (id, Array.of_list (List.rev args))
375 Ast.Prototype (name, args)
852 | Prototype of string * string array
1020 Ast.Prototype (id, Array.of_list (List.rev args))
1036 Ast.Prototype (name, args)
[all …]

123