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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/power_LoadTest/extension/
custom_event_listener.js 1 Window.prototype.orginalEventListener = Window.prototype.addEventListener;
2 Window.prototype.addEventListener = function(type, listener, useCapture) {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstProtoRef.java 18 import com.android.dx.rop.type.Prototype;
21 * Prototype reference.
25 /** {@code non-null;} the prototype */
26 private final Prototype prototype; field in class:CstProtoRef
28 public CstProtoRef(Prototype prototype) {
29 this.prototype = prototype;
44 return prototype.hashCode()
    [all...]
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...]
  /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/v8/src/inspector/
debugger_script_externs.js 120 DebuggerFlag.prototype.setValue = function(value) {}
170 BreakPoint.prototype.script_break_point = function() {}
173 BreakPoint.prototype.number = function() {}
180 CompileEvent.prototype.script = function() {}
187 BreakEvent.prototype.breakPointsHit = function() {}
198 ExecutionState.prototype.evaluateGlobal = function(source, disableBreak, additionalContext) {}
201 ExecutionState.prototype.frameCount = function() {}
207 ExecutionState.prototype.frame = function(index) {}
210 ExecutionState.prototype.setSelectedFrame = function(index) {}
213 ExecutionState.prototype.selectedFrame = function() {
    [all...]
injected_script_externs.js 14 InjectedScriptHostClass.prototype.internalConstructorName = function(obj) {}
21 InjectedScriptHostClass.prototype.formatAccessorsAsProperties = function(obj, func) {}
27 InjectedScriptHostClass.prototype.subtype = function(obj) {}
33 InjectedScriptHostClass.prototype.isTypedArray = function(obj) {}
39 InjectedScriptHostClass.prototype.getInternalProperties = function(obj) {}
46 InjectedScriptHostClass.prototype.objectHasOwnProperty = function(object, propertyName) {}
53 InjectedScriptHostClass.prototype.bind = function(value, groupName) {}
59 InjectedScriptHostClass.prototype.proxyTargetValue = function(object) {}
  /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/autotest/client/deps/webgl_mpd/src/
cros_fps.js 16 crosFpsCounter.prototype.update = function(
25 crosFpsCounter.prototype.reset = function() {
32 crosFpsCounter.prototype.getAvgFps = function() {
36 crosFpsCounter.prototype.getAvgRenderTime = function() {
40 crosFpsCounter.prototype.getFrameData = function() {
  /external/libvncserver/webclients/novnc/include/chrome-app/
tcp-client.js 58 TcpClient.prototype.connect = function(callback) {
76 TcpClient.prototype.sendBuffer = function(buf, callback) {
103 TcpClient.prototype.sendString = function(msg, callback) {
123 TcpClient.prototype.addResponseListener = function(callback, type) {
141 TcpClient.prototype.addDisconnectListener = function(callback) {
151 TcpClient.prototype.disconnect = function() {
171 TcpClient.prototype._onCreate = function(createInfo) {
188 TcpClient.prototype._onConnectComplete = function(resultCode) {
205 TcpClient.prototype._periodicallyRead = function() {
225 * @see TcpClient.prototype.addResponseListene
    [all...]
  /external/guava/guava/src/com/google/common/hash/
MessageDigestHashFunction.java 34 private final MessageDigest prototype; field in class:MessageDigestHashFunction
40 this.prototype = getMessageDigest(algorithmName);
41 this.bytes = prototype.getDigestLength();
48 this.prototype = getMessageDigest(algorithmName);
49 int maxLength = prototype.getDigestLength();
58 prototype.clone();
84 return new MessageDigestHasher((MessageDigest) prototype.clone(), bytes);
89 return new MessageDigestHasher(getMessageDigest(prototype.getAlgorithm()), bytes);
111 return new SerializedForm(prototype.getAlgorithm(), bytes, toString);
  /frameworks/compile/mclinker/lib/LD/
StubFactory.cpp 34 /// addPrototype - register a stub prototype
44 // find if there is a prototype stub for the input relocation
46 Stub* prototype = findPrototype(pReloc, pReloc.place(), pTargetSymValue); local
47 if (prototype != NULL) {
59 stub = islands.second->findStub(prototype, pReloc);
64 stub = islands.first->findStub(prototype, pReloc);
66 // create a stub from the prototype
67 stub = prototype->clone();
73 islands.first->addStub(prototype, pReloc, *stub);
83 Stub* prototype = findPrototype(pFragRef) local
    [all...]
  /external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/
tcp-server.js 74 TcpServer.prototype.isConnected=function() {
84 TcpServer.prototype.listen = function(callback) {
96 TcpServer.prototype.disconnect = function() {
122 TcpServer.prototype._onCreate = function(createInfo) {
142 TcpServer.prototype._onListenComplete = function(resultCode) {
148 TcpServer.prototype._onAccept = function (info) {
164 TcpServer.prototype._onAcceptError = function(info) {
171 TcpServer.prototype._onNoMoreConnectionsAvailable = function(socketId) {
181 TcpServer.prototype._onSocketInfo = function(tcpConnection, socketInfo) {
207 TcpConnection.prototype.setSocketInfo = function(socketInfo)
    [all...]
  /external/v8/src/js/
icu-case-mapping.js 17 OverrideFunction(GlobalString.prototype, 'toLowerCase', ToLowerCaseI18N, true);
18 OverrideFunction(GlobalString.prototype, 'toUpperCase', ToUpperCaseI18N, true);
19 OverrideFunction(GlobalString.prototype, 'toLocaleLowerCase',
21 OverrideFunction(GlobalString.prototype, 'toLocaleUpperCase',
collection-iterator.js 31 'Set Iterator.prototype.next', this);
56 'Set.prototype.entries', this);
65 'Set.prototype.values', this);
74 utils.InstallFunctions(SetIterator.prototype, DONT_ENUM, [
78 %AddNamedProperty(SetIterator.prototype, toStringTagSymbol,
81 utils.InstallFunctions(GlobalSet.prototype, DONT_ENUM, [
87 %AddNamedProperty(GlobalSet.prototype, iteratorSymbol, SetValues, DONT_ENUM);
99 'Map Iterator.prototype.next', this);
125 'Map.prototype.entries', this);
134 'Map.prototype.keys', this)
    [all...]
v8natives.js 37 // ES6 19.1.3.5 Object.prototype.toLocaleString([reserved1 [,reserved2]])
39 CHECK_OBJECT_COERCIBLE(this, "Object.prototype.toLocaleString");
44 // ES6 19.1.3.7 Object.prototype.valueOf()
50 // ES6 19.1.3.3 Object.prototype.isPrototypeOf(V)
82 %AddNamedProperty(GlobalObject.prototype, "constructor", GlobalObject,
85 // Set up non-enumerable functions on the Object.prototype object.
86 utils.InstallFunctions(GlobalObject.prototype, DONT_ENUM, [
146 to.ObjectHasOwnProperty = GlobalObject.prototype.hasOwnProperty;
  /external/autotest/frontend/client/src/autotest/tko/
ParameterizedField.java 52 for (ParameterizedField prototype : prototypes) {
53 prototypeNames.add(prototype.getTypeName());
64 ParameterizedField prototype = getPrototype(typeName); local
65 ParameterizedField newField = prototype.freshInstance();
75 for (ParameterizedField prototype : prototypes) {
76 if (name.startsWith(prototype.getTypeName())) {
77 return prototype;
81 throw new IllegalArgumentException("No prototype found for " + name);
  /external/autotest/client/cros/networking/chrome_testing/network_test_ext/
background.js 23 Networking.prototype._setupFunctionCall = function(function_name) {
32 Networking.prototype._setResult = function(function_name, result_value) {
45 Networking.prototype.getEnabledNetworkDevices = function() {
62 Networking.prototype.enableNetworkDevice = function(type) {
69 Networking.prototype.disableNetworkDevice = function(type) {
76 Networking.prototype.requestNetworkScan = function() {
83 Networking.prototype.createNetwork = function(shared, properties) {
92 Networking.prototype.setProperties = function(guid, properties) {
101 Networking.prototype.findNetworks = function(type) {
113 Networking.prototype.getNetworks = function(properties)
    [all...]
  /external/v8/src/ic/
call-optimization.cc 39 Handle<JSObject> prototype(JSObject::cast(object_map->prototype()));
40 object_map = handle(prototype->map());
46 return prototype;
74 // Check if holder is in prototype chain of api_holder.
78 Object* prototype = object->map()->prototype(); local
79 if (!prototype->IsJSObject()) return false;
80 if (prototype == *holder) return true;
81 object = JSObject::cast(prototype);
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
mouse_click.js 12 MouseClickAction.prototype.start = function(options) {
16 MouseClickAction.prototype.click_ = function(element) {
29 MouseClickAction.prototype.triggerMouseEvent_ = function(
  /external/curl/packages/Solaris/
Makefile.am 26 echo > prototype
29 pkgproto root/$$subdir=$$subdir >> prototype;\
33 echo "i $$file=$$file" >> prototype; \
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/
antlr.js 260 * to the other frame to test against its Array prototype. To
341 * we care about on the Object prototype.
351 if (org.antlr.lang.isFunction(f) && f!=Object.prototype[fname]) {
359 * Utility to set up the prototype, constructor and superclass properties to
368 * subclass prototype. These will override the
378 F.prototype=superc.prototype;
379 subc.prototype=new F();
380 subc.prototype.constructor=subc;
381 subc.superclass=superc.prototype;
    [all...]
  /external/v8/tools/turbolizer/
monkey.js 5 Array.prototype.getStaggeredFromMiddle = function(i) {
14 Array.prototype.contains = function(obj) {

Completed in 678 milliseconds

1 2 3 4 5 6 7 8 91011>>