Home
last modified time | relevance | path

Searched refs:Prototype (Results 1 – 25 of 66) 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/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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
D10.1.6.js92 function Prototype() { class
96 this.__proto__ = new Prototype();
100 this.__proto__ = new Prototype();
108 this.__proto__ = new Prototype();
D10.1.8-1.js116 this.__proto__ = new Prototype();
/external/llvm/bindings/ocaml/bitreader/
Dbitreader_ocaml.c31 static void llvm_raise(value Prototype, char *Message) { in llvm_raise() argument
32 CAMLparam1(Prototype); in llvm_raise()
38 raise_with_arg(Prototype, CamlMessage); in llvm_raise()
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
Dprototype-1.6.0.3.js9 var Prototype = { variable
39 if (Prototype.Browser.MobileSafari)
40 Prototype.BrowserFeatures.SpecificElementExtensions = false;
69 klass.prototype.initialize = Prototype.emptyFunction;
390 return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
394 var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
395 var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
492 return this.sub(filter || Prototype.JSONFilter, '#{1}');
536 if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, {
619 iterator = iterator || Prototype.K;
[all …]
Dconcat-jquery-mootools-prototype.js4779 return $extend(win, Window.Prototype);
4783 window[property] = Window.Prototype[property] = value;
4788 Window.Prototype = {$family: {name: 'window'}};
4809 return $extend(doc, Document.Prototype);
4813 document[property] = Document.Prototype[property] = value;
4818 Document.Prototype = {$family: {name: 'document'}};
5692 Element.Prototype[key] = value;
5707 Element.Prototype = {$family: {name: 'element'}};
5732 $extend(win.Element.prototype, Element.Prototype);
5843 var proto = Element.Prototype;
[all …]
/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/smali/baksmali/src/main/resources/templates/templates/
Dbaksmali.stg97 method(AccessFlags, MethodName, Prototype, HasCode, RegistersDirective, RegisterCount, Parameters, …
100 .method <AccessFlags: {<it> }><MethodName><Prototype>
388 MethodReference(ContainingClass, MethodName, Prototype) ::=
390 <ContainingClass>-><MethodName><Prototype>
/external/llvm/bindings/ocaml/executionengine/
Dexecutionengine_ocaml.c48 static void llvm_raise(value Prototype, char *Message) { in llvm_raise() argument
49 CAMLparam1(Prototype); in llvm_raise()
55 raise_with_arg(Prototype, CamlMessage); in llvm_raise()
/external/llvm/test/Feature/
Dtestvarargs.ll6 declare i32 @printf(i8*, ...) ;; Prototype for: int __builtin_printf(const char*, ...)
/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/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/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/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/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/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dast.ml28 type proto = 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()

123