HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 251 - 275 of 386) sorted by null

<<111213141516

  /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);
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 165 /** @constructor */
444 /** @constructor */
465 /** @constructor
551 /** @constructor */
  /external/pcre/
pcregexp.pas 77 constructor Init(const ARegExp : shortstring; AOptions : integer; ALocale : Pointer);
322 constructor Init(AMaxRegExp:integer);
463 constructor TpcRegExp.Init(const ARegExp:shortstring; AOptions:integer; ALocale : Pointer);
686 constructor TRegExpCollection.Init(AMaxRegExp: integer);
  /external/v8/src/
apinatives.js 51 var Constructor = %GetTemplateField(data, kApiConstructorOffset);
52 var result = Constructor ? new (Instantiate(Constructor))() : {};
77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
handles.h 51 // Constructor for handling automatic up casting.
336 Handle<JSFunction> constructor,
v8natives.js 190 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
195 $Object.prototype.constructor = $Object;
1013 // Set the Number function and constructor.
1108 // Setup the constructor property on the Number prototype object.
1109 %SetProperty($Number.prototype, "constructor", $Number, DONT_ENUM);
1154 $Function.prototype.constructor = $Function;
    [all...]
heap.cc     [all...]
runtime.cc 409 Handle<JSFunction> constructor(
411 Handle<Object> object = isolate->factory()->NewJSObject(constructor);
595 JSFunction* constructor = local
599 { MaybeObject* maybe_object = isolate->heap()->AllocateJSObject(constructor);
1690 Object* constructor = map->constructor(); local
1807 Handle<JSFunction> constructor = local
    [all...]
bootstrapper.cc 667 // It has a constructor pointer that points at global_constructor which is a
672 // That in turn has a constructor pointer that points at
687 FunctionTemplateInfo::cast(data->constructor()));
706 // Change the constructor property of the prototype of the
718 FunctionTemplateInfo::cast(js_global_template->constructor()));
744 FunctionTemplateInfo::cast(data->constructor()));
    [all...]
string.js 35 // Set the String function and constructor.
864 // Setup the constructor property on the String prototype object.
865 %SetProperty($String.prototype, "constructor", $String, DONT_ENUM);
heap.h 147 V(constructor_symbol, "constructor") \
427 // constructor.
432 JSFunction* constructor, PretenureFlag pretenure = NOT_TENURED);
434 // Allocates and initializes a new global object based on a constructor.
438 MUST_USE_RESULT MaybeObject* AllocateGlobalObject(JSFunction* constructor);
451 // Reinitialize an JSGlobalProxy based on a constructor. The object
453 // constructor. The object is reinitialized and behaves as an
454 // object that has been freshly allocated using the constructor.
456 JSFunction* constructor, JSGlobalProxy* global);
    [all...]
  /external/v8/test/mjsunit/
debug-backtrace-text.js 90 // 0: Call Point constructor
debug-references.js 108 // Test constructor and objects.
  /external/v8/tools/
logreader.js 38 * @constructor
  /external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js 414 // In Chromium DOM wrapper prototypes will have Object as their constructor name,
415 // get the real DOM wrapper name from the constructor property.
416 var constructorName = obj.constructor && obj.constructor.name;
  /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/chromium/chrome/browser/resources/net_internals/
util.js 6 * Inherit the prototype methods from one constructor into another.
13 childCtor.prototype.constructor = childCtor;
  /external/chromium/chrome/common/extensions/docs/examples/api/webNavigation/basic/
navigation_collector.js 13 * that you can do interesting things with. Calling the constructor will
18 * @constructor
  /dalvik/dx/src/com/android/dx/gen/
Code.java 415 public <T> void newInstance(Local<T> target, MethodId<T, Void> constructor, Local<?>... args) {
420 RegisterSpecList.EMPTY, catches, constructor.declaringType.constant));
422 invokeDirect(constructor, null, target, args);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 474 // Make sure there is enough data provided to the constructor to build
475 // something of the type of the constructor. Also returns the type of
476 // the constructor.
527 error(line, "array constructor needs one argument per array element", "constructor", "");
532 error(line, "constructing from a non-dereferenced array", "constructor", "");
538 error(line, "constructing matrix from matrix can only take one argument", "constructor", "");
544 error(line, "too many arguments", "constructor", "");
549 error(line, "Number of constructor parameters does not match the number of structure fields", "constructor", "");
1155 TIntermTyped* constructor = intermediate.setAggregateOperator(aggrNode, op, line); local
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotView.js 116 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
148 for (var constructor in aggregates)
149 this.appendChild(new WebInspector.HeapSnapshotConstructorNode(this, constructor, aggregates[constructor]));
161 object: { title: WebInspector.UIString("Constructor"), disclosure: true, sortable: true },
    [all...]
  /dalvik/dexdump/
DexDump.cpp 298 "CONSTRUCTOR", /* 0x10000 */
1185 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 1095 milliseconds

<<111213141516