Searched defs:constructor (Results 51 - 75 of 126) sorted by relevance

123456

/external/v8/src/
H A Dfactory.cc677 // constructor may not have been defined. Bail out.
701 Handle<Object> Factory::NewError(const char* constructor, argument
703 Handle<String> constr = LookupAsciiSymbol(constructor);
775 // Set function.prototype and give the prototype a constructor
923 Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor, argument
927 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
932 Handle<JSFunction> constructor) {
934 isolate()->heap()->AllocateGlobalObject(*constructor),
931 NewGlobalObject( Handle<JSFunction> constructor) argument
H A Disolate.cc754 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); local
755 if (!constructor->shared()->IsApiFunction()) return;
757 constructor->shared()->get_api_func_data()->access_check_info();
820 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
821 if (!constructor->shared()->IsApiFunction()) return false;
824 constructor->shared()->get_api_func_data()->access_check_info();
863 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
[all...]
H A Druntime.cc463 Handle<JSFunction> constructor(
466 Handle<JSArray>::cast(isolate->factory()->NewJSObject(constructor));
1228 // Copy map so it won't interfere constructor's initial map.
1246 // Copy map so it won't interfere constructor's initial map.
1801 Object* constructor = map->constructor(); local
1802 if (constructor->IsJSFunction() &&
1803 JSFunction::cast(constructor)->initial_map() == map) {
1940 Handle<JSFunction> constructor = local
1946 RegExpImpl::CreateRegExpLiteral(constructor, patter
[all...]
H A Dliveedit.cc628 Handle<JSFunction> constructor = local
631 Handle<JSValue>::cast(FACTORY->NewJSObject(constructor));
/external/valgrind/main/coregrind/m_demangle/
H A Dcplus-dem.c145 int constructor; member in struct:work_stuff
1173 s1 = work->constructor;
1177 work->constructor = work->destructor = 0;
1204 if (work->constructor == 2)
1207 work->constructor = 0;
1221 work->constructor = s1;
1574 if ((work->constructor & 1) || (work->destructor & 1))
1577 work->constructor -= 1;
1624 if (!(work->constructor & 1))
2569 we are demangling a constructor o
[all...]
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.cc319 constructor()->PrintTo(stream);
326 constructor()->PrintTo(stream);
1281 LOperand* constructor = UseFixed(instr->constructor(), r1); local
1283 LCallNew* result = new(zone()) LCallNew(constructor);
1289 LOperand* constructor = UseFixed(instr->constructor(), r1); local
1291 LCallNewArray* result = new(zone()) LCallNewArray(constructor);
H A Dlithium-arm.h1912 explicit LCallNew(LOperand* constructor) { argument
1913 inputs_[0] = constructor;
1916 LOperand* constructor() { return inputs_[0]; } function in class:v8::internal::LCallNew
1929 explicit LCallNewArray(LOperand* constructor) { argument
1930 inputs_[0] = constructor;
1933 LOperand* constructor() { return inputs_[0]; } function in class:v8::internal::LCallNewArray
/external/chromium_org/v8/src/
H A Dfactory.cc837 // constructor may not have been defined. Bail out.
862 Handle<Object> Factory::NewError(const char* constructor, argument
864 Handle<String> constr = InternalizeUtf8String(constructor);
1000 Handle<JSObject> Factory::NewJSObject(Handle<JSFunction> constructor, argument
1004 isolate()->heap()->AllocateJSObject(*constructor, pretenure), JSObject);
1017 Handle<JSFunction> constructor) {
1019 isolate()->heap()->AllocateGlobalObject(*constructor),
1016 NewGlobalObject( Handle<JSFunction> constructor) argument
H A Disolate.cc614 // a stack trace. The caller is the error constructor that asked
938 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); local
939 if (!constructor->shared()->IsApiFunction()) return;
941 constructor->shared()->get_api_func_data()->access_check_info();
1005 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor());
1006 if (!constructor->shared()->IsApiFunction()) return false;
1009 constructor->shared()->get_api_func_data()->access_check_info();
1048 JSFunction* constructor
[all...]
H A Druntime.cc369 Handle<JSFunction> constructor(
374 constructor, isolate->heap()->GetPretenureMode()));
1917 // Copy map so it won't interfere constructor's initial map.
1935 // Copy map so it won't interfere constructor's initial map.
2481 Object* constructor = map->constructor(); local
2482 if (constructor->IsJSFunction() &&
2483 JSFunction::cast(constructor)->initial_map() == map) {
2640 Handle<JSFunction> constructor = local
2646 RegExpImpl::CreateRegExpLiteral(constructor, patter
[all...]
H A Dliveedit.cc636 Handle<JSFunction> constructor = isolate->opaque_reference_function(); local
638 Handle<JSValue>::cast(isolate->factory()->NewJSObject(constructor));
H A Dmirror-debugger.js125 * Inherit the prototype methods from one constructor into another.
142 ctor.prototype.constructor = ctor;
224 * @constructor
426 return "#<" + this.constructor.name + ">";
436 * @constructor
481 * @constructor
497 * @constructor
514 * @constructor
531 * @constructor
548 * @constructor
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc353 constructor()->PrintTo(stream);
362 constructor()->PrintTo(stream);
1364 LOperand* constructor = UseFixed(instr->constructor(), edi); local
1366 LCallNew* result = new(zone()) LCallNew(context, constructor);
1373 LOperand* constructor = UseFixed(instr->constructor(), edi); local
1375 LCallNewArray* result = new(zone()) LCallNewArray(context, constructor);
H A Dlithium-ia32.h1963 LCallNew(LOperand* context, LOperand* constructor) { argument
1965 inputs_[1] = constructor;
1969 LOperand* constructor() { return inputs_[1]; } function in class:v8::internal::LCallNew
1982 LCallNewArray(LOperand* context, LOperand* constructor) { argument
1984 inputs_[1] = constructor;
1988 LOperand* constructor() { return inputs_[1]; } function in class:v8::internal::LCallNewArray
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc324 constructor()->PrintTo(stream);
331 constructor()->PrintTo(stream);
1283 LOperand* constructor = UseFixed(instr->constructor(), a1); local
1285 LCallNew* result = new(zone()) LCallNew(constructor);
1291 LOperand* constructor = UseFixed(instr->constructor(), a1); local
1293 LCallNewArray* result = new(zone()) LCallNewArray(constructor);
H A Dlithium-mips.h1889 explicit LCallNew(LOperand* constructor) { argument
1890 inputs_[0] = constructor;
1893 LOperand* constructor() { return inputs_[0]; } function in class:v8::internal::LCallNew
1906 explicit LCallNewArray(LOperand* constructor) { argument
1907 inputs_[0] = constructor;
1910 LOperand* constructor() { return inputs_[0]; } function in class:v8::internal::LCallNewArray
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc322 constructor()->PrintTo(stream);
329 constructor()->PrintTo(stream);
1277 LOperand* constructor = UseFixed(instr->constructor(), rdi); local
1279 LCallNew* result = new(zone()) LCallNew(constructor);
1285 LOperand* constructor = UseFixed(instr->constructor(), rdi); local
1287 LCallNewArray* result = new(zone()) LCallNewArray(constructor);
H A Dlithium-x64.h1842 explicit LCallNew(LOperand* constructor) { argument
1843 inputs_[0] = constructor;
1846 LOperand* constructor() { return inputs_[0]; } function in class:v8::internal::LCallNew
1859 explicit LCallNewArray(LOperand* constructor) { argument
1860 inputs_[0] = constructor;
1863 LOperand* constructor() { return inputs_[0]; } function in class:v8::internal::LCallNewArray
/external/v8/src/arm/
H A Dlithium-arm.cc1238 LOperand* constructor = UseFixed(instr->constructor(), r1); local
1240 LCallNew* result = new(zone()) LCallNew(constructor);
H A Dlithium-arm.h1534 explicit LCallNew(LOperand* constructor) { argument
1535 inputs_[0] = constructor;
/external/v8/src/ia32/
H A Dlithium-ia32.cc1269 LOperand* constructor = UseFixed(instr->constructor(), edi); local
1271 LCallNew* result = new(zone()) LCallNew(context, constructor);
H A Dlithium-ia32.h1578 LCallNew(LOperand* context, LOperand* constructor) { argument
1580 inputs_[1] = constructor;
1589 LOperand* constructor() { return inputs_[1]; } function in class:v8::internal::LCallNew
/external/v8/src/mips/
H A Dlithium-mips.cc1239 LOperand* constructor = UseFixed(instr->constructor(), a1); local
1241 LCallNew* result = new(zone()) LCallNew(constructor);
/external/v8/src/x64/
H A Dlithium-x64.cc1228 LOperand* constructor = UseFixed(instr->constructor(), rdi); local
1230 LCallNew* result = new(zone()) LCallNew(constructor);
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js36 object.constructor = Native;
39 object.prototype.constructor = object;
1060 newClass.constructor = Class;
1061 newClass.prototype.constructor = newClass;

Completed in 3429 milliseconds

123456