| /external/webkit/JavaScriptCore/API/ |
| JSValueRef.h | 156 @abstract Tests whether a JavaScript value is an object constructed by a given constructor, as compared by the JS instanceof operator. 159 @param constructor The constructor to test against. 161 @result true if value is an object constructed by constructor, as compared by the JS instanceof operator, otherwise false. 163 JS_EXPORT bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception);
|
| JSObjectRef.h | 224 @abstract The callback invoked when an object is used as a constructor in a 'new' expression. 226 @param constructor A JSObject that is the constructor being called. 230 @result A JSObject that is the constructor's return value. 233 JSObjectRef CallAsConstructor(JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception); 235 If your callback were invoked by the JavaScript expression 'new myConstructor()', constructor would be set to myConstructor. 237 If this callback is NULL, using your object as a constructor in a 'new' expression will throw an exception. 240 (*JSObjectCallAsConstructorCallback) (JSContextRef ctx, JSObjectRef constructor, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception); 246 @param constructor The JSObject that is the target of the 'instanceof' expression. 247 @param possibleInstance The JSValue being tested to determine if it is an instance of constructor [all...] |
| JSValueRef.cpp | 166 bool JSValueIsInstanceOfConstructor(JSContextRef ctx, JSValueRef value, JSObjectRef constructor, JSValueRef* exception) 173 JSObject* jsConstructor = toJS(constructor);
|
| /external/v8/src/ |
| top.cc | 440 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); local 441 Object* info = constructor->shared()->function_data(); 503 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); 504 Object* info = constructor->shared()->function_data(); 548 JSFunction* constructor = JSFunction::cast(receiver->map()->constructor()); 549 Object* info = constructor->shared()->function_data(); [all...] |
| mirror-debugger.js | 125 * Inherit the prototype methods from one constructor into another. 133 * @param {function} ctor Constructor function which needs to inherit the 135 * @param {function} superCtor Constructor function to inherit prototype from 142 ctor.prototype.constructor = ctor; 221 * @constructor 414 return "#<" + builtins.GetInstanceName(this.constructor.name) + ">"; 424 * @constructor 469 * @constructor 485 * @constructor 502 * @constructor [all...] |
| factory.h | 197 static Handle<JSObject> NewJSObject(Handle<JSFunction> constructor, 201 static Handle<GlobalObject> NewGlobalObject(Handle<JSFunction> constructor); 245 static Handle<Object> NewError(const char* constructor,
|
| /external/bluetooth/glib/gio/ |
| glocaldirectorymonitor.c | 97 obj = parent_class->constructor (type, 149 gobject_class->constructor = g_local_directory_monitor_constructor;
|
| /external/bluetooth/glib/gio/win32/ |
| gwin32directorymonitor.c | 158 obj = parent_class->constructor (type, n_construct_properties, construct_properties); 198 G_OBJECT_CLASS (klass)->constructor = g_win32_directory_monitor_constructor;
|
| /external/v8/test/mjsunit/ |
| mirror-array.js | 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-unresolved-function.js | 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');
|
| fuzz-accessors.js | 29 'prototype', 'length', 'caller', 0, 1, '$1', 'arguments', 'name', 'message', 'constructor'
|
| mirror-object.js | 62 assertEquals(ctor_name, mirror.constructorFunction().name(), 'Unexpected constructor function name'); 95 assertEquals(mirror.constructorFunction().handle(), fromJSON.constructorFunction.ref, 'Unexpected constructor function handle in JSON'); 96 assertEquals('function', refs.lookup(fromJSON.constructorFunction.ref).type, 'Unexpected constructor function type in JSON'); 97 assertEquals(ctor_name, refs.lookup(fromJSON.constructorFunction.ref).name, 'Unexpected constructor function name in JSON');
|
| /external/v8/test/mjsunit/regress/ |
| regress-502.js | 30 // Test that we do not generate an inlined version of the constructor
|
| /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/ |
| split-002.js | 159 if ( separator.constructor == RegExp ) // 6 221 if (R.constructor == RegExp) { // 1
|
| /frameworks/base/tests/CoreTests/android/core/ |
| ClassTest.java | 24 import java.lang.reflect.Constructor; 59 //System.out.println("Class.newInstance() private constructor"); 103 Constructor constructor = helloClass.getConstructor((Class[]) null); local 104 assertNotNull(constructor);
|
| /libcore/luni/src/test/java/libcore/java/lang/reflect/ |
| ClassLoaderReflectionTest.java | 21 import java.lang.reflect.Constructor; 112 Constructor<?> constructor = fClass.getDeclaredConstructors()[0]; local 113 Type[] parameters = constructor.getGenericParameterTypes();
|
| /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/ |
| bfdlink.h | 497 /* A function which is called when the name of a g++ constructor or 499 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a 503 bfd_boolean (*constructor) 504 (struct bfd_link_info *, bfd_boolean constructor, const char *name, 630 generate relocs for the constructor tables. The 501 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
|
| /hardware/ril/mock-ril/src/cpp/ |
| protobuf_v8.cpp | 127 Handle<Function> Constructor() const { 134 return Constructor()->NewInstance(1, &properties); 167 Handle<Function> constructor = Handle<Function>::Cast( local 169 constructor->SetHiddenValue(String::New("type"), self); 180 constructor->Set(String::New("parse"), bind->Call(ParseTemplate->GetFunction(), 1, &arg)); 181 constructor->Set(String::New("serialize"), bind->Call(SerializeTemplate->GetFunction(), 1, &arg)); 182 self->SetInternalField(2, constructor); 497 schema->GetType(descriptor)->Constructor() : 534 // constructor
|
| /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
| KeyFactoryTest.java | 9 import java.lang.reflect.Constructor; 498 Constructor<T> constructor = null; local 501 constructor = keySpec.getConstructor(TestPrivateKey.class); 509 constructor = keySpec.getConstructor(TestPublicKey.class); 517 if (constructor == null) { 522 return constructor.newInstance(key);
|
| /external/zlib/contrib/delphi/ |
| ZLib.pas | 55 constructor Create(Strm: TStream); 89 constructor Create(CompressionLevel: TCompressionLevel; Dest: TStream); 118 constructor Create(Source: TStream); 389 constructor TCustomZLibStream.Create(Strm: TStream); 406 constructor TCompressionStream.Create(CompressionLevel: TCompressionLevel; 483 constructor TDecompressionStream.Create(Source: TStream);
|
| /bionic/libc/arch-x86/bionic/ |
| crtbegin_static.S | 50 # - address of the constructor list
|
| /development/simulator/wrapsim/ |
| Init.c | 185 __attribute__((constructor))
|
| /external/apache-http/src/org/apache/commons/logging/impl/ |
| LogFactoryImpl.java | 20 import java.lang.reflect.Constructor; 88 * Public no-arguments constructor required by the lookup mechanism. 215 * The one-argument constructor of the 221 protected Constructor logConstructor = null; 225 * The signature of the Constructor to be used. 519 * <p>Return the <code>Constructor</code> that can be called to instantiate 524 * the same <code>Constructor</code> instance will ultimately be derived 527 * @exception LogConfigurationException if a suitable constructor 533 protected Constructor getLogConstructor() 536 // Return the previously identified Constructor (if any 969 Constructor constructor = null; local [all...] |
| /external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
| MobileApple80211.c | 148 __attribute__ ((constructor))
|
| /external/bluetooth/glib/tests/gobject/ |
| ifaceproperties.c | 160 /* The constructor is the one place where a GParamSpecOverride is visible 206 return base_parent_class->constructor (type, 291 object_class->constructor = base_object_constructor;
|