HomeSort by relevance Sort by last modified time
    Searched full:constructorfunction (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
ElementFactory.cpp.tmpl 26 typedef PassRefPtrWillBeRawPtr<{{namespace}}Element> (*ConstructorFunction)(
33 typedef HashMap<AtomicString, ConstructorFunction> FunctionMap;
66 ConstructorFunction func;
96 if (ConstructorFunction function = g_constructors->get(localName))
  /external/chromium_org/v8/test/mjsunit/
mirror-unresolved-function.js 64 assertEquals('undefined', mirror.constructorFunction().type());
72 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
73 assertEquals('undefined', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
mirror-array.js 62 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror, 'Unexpected mirror hierachy');
63 assertEquals('Array', mirror.constructorFunction().name(), 'Unexpected constructor function name');
79 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
80 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
81 assertEquals('Array', refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
mirror-function.js 65 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror);
76 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
77 assertEquals('Function', refs.lookup(fromJSON.constructorFunction.ref).name);
mirror-object.js 61 assertTrue(mirror.constructorFunction() instanceof debug.ObjectMirror, 'Unexpected mirror hierarchy');
62 assertEquals(ctor_name, mirror.constructorFunction().name(), 'Unexpected constructor function name');
102 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON');
103 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON');
104 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
HeapSnapshotWorkerDispatcher.js 67 var constructorFunction = this._findFunction(data.methodName);
68 this._objects[data.objectId] = new constructorFunction(this);
  /external/chromium_org/v8/test/mjsunit/es6/
mirror-promises.js 49 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type);
50 assertEquals('Promise', refs.lookup(fromJSON.constructorFunction.ref).name);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
ModuleManager.js 435 var constructorFunction = window.eval(this._className);
436 if (!(constructorFunction instanceof Function))
439 this._instance = new constructorFunction();
  /external/chromium_org/v8/src/
mirror-debugger.js 632 ObjectMirror.prototype.constructorFunction = function() {
823 var ctor = this.constructorFunction();
1049 UnresolvedFunctionMirror.prototype.constructorFunction = function() {
    [all...]
d8.js     [all...]

Completed in 1322 milliseconds