/external/dexmaker/src/dx/java/com/android/dx/rop/type/ |
D | Prototype.java | 26 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/ |
D | SpringIntegrationTest.java | 48 = 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/ |
D | CstBaseMethodRef.java | 19 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/ |
D | ProtoIdsSection.java | 20 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()
|
D | ProtoIdItem.java | 21 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/ |
D | MethodId.java | 22 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/ |
D | linker_ocaml.c | 24 void llvm_raise(value Prototype, char *Message);
|
/external/llvm/bindings/ocaml/irreader/ |
D | irreader_ocaml.c | 21 void llvm_raise(value Prototype, char *Message);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
D | parser.ml | 160 Ast.Prototype (id, Array.of_list (List.rev args)) 176 Ast.Prototype (name, args) 191 Ast.Function (Ast.Prototype ("", [||]), e)
|
D | ast.ml | 32 | Prototype of string * string array Constructor
|
/external/llvm/bindings/ocaml/bitreader/ |
D | bitreader_ocaml.c | 21 void llvm_raise(value Prototype, char *Message);
|
/external/llvm/test/Feature/ |
D | testvarargs.ll | 6 declare i32 @printf(i8*, ...) ;; Prototype for: int __builtin_printf(const char*, ...)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
D | parser.ml | 104 Ast.Prototype (id, Array.of_list (List.rev args)) 118 Ast.Function (Ast.Prototype ("", [||]), e)
|
D | ast.ml | 22 type proto = Prototype of string * string array Constructor
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
D | parser.ml | 104 Ast.Prototype (id, Array.of_list (List.rev args)) 118 Ast.Function (Ast.Prototype ("", [||]), e)
|
D | ast.ml | 22 type proto = Prototype of string * string array Constructor
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
D | parser.ml | 104 Ast.Prototype (id, Array.of_list (List.rev args)) 118 Ast.Function (Ast.Prototype ("", [||]), e)
|
D | ast.ml | 22 type proto = Prototype of string * string array Constructor
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
D | parser.ml | 186 Ast.Prototype (id, Array.of_list (List.rev args)) 202 Ast.Prototype (name, args) 217 Ast.Function (Ast.Prototype ("", [||]), e)
|
D | ast.ml | 35 | Prototype of string * string array Constructor
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | Rops.java | 23 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/ |
D | ast.ml | 28 type proto = Prototype of string * string array Constructor
|
D | parser.ml | 140 Ast.Prototype (id, Array.of_list (List.rev args)) 154 Ast.Function (Ast.Prototype ("", [||]), e)
|
/external/llvm/bindings/ocaml/executionengine/ |
D | executionengine_ocaml.c | 28 void llvm_raise(value Prototype, char *Message);
|
/external/llvm/docs/tutorial/ |
D | OCamlLangImpl6.rst | 121 ``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 …]
|