HomeSort by relevance Sort by last modified time
    Searched refs:prototype (Results 176 - 200 of 699) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/tools/
codemap.js 86 devtools.profiler.CodeMap.prototype.addCode = function(start, codeEntry) {
98 devtools.profiler.CodeMap.prototype.moveCode = function(from, to) {
110 devtools.profiler.CodeMap.prototype.deleteCode = function(start) {
121 devtools.profiler.CodeMap.prototype.addLibrary = function(
134 devtools.profiler.CodeMap.prototype.addStaticCode = function(
143 devtools.profiler.CodeMap.prototype.markPages_ = function(start, end) {
154 devtools.profiler.CodeMap.prototype.isAddressBelongsTo_ = function(addr, node) {
162 devtools.profiler.CodeMap.prototype.findInTree_ = function(tree, addr) {
174 devtools.profiler.CodeMap.prototype.findEntry = function(addr) {
203 devtools.profiler.CodeMap.prototype.findDynamicEntryByStartAddress
    [all...]
profile.js 58 devtools.profiler.Profile.prototype.skipThisFunction = function(name) {
88 devtools.profiler.Profile.prototype.handleUnknownCode = function(
100 devtools.profiler.Profile.prototype.addLibrary = function(
116 devtools.profiler.Profile.prototype.addStaticCode = function(
133 devtools.profiler.Profile.prototype.addCode = function(
147 devtools.profiler.Profile.prototype.addCodeAlias = function(
162 devtools.profiler.Profile.prototype.moveCode = function(from, to) {
176 devtools.profiler.Profile.prototype.deleteCode = function(start) {
191 devtools.profiler.Profile.prototype.safeMoveDynamicCode = function(from, to) {
203 devtools.profiler.Profile.prototype.safeDeleteDynamicCode = function(start)
    [all...]
  /external/webkit/JavaScriptCore/debugger/
DebuggerActivation.h 52 static PassRefPtr<Structure> createStructure(JSValue prototype)
54 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
  /external/webkit/JavaScriptCore/runtime/
DateInstance.h 56 static PassRefPtr<Structure> createStructure(JSValue prototype)
58 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
JSNotAnObject.h 63 static PassRefPtr<Structure> createStructure(JSValue prototype)
65 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
JSPropertyNameIterator.h 48 static PassRefPtr<Structure> createStructure(JSValue prototype)
50 return Structure::create(prototype, TypeInfo(CompoundType, OverridesMarkChildren), AnonymousSlotCount);
RegExpObject.h 50 static PassRefPtr<Structure> createStructure(JSValue prototype)
52 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
StringObject.h 49 static PassRefPtr<Structure> createStructure(JSValue prototype)
51 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
JSGlobalObject.h 263 void resetPrototype(JSValue prototype);
268 static PassRefPtr<Structure> createStructure(JSValue prototype)
270 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
296 void reset(JSValue prototype);
377 // We cache our prototype chain so our clients can share it.
379 JSValue prototype = prototypeForLookup(exec); local
380 m_cachedPrototypeChain = StructureChain::create(prototype.isNull() ? 0 : asObject(prototype)->structure());
390 JSValue prototype = prototypeForLookup(exec);
392 while(*cachedStructure && !prototype.isNull())
    [all...]
JSFunction.cpp 151 if (propertyName == exec->propertyNames().prototype) {
155 JSObject* prototype = new (exec) JSObject(scopeChain().globalObject()->emptyObjectStructure()); local
156 prototype->putDirect(exec->propertyNames().constructor, this, DontEnum);
157 putDirect(exec->propertyNames().prototype, prototype, DontDelete);
187 if (propertyName == exec->propertyNames().prototype) {
256 JSValue prototype = get(exec, exec->propertyNames().prototype); local
257 if (prototype.isObject())
258 structure = asObject(prototype)->inheritorID()
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.5-1.js 38 15.3.5.2 prototype
39 The value of the prototype property is used to initialize the internal [[
40 Prototype]] property of a newly created object before the Function object
95 array[item++] = new TestCase( SECTION, "MyFunc.prototype.toString()", "[object Object]", MyFunc.prototype.toString() );
96 array[item++] = new TestCase( SECTION, "typeof MyFunc.prototype", "object", typeof MyFunc.prototype );
15.3.5-2.js 38 15.3.5.2 prototype
39 The value of the prototype property is used to initialize the internal [[
40 Prototype]] property of a newly created object before the Function object
74 array[item++] = new TestCase( SECTION, "typeof MyObject.prototype", "object", typeof MyObject.prototype );
75 array[item++] = new TestCase( SECTION, "typeof MyObject.prototype.constructor", "function", typeof MyObject.prototype.constructor );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.3-1.js 24 ECMA Section: 15.5.4.3 String.prototype.valueOf()
40 var TITLE = "String.prototype.valueOf";
51 array[item++] = new TestCase( SECTION, "String.prototype.valueOf.length", 0, String.prototype.valueOf.length );
53 array[item++] = new TestCase( SECTION, "String.prototype.valueOf()", "", String.prototype.valueOf() );
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
scope-002.js 69 Car.prototype.paint = paint;
74 Car.prototype.color = Car.color;
  /external/webkit/JavaScriptGlue/
UserObjectImp.h 62 static PassRefPtr<Structure> createStructure(JSValue prototype)
64 return Structure::create(prototype, TypeInfo(ObjectType, OverridesGetOwnPropertySlot | OverridesMarkChildren | OverridesGetPropertyNames), AnonymousSlotCount);
  /external/webkit/WebCore/bridge/
runtime_array.h 61 static PassRefPtr<Structure> createStructure(JSValue prototype)
63 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
runtime_object.h 62 static PassRefPtr<Structure> createStructure(JSValue prototype)
64 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
  /external/webkit/WebCore/inspector/front-end/
Database.js 37 WebInspector.Database.prototype = {
75 return WebInspector.Resource.prototype.__lookupGetter__("displayDomain").call(this);
SourceTokenizer.js 36 WebInspector.SourceTokenizer.prototype = {
91 WebInspector.SourceTokenizer.Registry.prototype = {
DOMStorageItemsView.js 43 WebInspector.DOMStorageItemsView.prototype = {
51 WebInspector.View.prototype.show.call(this, parentElement);
57 WebInspector.View.prototype.hide.call(this);
157 WebInspector.DOMStorageItemsView.prototype.__proto__ = WebInspector.View.prototype;
SourceView.js 40 WebInspector.SourceView.prototype = {
43 WebInspector.ResourceView.prototype.show.call(this, parentElement);
50 WebInspector.View.prototype.hide.call(this);
117 // The rest of the methods in this prototype need to be generic enough to work with a ScriptView.
118 // The ScriptView prototype pulls these methods into it's prototype to avoid duplicate code.
238 WebInspector.SourceView.prototype.__proto__ = WebInspector.ResourceView.prototype;
  /external/v8/test/mjsunit/
instanceof.js 42 F.prototype = A;
47 F.prototype = B;
52 F.prototype = C;
86 // Make sure to throw an exception if the function prototype
89 G.prototype = undefined;
value-callic-prototype-change.js 42 String.prototype.toString = function() { return "ostehaps"; };
54 Number.prototype.toString = function() { return 0; };
65 Number.prototype.toString = function() { return 42; };
76 Boolean.prototype.toString = function() { return 0; };
87 Boolean.prototype.toString = function() { return 42; };
apply.js 121 assertTrue(e.toString().indexOf("Function.prototype.apply") != -1,
122 "exception does not contain Function.prototype.apply: " +
133 assertTrue(e.toString().indexOf("Function.prototype.apply") != -1,
134 "exception does not contain Function.prototype.apply [" +
165 var same_primes = Array.prototype.constructor.apply(Array, primes);
172 Array.prototype["1"] = "sep";
178 assertEquals("morseper", String.prototype.concat.apply("", holey),
180 assertEquals("morseper", String.prototype.concat.apply("", holey, 1),
182 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2),
184 assertEquals("morseper", String.prototype.concat.apply("", holey, 1, 2, 3)
    [all...]
  /external/v8/test/mjsunit/tools/
profile.js 68 ProfileTestDriver.prototype.funcAddrs_ = {
74 ProfileTestDriver.prototype.addFunctions_ = function() {
87 ProfileTestDriver.prototype.enter = function(funcName) {
95 ProfileTestDriver.prototype.stay = function() {
100 ProfileTestDriver.prototype.leave = function() {
105 ProfileTestDriver.prototype.execute = function() {
138 tempCtor.prototype = parentCtor.prototype;
139 childCtor.superClass_ = parentCtor.prototype;
140 childCtor.prototype = new tempCtor()
    [all...]

Completed in 437 milliseconds

1 2 3 4 5 6 78 91011>>