HomeSort by relevance Sort by last modified time
    Searched refs:Prototype (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /dalvik/dx/src/com/android/dx/cf/iface/
Method.java 19 import com.android.dx.rop.type.Prototype;
33 public Prototype getEffectiveDescriptor();
StdMethod.java 22 import com.android.dx.rop.type.Prototype;
30 private final Prototype effectiveDescriptor;
46 Prototype.intern(descStr, definingClass.getClassType(),
53 public Prototype getEffectiveDescriptor() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 19 import com.android.dx.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
51 // The prototype for signature polymorphic methods is used to
53 // target (invoke() or invokeExact(). The prototype is created
56 this.prototype = Prototype.fromDescriptor(descriptor)
    [all...]
CstProtoRef.java 18 import com.android.dx.rop.type.Prototype;
22 * Prototype reference.
26 /** {@code non-null;} the prototype */
27 private final Prototype prototype; field in class:CstProtoRef
29 public CstProtoRef(Prototype prototype) {
30 this.prototype = prototype;
41 Prototype prototype = Prototype.fromDescriptor(descriptor.getString()) local
    [all...]
CstCallSiteRef.java 18 import com.android.dx.rop.type.Prototype;
85 * Gets the prototype of the method handle resolved at the call site.
87 * @return the prototype associated with the call site invocation
89 public Prototype getPrototype() {
CstInvokeDynamic.java 19 import com.android.dx.rop.type.Prototype;
35 /** {@code non-null;} the prototype derived from {@code nat} */
36 private final Prototype prototype; field in class:CstInvokeDynamic
68 this.prototype = Prototype.fromDescriptor(nat.getDescriptor().toHuman());
158 * Gets the {@code Prototype} of the {@code invokedynamic} call site.
160 * @return the {@code invokedynamic} call site prototype
162 public Prototype getPrototype() {
163 return prototype;
    [all...]
CstCallSite.java 20 import com.android.dx.rop.type.Prototype;
46 list.set(2, new CstProtoRef(Prototype.fromDescriptor(nat.getDescriptor().getString())));
  /external/llvm/bindings/ocaml/linker/
linker_ocaml.c 25 void llvm_raise(value Prototype, char *Message);
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstBaseMethodRef.java 19 import com.android.dexgen.rop.type.Prototype;
31 /** {@code non-null;} the raw prototype for this method */
32 private final Prototype prototype; field in class:CstBaseMethodRef
35 * {@code null-ok;} the prototype for this method taken to be an instance
38 private Prototype instancePrototype;
50 this.prototype = Prototype.intern(descriptor);
55 * Gets the raw prototype of this method. This doesn't include a
58 * @return {@code non-null;} the method prototype
    [all...]
  /external/guice/extensions/spring/test/com/google/inject/spring/
SpringIntegrationTest.java 47 RootBeanDefinition prototype local
48 = new RootBeanDefinition(Prototype.class, false);
49 beanFactory.registerBeanDefinition("prototype", prototype);
56 bind(Prototype.class)
57 .toProvider(fromSpring(Prototype.class, "prototype"));
65 assertNotNull(injector.getInstance(Prototype.class));
66 assertNotSame(injector.getInstance(Prototype.class),
67 injector.getInstance(Prototype.class))
78 RootBeanDefinition prototype local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 27 public final class Prototype implements Comparable<Prototype> {
33 private static final ConcurrentMap<String, Prototype> internTable =
58 public static Prototype intern(String descriptor) {
63 Prototype result = internTable.get(descriptor);
73 * Returns a prototype for a method descriptor.
75 * The {@code Prototype} returned will be the interned value if present,
84 public static Prototype fromDescriptor(String descriptor) {
85 Prototype result = internTable.get(descriptor);
131 return new Prototype(descriptor, returnType, parameterTypes)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 26 public final class Prototype implements Comparable<Prototype> {
28 private static final HashMap<String, Prototype> internTable =
29 new HashMap<String, Prototype>(500);
53 public static Prototype intern(String descriptor) {
57 Prototype result = internTable.get(descriptor);
103 result = new Prototype(descriptor, returnType, parameterTypes);
164 public static Prototype intern(String descriptor, Type definer,
166 Prototype base = intern(descriptor);
184 * @param count {@code > 0;} the number of elements in the prototype
    [all...]
  /external/llvm/bindings/ocaml/irreader/
irreader_ocaml.c 21 void llvm_raise(value Prototype, char *Message);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ProtoIdsSection.java 20 import com.android.dexgen.rop.type.Prototype;
28 * Proto (method prototype) identifiers list section of a
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
87 * @param prototype {@code non-null;} the prototype to intern
90 public ProtoIdItem intern(Prototype prototype) {
91 if (prototype == null) {
92 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dexgen.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
34 /** {@code non-null;} the wrapped prototype */
35 private final Prototype prototype; field in class:ProtoIdItem
37 /** {@code non-null;} the short-form of the prototype */
42 * prototype has no parameters
49 * @param prototype {@code non-null;} the constant for the prototype
51 public ProtoIdItem(Prototype prototype)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
ProtoIdsSection.java 21 import com.android.dx.rop.type.Prototype;
28 * Proto (method prototype) identifiers list section of a
35 private final TreeMap<Prototype, ProtoIdItem> protoIds;
45 protoIds = new TreeMap<Prototype, ProtoIdItem>();
102 * @param prototype {@code non-null;} the prototype to intern
105 public synchronized ProtoIdItem intern(Prototype prototype) {
106 if (prototype == null) {
107 throw new NullPointerException("prototype == null")
    [all...]
ProtoIdItem.java 21 import com.android.dx.rop.type.Prototype;
28 * Representation of a method prototype reference inside a Dalvik file.
31 /** {@code non-null;} the wrapped prototype */
32 private final Prototype prototype; field in class:ProtoIdItem
34 /** {@code non-null;} the short-form of the prototype */
39 * prototype has no parameters
46 * @param prototype {@code non-null;} the constant for the prototype
48 public ProtoIdItem(Prototype prototype)
    [all...]
  /external/llvm/bindings/ocaml/bitreader/
bitreader_ocaml.c 22 void llvm_raise(value Prototype, char *Message);
  /dalvik/dx/src/com/android/dx/cf/code/
Machine.java 21 import com.android.dx.rop.type.Prototype;
33 * Gets the effective prototype of the method that this instance is
34 * being used for. The <i>effective</i> prototype includes an initial
37 * @return {@code non-null;} the method prototype
39 public Prototype getPrototype();
58 * {@code Prototype} (popped in reverse of the argument
59 * order, so the first prototype argument type is for the deepest
65 * @param prototype {@code non-null;} prototype indicating arguments to pop
67 public void popArgs(Frame frame, Prototype prototype)
    [all...]
BaseMachine.java 22 import com.android.dx.rop.type.Prototype;
36 /* {@code non-null;} the prototype for the associated method */
37 private final Prototype prototype; field in class:BaseMachine
84 * @param prototype {@code non-null;} the prototype for the
87 public BaseMachine(Prototype prototype) {
88 if (prototype == null) {
89 throw new NullPointerException("prototype == null")
    [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitreader/
bitreader_ocaml.c 31 static void llvm_raise(value Prototype, char *Message) {
32 CAMLparam1(Prototype);
38 raise_with_arg(Prototype, CamlMessage);
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
MethodId.java 22 import com.android.dx.rop.type.Prototype;
104 Prototype prototype(boolean includeThis) { method in class:MethodId
105 return Prototype.intern(descriptor(includeThis));
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 19 (* proto - This type represents the "prototype" for a function, which captures
22 type proto = Prototype of string * string array

Completed in 1322 milliseconds

1 2 3 4 5 6