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

1 2 3 4 5 6 78 91011

  /bionic/libc/arch-x86/bionic/
crtbegin_dynamic.S 50 # - address of the constructor list
71 # the .ctors section contains a list of pointers to "constructor"
  /external/v8/src/
heap.cc     [all...]
runtime.cc 316 Handle<JSFunction> constructor(
318 Handle<Object> object = Factory::NewJSObject(constructor);
479 JSFunction* constructor = local
481 Object* object = Heap::AllocateJSObject(constructor);
688 // Copy map so it won't interfere constructor's initial map.
704 // Copy map so it won't interfere constructor's initial map.
1246 Handle<JSFunction> constructor = local
    [all...]
apinatives.js 51 var Constructor = %GetTemplateField(data, kApiConstructorOffset);
52 var result = Constructor ? new (Instantiate(Constructor))() : {};
77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
execution.cc 197 // attempt is made to call the given object as a constructor.
530 !data->constructor()->IsUndefined()) {
537 FunctionTemplateInfo::cast(data->constructor()));
handles.h 50 // Constructor for handling automatic up casting.
312 Handle<JSFunction> constructor,
objects.cc 56 static Object* CreateJSValue(JSFunction* constructor, Object* value) {
57 Object* result = Heap::AllocateJSObject(constructor);
430 Object* cons_obj = map()->constructor();
866 Object* constructor = map()->constructor(); local
868 if (constructor->IsHeapObject() &&
869 !Heap::Contains(HeapObject::cast(constructor))) {
870 accumulator->Add("!!!INVALID CONSTRUCTOR!!!");
873 if (constructor->IsJSFunction()) {
874 if (!Heap::Contains(JSFunction::cast(constructor)->shared()))
1182 JSFunction* constructor = JSFunction::cast(map()->constructor()); local
1196 JSFunction* constructor = JSFunction::cast(map()->constructor()); local
6156 JSFunction* constructor = JSFunction::cast(map()->constructor()); local
6166 JSFunction* constructor = JSFunction::cast(map()->constructor()); local
    [all...]
heap.h 137 V(constructor_symbol, "constructor") \
292 // constructor.
296 static Object* AllocateJSObject(JSFunction* constructor,
299 // Allocates and initializes a new global object based on a constructor.
303 static Object* AllocateGlobalObject(JSFunction* constructor);
316 // Reinitialize an JSGlobalProxy based on a constructor. The object
318 // constructor. The object is reinitialized and behaves as an
319 // object that has been freshly allocated using the constructor.
320 static Object* ReinitializeJSGlobalProxy(JSFunction* constructor,
    [all...]
objects-debug.cc 628 PrintF("\n - constructor: ");
629 constructor()->ShortPrint();
1070 VerifyPointer(constructor());
1076 PrintF("\n - constructor: ");
1077 constructor()->ShortPrint();
    [all...]
bootstrapper.cc 498 // It has a constructor pointer that points at global_constructor which is a
503 // That in turn has a constructor pointer that points at
518 FunctionTemplateInfo::cast(data->constructor()));
532 // Change the constructor property of the prototype of the
541 FunctionTemplateInfo::cast(js_global_template->constructor()));
566 FunctionTemplateInfo::cast(data->constructor()));
673 // as the constructor. 'Array' property on a global object can be
    [all...]
  /external/v8/test/cctest/
test-heap.cc 537 JSFunction* constructor = local
541 JSObject* obj = JSObject::cast(Heap::AllocateJSObject(constructor));
671 JSFunction* constructor = local
673 JSObject* obj = JSObject::cast(Heap::AllocateJSObject(constructor));
  /external/v8/test/mjsunit/
undeletable-functions.js 92 CheckEcmaSemantics(Date.prototype, ["constructor"], "Date prototype constructor");
debug-backtrace-text.js 90 // 0: Call Point constructor
debug-references.js 108 // Test constructor and objects.
to_number_order.js 66 assertEquals("", x, "Date not constructor");
  /external/v8/tools/
codemap.js 37 * @constructor
239 * @constructor
profile.js 38 * @constructor
379 * @constructor
420 * @constructor
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.cpp 250 jmethodID constructor = env->GetMethodID(paintClass, "<init>", "(Landroid/content/Context;III)V"); local
251 jobject paintSurface = env->NewObject(paintClass, constructor, m_context, (int)inst(), pW, pH);
  /libcore/dom/src/test/java/org/w3c/domts/
JUnitTestCaseAdapter.java 16 import java.lang.reflect.Constructor;
85 Constructor<?> constructor = clazz.getConstructor(new Class<?>[] { local
89 test = (DOMTestCase)constructor.newInstance(new Object[] {
  /external/bluetooth/glib/gobject/
gobject.h 253 * @constructor: the @constructor function is called by g_object_new () to
255 * set. The first thing a @constructor implementation must do is chain up to the
256 * @constructor of the parent class. Overriding @constructor should be rarely
287 * <title>Implementing singletons using a constructor</title>
300 * object = G_OBJECT_CLASS (parent_class)->constructor (type,
321 GObject* (*constructor) (GType type, member in struct:_GObjectClass
356 * structure used to hand #GParamSpec/#GValue pairs to the @constructor of
  /external/webkit/JavaScriptCore/runtime/
JSFunction.cpp 156 prototype->putDirect(exec->propertyNames().constructor, this, DontEnum);
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java 28 import java.lang.reflect.Constructor;
348 * Constructs a new ObjectInputStream. This default constructor can be used
349 * by subclasses that do not want to use the public constructor if it
583 * but running the constructor defined in class
594 * The empty constructor to run will be in this class
1972 Constructor<?> constructor = null; local
    [all...]
  /dalvik/dexdump/
DexDump.c 296 "CONSTRUCTOR", /* 0x10000 */
1154 bool constructor = (name[0] == '<'); local
    [all...]
  /external/stlport/test/unit/
string_test.cpp 50 CPPUNIT_TEST(constructor);
110 void constructor();
169 void StringTest::constructor() function in class:StringTest
312 //This is to test move constructor
884 * pass it to the helper function. It uses the copy constructor for this.
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 50 CPPUNIT_TEST(constructor);
110 void constructor();
169 void StringTest::constructor() function in class:StringTest
312 //This is to test move constructor
884 * pass it to the helper function. It uses the copy constructor for this.
    [all...]

Completed in 2057 milliseconds

1 2 3 4 5 6 78 91011