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

1 23 4 5 6 7 8 91011>>

  /external/iproute2/include/
iptables_common.h 37 #define _init __attribute__((constructor)) my_init
  /external/javassist/src/test/test/javassist/proxy/
ProxySerializationTest.java 7 import java.lang.reflect.Constructor;
33 Constructor constructor = proxyClass.getConstructor(new Class[] {String.class}); local
34 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name});
60 Constructor constructor = proxyClass.getConstructor(new Class[] {String.class}); local
61 TestClass proxy = (TestClass)constructor.newInstance(new Object[] {name});
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.1.js 24 ECMA Section: 15.4.4.1 Array.prototype.constructor
25 Description: The initial value of Array.prototype.constructor
26 is the built-in Array constructor.
34 var TITLE = "Array.prototype.constructor";
44 array[item++] = new TestCase( SECTION, "Array.prototype.constructor == Array", true, Array.prototype.constructor == Array);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4.1.js 24 ECMA Section: 15.6.4.1 Boolean.prototype.constructor
26 Description: The initial value of Boolean.prototype.constructor
27 is the built-in Boolean constructor.
36 var TITLE = "Boolean.prototype.constructor"
47 "( Boolean.prototype.constructor == Boolean )",
49 (Boolean.prototype.constructor == Boolean) );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.4.1.js 24 ECMA Section: 15.3.4.1 Function.prototype.constructor
26 Description: The initial value of Function.prototype.constructor
27 is the built-in Function constructor.
36 var TITLE = "Function.prototype.constructor";
47 array[item++] = new TestCase( SECTION, "Function.prototype.constructor", Function, Function.prototype.constructor );
15.3.1.1-1.js 24 ECMA Section: 15.3.1.1 The Function Constructor Called as a Function
31 1. Create and return a new Function object exactly if the function constructor had
41 var TITLE = "The Function Constructor Called as a Function";
67 array[item++] = new TestCase( SECTION, "myfunc.prototype.constructor", myfunc, myfunc.prototype.constructor );
75 array[item++] = new TestCase( SECTION, "MyObject.prototype.constructor", MyObject, MyObject.prototype.constructor );
15.3.2.1-1.js 24 ECMA Section: 15.3.2.1 The Function Constructor
42 var TITLE = "The Function Constructor";
68 array[item++] = new TestCase( SECTION, "myfunc.prototype.constructor", myfunc, myfunc.prototype.constructor );
78 array[item++] = new TestCase( SECTION, "MyObject.prototype.constructor", MyObject, MyObject.prototype.constructor );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.4-1.js 47 array[item++] = new TestCase(SECTION, "Number.prototype.constructor == Number", true, Number.prototype.constructor == Number );
15.7.4.1.js 24 ECMA Section: 15.7.4.1.1 Number.prototype.constructor
26 Number.prototype.constructor is the built-in Number constructor.
35 var TITLE = "Number.prototype.constructor";
47 "Number.prototype.constructor",
49 Number.prototype.constructor );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ObjectObjects/
15.2.4.1.js 24 ECMA Section: 15.2.4 Object.prototype.constructor
26 Description: The initial value of the Object.prototype.constructor
27 is the built-in Object constructor.
36 var TITLE = "Object.prototype.constructor";
46 array[item++] = new TestCase( SECTION, "Object.prototype.constructor",
48 Object.prototype.constructor
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.1.js 24 ECMA Section: 15.5.4.1 String.prototype.constructor
34 var TITLE = "String.prototype.constructor";
46 array[item++] = new TestCase( SECTION, "String.prototype.constructor == String", true, String.prototype.constructor == String );
47 array[item++] = new TestCase( SECTION, "var STRING = new String.prototype.constructor('hi'); STRING.getClass = Object.prototype.toString; STRING.getClass()",
49 eval("var STRING = new String.prototype.constructor('hi'); STRING.getClass = Object.prototype.toString; STRING.getClass()") );
  /hardware/ti/omap4xxx/
tm.c 15 static void ctor(void) __attribute__((constructor));
  /libcore/luni/src/main/java/javax/security/cert/
X509Certificate.java 22 import java.lang.reflect.Constructor;
48 private static Constructor constructor; field in class:X509Certificate
53 constructor = cl.getConstructor(new Class[] {InputStream.class});
79 if (constructor != null) {
82 constructor.newInstance(new Object[] {inStream});
  /system/extras/tests/bionic/libc/common/
test_executable_destructor.c 35 /* A very simple program used to test constructor and destructor functions
44 static void __attribute__((constructor))
63 /* First, check that the constructor was properly called ! */
65 fprintf(stderr, "Constructor function not called!!\n");
  /external/chromium/chrome/browser/resources/net_internals/
detailsview.js 10 * @constructor
59 * @constructor
98 * @constructor
115 * @constructor
  /external/jsilver/src/org/clearsilver/
FactoryLoader.java 19 import java.lang.reflect.Constructor;
109 Constructor<ClearsilverFactory> constructor = clazz.getConstructor(); local
110 return constructor.newInstance();
  /external/webkit/LayoutTests/fast/js/resources/
js-constructors-use-correct-global.js 1 description("Test to ensure that js constructors create objects with the correct constructor");
  /external/webkit/Source/JavaScriptCore/qt/benchmarks/qscriptengine/
tst_qscriptengine.cpp 30 void constructor();
56 void tst_QScriptEngine::constructor() function in class:tst_QScriptEngine
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-002.js 33 function InstanceOf( object, constructor ) {
35 if ( object == constructor.prototype ) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
properties-001.js 41 AddTestCase( re + ".contructor == RegExp.prototype.constructor",
43 re.constructor == RegExp.prototype.constructor );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/String/
split-003.js 66 "( " + string + " ).split(" + str_sep +").constructor == Array",
68 string.split(separator).constructor == Array );
95 " ).constructor == Array",
97 string.split(separator, limit).constructor == Array );
  /external/webkit/Source/WebKit/android/jni/
GeolocationPermissionsBridge.cpp 47 jmethodID constructor = env->GetMethodID(setClass, "<init>", "()V"); local
49 jobject set = env->NewObject(setClass, constructor);
  /external/webkit/Source/WebKit/chromium/src/
BoundObject.cpp 72 v8::Local<v8::Function> constructor = m_hostTemplate->GetFunction(); local
73 v8::Local<v8::Object> boundObject = WebCore::SafeAllocation::newInstance(constructor);
  /libcore/luni/src/main/native/
java_io_ObjectStreamClass.cpp 40 static jobject ObjectStreamClass_getConstructorSignature(JNIEnv* env, jclass, jobject constructor) {
41 return getSignature(env, JniConstants::constructorClass, constructor);
60 NATIVE_METHOD(ObjectStreamClass, getConstructorSignature, "(Ljava/lang/reflect/Constructor;)Ljava/lang/String;"),
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.h 102 static NativeExecutable* create(JSGlobalData& globalData, MacroAssemblerCodePtr callThunk, NativeFunction function, MacroAssemblerCodePtr constructThunk, NativeFunction constructor)
105 return new (&globalData) NativeExecutable(globalData, JITCode(), function, JITCode(), constructor);
106 return new (&globalData) NativeExecutable(globalData, JITCode::HostFunction(callThunk), function, JITCode::HostFunction(constructThunk), constructor);
109 static NativeExecutable* create(JSGlobalData& globalData, NativeFunction function, NativeFunction constructor)
111 return new (&globalData) NativeExecutable(globalData, function, constructor);
123 NativeExecutable(JSGlobalData& globalData, JITCode callThunk, NativeFunction function, JITCode constructThunk, NativeFunction constructor)
126 , m_constructor(constructor)
134 NativeExecutable(JSGlobalData& globalData, NativeFunction function, NativeFunction constructor)
137 , m_constructor(constructor)

Completed in 1865 milliseconds

1 23 4 5 6 7 8 91011>>