HomeSort by relevance Sort by last modified time
    Searched refs:constructor (Results 201 - 225 of 524) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/wilhelm/src/objects/
CEngine.c 32 __attribute__((constructor)) static void onDlOpen(void)
  /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);
  /external/v8/src/
messages.js 30 // If this object gets passed to an error constructor the error will
94 var constructor = obj.constructor;
95 if (typeof constructor == "function") {
96 var constructorName = constructor.name;
106 function MakeGenericError(constructor, type, args) {
110 var e = new constructor(kAddMessageAccessorsMarker);
118 * Set up the Script function and constructor.
121 %SetProperty(Script.prototype, 'constructor', Script,
163 "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
375 Handle<JSFunction> constructor = isolate->script_function(); local
377 Handle<JSValue>::cast(isolate->factory()->NewJSObject(constructor));
610 JSFunction::cast(arguments_boilerplate->map()->constructor()),
665 ((current->map()->constructor() != *arguments_function) &&
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Token.js 2 // constructor is defined in CommonToken. All methods and vars of Token are
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
RewriteRuleSubtreeStream.js 3 sup.constructor.apply(this, arguments);
  /external/chromium/chrome/browser/resources/net_internals/
socketsview.js 12 * @constructor
topmidbottomview.js 26 * @constructor
  /external/v8/test/mjsunit/compiler/
alloc-object-huge.js 33 // Test huge constructor when being inlined into hydrogen.
44 // Test huge constructor with specialized constructor stub.
49 // The huge constructor, nothing interesting beyond this point.
  /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');
stack-traces.js 136 // Test that the error constructor is not shown in the trace
149 // Test that the explicit constructor call is shown in the trace
172 n.__defineGetter__('constructor', function () { CONS_FAIL; });
202 // Tests that a native constructor function is included in the
this-property-assignment.js 29 // constructor that only has simple this property assignments.
  /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/API/
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/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/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);
  /frameworks/base/test-runner/src/android/test/
AndroidTestRunner.java 32 import java.lang.reflect.Constructor;
96 Constructor c = testClass.getConstructor();
102 Constructor c = testClass.getConstructor(String.class);
111 Constructor constructor, Object... args) {
113 TestCase testCase = (TestCase) constructor.newInstance(args);
121 runFailed("Illegal argument passed to constructor. Class: " + testClass.getName());
123 runFailed("Constructor thew an exception. Class: " + testClass.getName());
  /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();
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/include/
bfdlink.h 525 /* A function which is called when the name of a g++ constructor or
527 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
531 bfd_boolean (*constructor)
532 (struct bfd_link_info *, bfd_boolean constructor, const char *name,
671 generate relocs for the constructor tables. The
529 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/include/
bfdlink.h 555 /* A function which is called when the name of a g++ constructor or
557 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
561 bfd_boolean (*constructor)
562 (struct bfd_link_info *, bfd_boolean constructor, const char *name,
704 generate relocs for the constructor tables. The
559 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/include/
bfdlink.h 525 /* A function which is called when the name of a g++ constructor or
527 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
531 bfd_boolean (*constructor)
532 (struct bfd_link_info *, bfd_boolean constructor, const char *name,
671 generate relocs for the constructor tables. The
529 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/include/
bfdlink.h 555 /* A function which is called when the name of a g++ constructor or
557 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
561 bfd_boolean (*constructor)
562 (struct bfd_link_info *, bfd_boolean constructor, const char *name,
704 generate relocs for the constructor tables. The
559 bfd_boolean (*constructor) member in struct:bfd_link_callbacks
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/include/
bfdlink.h 525 /* A function which is called when the name of a g++ constructor or
527 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
531 bfd_boolean (*constructor)
532 (struct bfd_link_info *, bfd_boolean constructor, const char *name,
671 generate relocs for the constructor tables. The
529 bfd_boolean (*constructor) member in struct:bfd_link_callbacks

Completed in 2073 milliseconds

1 2 3 4 5 6 7 891011>>