/development/samples/BrowserPlugin/jni/background/ |
BackgroundPlugin.cpp | 107 jmethodID constructor = env->GetMethodID(backgroundClass, "<init>", "(Landroid/content/Context;)V"); local 108 jobject backgroundSurface = env->NewObject(backgroundClass, constructor, m_context); 485 jmethodID constructor = env->GetMethodID(backgroundClass, "<init>", "()V"); local 487 jobject backgroundObject = env->NewObject(backgroundClass, constructor);
|
/external/v8/test/mjsunit/ |
debug-evaluate-bool-constructor.js | 70 // Add set constructor field to a non-function value. 71 var a = {constructor:true};
|
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');
|
this-property-assignment.js | 29 // constructor that only has simple this property assignments.
|
/external/v8/tools/ |
consarray.js | 37 * @constructor 87 * @constructor
|
/external/webkit/Source/JavaScriptCore/API/ |
JSValueRef.h | 157 @abstract Tests whether a JavaScript value is an object constructed by a given constructor, as compared by the JS instanceof operator. 160 @param constructor The constructor to test against. 162 @result true if value is an object constructed by constructor, as compared by the JS instanceof operator, otherwise false. 164 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...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
JSGlobalObject.cpp | 237 m_objectPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, objectConstructor, DontEnum); 238 m_functionPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, functionConstructor, DontEnum); 239 m_arrayPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, arrayConstructor, DontEnum); 240 m_booleanPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, booleanConstructor, DontEnum); 241 m_stringPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, stringConstructor, DontEnum); 242 m_numberPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, numberConstructor, DontEnum); 243 m_datePrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, dateConstructor, DontEnum); 244 m_regExpPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, m_regExpConstructor.get(), DontEnum); 245 errorPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, m_errorConstructor.get(), DontEnum);
|
/system/media/wilhelm/src/objects/ |
CEngine.c | 32 __attribute__((constructor)) static void onDlOpen(void)
|
/external/v8/src/ |
messages.js | 44 // If this object gets passed to an error constructor the error will 104 var constructor = obj.constructor; 105 if (!constructor) return ToStringCheckErrorObject(obj); 106 var constructorName = constructor.name; 117 function MakeGenericError(constructor, type, args) { 121 var e = new constructor(kAddMessageAccessorsMarker); 129 * Setup the Script function and constructor. 132 %SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM); 171 not_constructor: ["%0", " is not a constructor"], [all...] |
handles.cc | 148 Handle<JSFunction> constructor, 151 constructor->GetIsolate(), 152 constructor->GetHeap()->ReinitializeJSGlobalProxy(*constructor, *global), 183 // If no properties are added in the constructor, they are more likely 567 Handle<JSFunction> constructor = isolate->script_function(); local 569 Handle<JSValue>::cast(isolate->factory()->NewJSObject(constructor)); 785 JSFunction::cast(arguments_boilerplate->map()->constructor()), 830 ((current->map()->constructor() != *arguments_function) && [all...] |
/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/chromium/chrome/browser/resources/net_internals/ |
socketsview.js | 12 * @constructor
|
topmidbottomview.js | 26 * @constructor
|
/external/v8/test/mjsunit/regress/ |
regress-502.js | 30 // Test that we do not generate an inlined version of the constructor
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/ |
split-002.js | 159 if ( separator.constructor == RegExp ) // 6 221 if (R.constructor == RegExp) { // 1
|
/external/webkit/Source/JavaScriptCore/yarr/ |
YarrPattern.cpp | [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
ScriptFunctionCall.cpp | 161 v8::Local<v8::Function> constructor(v8::Function::Cast(*value)); 166 v8::Local<v8::Object> result = SafeAllocation::newInstance(constructor, m_arguments.size(), args.get());
|
/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 | 19 import java.lang.reflect.Constructor; 108 Constructor<?> constructor = fClass.getDeclaredConstructors()[0]; local 109 Type[] parameters = constructor.getGenericParameterTypes();
|
/prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/include/ |
bfdlink.h | 523 /* A function which is called when the name of a g++ constructor or 525 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a 529 bfd_boolean (*constructor) 530 (struct bfd_link_info *, bfd_boolean constructor, const char *name, 669 generate relocs for the constructor tables. The 527 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
|
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/include/ |
bfdlink.h | 523 /* A function which is called when the name of a g++ constructor or 525 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a 529 bfd_boolean (*constructor) 530 (struct bfd_link_info *, bfd_boolean constructor, const char *name, 669 generate relocs for the constructor tables. The 527 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
|
/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
|
/system/media/mca/filterfw/jni/ |
jni_util.h | 53 // Copy constructor. 164 // a default constructor for this to succeed. 167 jmethodID constructor = env->GetMethodID( local 171 jobject result = env->NewObject(cls, constructor, JNI_NULL);
|