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

1 23 4 5 6 7 8 91011

  /external/webkit/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 );
15.3.1.1-2.js 24 ECMA Section: 15.3.1.1 The Function Constructor Called as a Function
32 1. Create and return a new Function object exactly if the function constructor
42 var TITLE = "The Function Constructor Called as a Function";
69 array[item++] = new TestCase( SECTION, "myfunc1.prototype.constructor", myfunc1, myfunc1.prototype.constructor );
83 array[item++] = new TestCase( SECTION, "myfunc2.prototype.constructor", myfunc2, myfunc2.prototype.constructor );
97 array[item++] = new TestCase( SECTION, "myfunc3.prototype.constructor", myfunc3, myfunc3.prototype.constructor );
15.3.2.1-2.js 24 ECMA Section: 15.3.2.1 The Function Constructor
35 var TITLE = "The Function Constructor";
62 array[item++] = new TestCase( SECTION, "myfunc1.prototype.constructor", myfunc1, myfunc1.prototype.constructor );
76 array[item++] = new TestCase( SECTION, "myfunc2.prototype.constructor", myfunc2, myfunc2.prototype.constructor );
90 array[item++] = new TestCase( SECTION, "myfunc3.prototype.constructor", myfunc3, myfunc3.prototype.constructor );
  /external/webkit/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/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/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()") );
  /libcore/luni/src/main/java/javax/security/cert/
X509Certificate.java 22 import java.lang.reflect.Constructor;
49 private static Constructor constructor; field in class:X509Certificate
61 constructor =
89 if (constructor != null) {
92 constructor.newInstance(new Object[] {inStream});
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Expressions/
instanceof-002.js 33 function InstanceOf( object, constructor ) {
35 if ( object == constructor.prototype ) {
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/RegExp/
properties-001.js 41 AddTestCase( re + ".contructor == RegExp.prototype.constructor",
43 re.constructor == RegExp.prototype.constructor );
  /external/webkit/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/WebCore/bindings/js/
JSOptionConstructor.cpp 45 static JSObject* constructHTMLOptionElement(ExecState* exec, JSObject* constructor, const ArgList& args)
47 JSOptionConstructor* jsConstructor = static_cast<JSOptionConstructor*>(constructor);
50 return throwError(exec, ReferenceError, "Option constructor associated document is unavailable");
JSWebSocketConstructor.cpp 57 static JSObject* constructWebSocket(ExecState* exec, JSObject* constructor, const ArgList& args)
59 JSWebSocketConstructor* jsConstructor = static_cast<JSWebSocketConstructor*>(constructor);
62 return throwError(exec, ReferenceError, "WebSocket constructor associated document is unavailable");
  /external/webkit/WebKit/android/jni/
GeolocationPermissionsBridge.cpp 47 jmethodID constructor = env->GetMethodID(setClass, "<init>", "()V"); local
49 jobject set = env->NewObject(setClass, constructor);
  /external/webkit/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);
  /external/webkit/WebCore/platform/graphics/
MediaPlayer.cpp 131 MediaPlayerFactory(CreateMediaEnginePlayer constructor, MediaEngineSupportedTypes getSupportedTypes, MediaEngineSupportsType supportsTypeAndCodecs)
132 : constructor(constructor)
138 CreateMediaEnginePlayer constructor; member in struct:WebCore::MediaPlayerFactory
161 static void addMediaEngine(CreateMediaEnginePlayer constructor, MediaEngineSupportedTypes getSupportedTypes, MediaEngineSupportsType supportsType)
163 ASSERT(constructor);
166 installedMediaEngines().append(new MediaPlayerFactory(constructor, getSupportedTypes, supportsType));
216 m_private.set(engines[0]->constructor(this));
253 m_private.set(engine->constructor(this));
  /dalvik/dx/src/junit/framework/
TestSuite.java 6 import java.lang.reflect.Constructor;
19 * TestSuite constructor.
23 * This constructor creates a suite with all the methods
59 addTest(warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()"));
120 Constructor constructor; local
122 constructor= getTestConstructor(theClass);
124 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
128 if (constructor.getParameterTypes().length == 0) {
129 test= constructor.newInstance(new Object[0])
    [all...]
  /external/junit/src/junit/framework/
TestSuite.java 5 import java.lang.reflect.Constructor;
23 * TestSuite constructor.
27 * This constructor creates a suite with all the methods
45 Constructor constructor; local
47 constructor= getTestConstructor(theClass);
49 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
53 if (constructor.getParameterTypes().length == 0) {
54 test= constructor.newInstance(new Object[0]);
58 test= constructor.newInstance(new Object[]{name})
    [all...]
  /external/v8/src/
heap-profiler.h 62 explicit JSObjectsCluster(String* constructor)
63 : constructor_(constructor), instance_(NULL) {}
66 JSObjectsCluster(String* constructor, Object* instance)
67 : constructor_(constructor), instance_(instance) {}
88 String* constructor() const { return constructor_; } function in class:v8::internal::BASE_EMBEDDED
127 // "constructor profile" of JS objects allocated on heap.
  /libcore/junit/src/main/java/junit/framework/
TestSuite.java 8 import java.lang.reflect.Constructor;
21 * TestSuite constructor.
25 * This constructor creates a suite with all the methods
61 addTest(warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()"));
122 Constructor constructor; local
124 constructor= getTestConstructor(theClass);
126 return warning("Class "+theClass.getName()+" has no public constructor TestCase(String name) or TestCase()");
130 if (constructor.getParameterTypes().length == 0) {
131 test= constructor.newInstance(new Object[0])
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cxxabi.h 69 size_t __padding_size, __cxa_cdtor_type constructor,
74 size_t __padding_size, __cxa_cdtor_type constructor,
80 size_t __padding_size, __cxa_cdtor_type constructor,
87 size_t __element_size, __cxa_cdtor_type constructor,
93 __cxa_cdtor_return_type (*constructor) (void*, void*),
516 // class is not constructable with a normal constructor. It is
  /external/v8/test/mjsunit/
array-functions-prototype.js 36 function constructor() {}; class
37 constructor.prototype = proto;
59 var nonArray = new constructor();
90 var nonArray = new constructor();
121 var nonArray = new constructor();
151 var nonArray = new constructor();
mjsunit.js 79 if (a.constructor === RegExp || b.constructor === RegExp) {
80 return (a.constructor === b.constructor) && (a.toString === b.toString);
85 if (a.constructor === Array) {
86 if (b.constructor !== Array)

Completed in 1438 milliseconds

1 23 4 5 6 7 8 91011