HomeSort by relevance Sort by last modified time
    Searched refs:prototype (Results 26 - 50 of 1032) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
MathObject.h 37 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
39 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
NumberObject.h 34 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
36 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMStringMapCustom.cpp 67 JSValue prototype = this->prototype();
68 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
87 JSValue prototype = this->prototype();
88 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
JSImageConstructor.h 32 static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype)
34 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
JSOptionConstructor.h 33 static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype)
35 return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
JSStorageCustom.cpp 59 JSValue prototype = this->prototype();
60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
85 JSValue prototype = this->prototype();
86 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
  /external/webkit/Source/WebCore/bridge/c/
CRuntimeObject.h 47 static Structure* createStructure(JSGlobalData& globalData, JSValue prototype)
49 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
  /external/webkit/Source/WebCore/inspector/front-end/
PleaseWaitMessage.js 42 WebInspector.PleaseWaitMessage.prototype = {
54 var instance = WebInspector.PleaseWaitMessage.prototype.instance;
62 if (!("_instance" in WebInspector.PleaseWaitMessage.prototype))
63 WebInspector.PleaseWaitMessage.prototype._instance = new WebInspector.PleaseWaitMessage();
64 return WebInspector.PleaseWaitMessage.prototype._instance;
69 var instance = WebInspector.PleaseWaitMessage.prototype.instance;
86 var instance = WebInspector.PleaseWaitMessage.prototype.instance;
103 WebInspector.PleaseWaitMessage.prototype.show(element, cancelCallback);
PropertiesSection.js 44 WebInspector.PropertiesSection.prototype.__proto__ = WebInspector.Section.prototype;
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;
SourceJavaScriptTokenizer.re2js 74 WebInspector.SourceJavaScriptTokenizer.prototype = {
178 WebInspector.SourceJavaScriptTokenizer.prototype.__proto__ = WebInspector.SourceTokenizer.prototype;
ExtensionPanel.js 38 WebInspector.ExtensionPanel.prototype = {
53 WebInspector.Panel.prototype.searchCanceled.apply(this, arguments);
59 WebInspector.Panel.prototype.performSearch.apply(this, arguments);
65 WebInspector.Panel.prototype.jumpToNextSearchResult.call(this);
71 WebInspector.Panel.prototype.jumpToPreviousSearchResult.call(this);
82 WebInspector.ExtensionPanel.prototype.__proto__ = WebInspector.Panel.prototype;
90 WebInspector.ExtensionSidebarPane.prototype = {
127 WebInspector.ExtensionSidebarPane.prototype.__proto__ = WebInspector.SidebarPane.prototype;
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.2.js 24 ECMA Section: 15.5.4.2 String.prototype.toString
34 var TITLE = "String.prototype.tostring";
45 array[item++] = new TestCase( SECTION, "String.prototype.toString.__proto__", Function.prototype, String.prototype.toString.__proto__ );
47 "String.prototype.toString() == String.prototype.valueOf()",
49 String.prototype.toString() == String.prototype.valueOf() );
51 array[item++] = new TestCase( SECTION, "String.prototype.toString()", "", String.prototype.toString() )
    [all...]
  /external/v8/test/mjsunit/
function-prototype.js 29 // prototype used for instances in that case should be the initial
30 // object prototype. ECMA-262 13.2.2.
33 F.prototype = value;
35 assertEquals(value, F.prototype);
36 assertEquals(Object.prototype, f.__proto__);
47 assertEquals(f.__proto__, F.prototype);
48 F.prototype = 42;
50 assertEquals(Object.prototype, f.__proto__);
51 assertEquals(42, F.prototype);
52 F.prototype = { a: 42 }
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
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/
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/dexmaker/src/dx/java/com/android/dx/dex/file/
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/chromium/chrome/browser/resources/ntp4/tools/
externs.js 9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
22 CustomEvent.prototype.initCustomEvent =
25 CustomEvent.prototype.detail;
40 Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
22 CustomEvent.prototype.initCustomEvent =
25 CustomEvent.prototype.detail;
40 Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.4.3.js 24 ECMA Section: 15.2.4.3 Object.prototype.valueOf()
41 var TITLE = "Object.prototype.valueOf()";
53 myarray.valueOf = Object.prototype.valueOf;
55 myboolean.valueOf = Object.prototype.valueOf;
57 myfunction.valueOf = Object.prototype.valueOf;
59 myobject.valueOf = Object.prototype.valueOf;
61 mymath.valueOf = Object.prototype.valueOf;
63 mydate.valueOf = Object.prototype.valueOf;
65 mynumber.valueOf = Object.prototype.valueOf;
67 mystring.valueOf = Object.prototype.valueOf
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
proto_10.js 32 This tests the syntax ObjectName.prototype = new PrototypeObject using the
50 if ( object == constructor.prototype ) {
65 Manager.prototype = new Employee();
72 WorkerBee.prototype = new Employee();
78 SalesPerson.prototype = new WorkerBee();
85 Engineer.prototype = new WorkerBee();
103 "pat.__proto__ == Engineer.prototype",
105 pat.__proto__ == Engineer.prototype );
108 "pat.__proto__.__proto__ == WorkerBee.prototype",
110 pat.__proto__.__proto__ == WorkerBee.prototype );
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-003-n.js 44 Gen2.prototype = new Gen3();
51 Gen1.prototype = new Gen2();
58 Gen0.prototype = new Gen1();
67 GenA.prototype = new Gen0();
76 GenB.prototype = void 0;
88 // Identifier is a function, prototype of Identifier is not an object
instanceof-004-n.js 44 Gen2.prototype = new Gen3();
51 Gen1.prototype = new Gen2();
58 Gen0.prototype = new Gen1();
67 GenA.prototype = new Gen0();
76 GenB.prototype = void 0;
87 // Identifier is a function, prototype of Identifier is not an object
instanceof-005-n.js 44 Gen2.prototype = new Gen3();
51 Gen1.prototype = new Gen2();
58 Gen0.prototype = new Gen1();
67 GenA.prototype = new Gen0();
76 GenB.prototype = void 0;
79 // Identifier is a function, prototype of Identifier is not an object
instanceof-006.js 44 Gen2.prototype = new Gen3();
51 Gen1.prototype = new Gen2();
58 Gen0.prototype = new Gen1();
67 GenA.prototype = new Gen0();
76 GenB.prototype = void 0;

Completed in 906 milliseconds

12 3 4 5 6 7 8 91011>>