/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(), 52 public Prototype getEffectiveDescriptor() {
|
/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...] |
/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; 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...] |
/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...] |
/dalvik/dx/src/com/android/dx/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) { 58 Prototype result; 107 result = new Prototype(descriptor, returnType, parameterTypes); 168 public static Prototype intern(String descriptor, Type definer, 170 Prototype base = intern(descriptor); 188 * @param count {@code > 0;} the number of elements in the prototype [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/ |
10.1.6.js | 92 function Prototype() { 96 this.__proto__ = new Prototype(); 100 this.__proto__ = new Prototype(); 108 this.__proto__ = new Prototype();
|
10.1.8-1.js | 31 The [[Prototype]] of the arguments object is to the original Object 32 prototype object, the one that is the initial value of Object.prototype 116 this.__proto__ = new Prototype();
|
/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 | 20 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>(); 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.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...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
Machine.java | 20 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...] |
ConcreteMethod.java | 31 import com.android.dx.rop.type.Prototype; 178 public Prototype getEffectiveDescriptor() {
|
ValueAwareMachine.java | 20 import com.android.dx.rop.type.Prototype; 33 * @param prototype {@code non-null;} the prototype for the associated 36 public ValueAwareMachine(Prototype prototype) { 37 super(prototype);
|
/external/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/webkit/Source/WebCore/inspector/front-end/ |
PropertiesSidebarPane.js | 34 WebInspector.PropertiesSidebarPane.prototype = { 72 // Get array of prototype user-friendly names. 77 var prototype = prototypes[i].value; 78 var title = prototype.description; 79 if (title.match(/Prototype$/)) 80 title = title.replace(/Prototype$/, ""); 81 var section = new WebInspector.ObjectPropertiesSection(prototype, title); 89 WebInspector.PropertiesSidebarPane.prototype.__proto__ = WebInspector.SidebarPane.prototype;
|
/dalvik/dx/src/com/android/dx/gen/ |
MethodId.java | 22 import com.android.dx.rop.type.Prototype; 83 Prototype prototype(boolean includeThis) { method in class:MethodId 84 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
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
ast.ml | 25 (* proto - This type represents the "prototype" for a function, which captures 28 type proto = Prototype of string * string array
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
ast.ml | 28 (* proto - This type represents the "prototype" for a function, which captures 32 | Prototype of string * string array
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
ast.ml | 31 (* proto - This type represents the "prototype" for a function, which captures 35 | Prototype of string * string array
|