Home
last modified time | relevance | path

Searched refs:childCtor (Results 1 – 3 of 3) sorted by relevance

/external/v8/test/mjsunit/tools/
Dprofile.js136 function Inherits(childCtor, parentCtor) { argument
139 childCtor.superClass_ = parentCtor.prototype;
140 childCtor.prototype = new tempCtor(); class
141 childCtor.prototype.constructor = childCtor;
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
Dbase.js1422 goog.inherits = function(childCtor, parentCtor) { argument
1426 childCtor.superClass_ = parentCtor.prototype;
1427 childCtor.prototype = new tempCtor(); class
1428 childCtor.prototype.constructor = childCtor;
/external/v8/tools/
Dtickprocessor.js29 function inherits(childCtor, parentCtor) { argument
30 childCtor.prototype.__proto__ = parentCtor.prototype; class