Searched defs:constructor (Results 1 - 25 of 126) sorted by relevance

123456

/external/compiler-rt/lib/lsan/tests/
H A Dlsan_testlib.cc22 __attribute__((constructor))
23 void constructor() { function
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-117794.js33 function constructor() {}; function
H A Dregress-2489.js37 g.constructor.apply(this, arguments);
40 g.constructor = function(a, b) {
/external/v8/test/mjsunit/regress/
H A Dregress-117794.js33 function constructor() {}; function
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DLexer.pm12 sub constructor : Test(1) { subroutine
H A DException.pm9 sub constructor : Test(1) { subroutine
H A DCommonToken.pm11 sub constructor : Test(1) { subroutine
H A DBitSet.pm9 sub constructor : Tests(3) { subroutine
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DConstructorInstantiator.java24 * Instantiates a class by grabbing the no args constructor and calling Constructor.newInstance().
32 protected Constructor constructor; field in class:ConstructorInstantiator
36 constructor = type.getDeclaredConstructor((Class[]) null);
45 return constructor.newInstance((Object[]) null);
/external/chromium_org/v8/test/mjsunit/
H A Darray-functions-prototype.js36 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();
H A Ddebug-evaluate-bool-constructor.js70 // Add set constructor field to a non-function value.
71 var a = {constructor:true};
/external/objenesis/main/src/org/objenesis/instantiator/sun/
H A DSunReflectionFactoryHelper.java34 public static Constructor newConstructorForSerialization(Class type, Constructor constructor) { argument
43 reflectionFactory, new Object[] {type, constructor});
/external/v8/test/mjsunit/
H A Darray-functions-prototype.js36 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();
H A Ddebug-evaluate-bool-constructor.js70 // Add set constructor field to a non-function value.
71 var a = {constructor:true};
/external/chromium_org/tools/perf/metrics/
H A Dmedia.js30 MediaMetricBase.prototype.constructor.call(this, element);
60 HTMLMediaMetric.prototype.constructor = HTMLMediaMetric;
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dapp_yaml_helper_test.py89 def constructor(branch, revision=None): function in function:AppYamlHelperTest.testInstanceMethods
94 constructor_for_test=constructor)
H A Dcron_servlet_test.py34 def constructor(branch=None, revision=None): function in function:_TestDelegate.CreateHostFileSystemCreator
39 constructor_for_test=constructor)
/external/chromium_org/chrome/common/extensions/permissions/
H A Dchrome_api_permissions.cc39 APIPermissionInfo::APIPermissionConstructor constructor; member in struct:extensions::PermissionRegistration
315 pr.constructor));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DScriptFunctionCall.cpp164 v8::Local<v8::Function> constructor = v8::Local<v8::Function>::Cast(value); local
169 v8::Local<v8::Object> result = V8ObjectConstructor::newInstance(constructor, m_arguments.size(), args.get());
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DListenerLeakTest.cpp59 int GetNumObjects(const char* constructor) argument
73 if (!strcmp(constructor, *nodeName)) {
74 const v8::HeapGraphNode* constructorProp = GetProperty(node, v8::HeapGraphEdge::kProperty, "constructor");
75 // Skip an Object instance named after the constructor.
78 if (!strcmp(constructor, *constructorName))
/external/chromium_org/v8/test/cctest/
H A Dtest-weaktypedarrays.cc264 static void TestTypedArrayFromScript(const char* constructor) { argument
284 constructor, constructor, constructor);
/external/junit/src/org/junit/experimental/theories/
H A DParameterSignature.java19 public static List<ParameterSignature> signatures(Constructor<?> constructor) { argument
20 return signatures(constructor.getParameterTypes(), constructor
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/
H A Dantlr.js258 * Testing typeof/instanceof/constructor of arrays across frame
359 * Utility to set up the prototype, constructor and superclass properties to
380 subc.prototype.constructor=subc;
382 if (superc.prototype.constructor == Object.prototype.constructor) {
383 superc.prototype.constructor=superc;
/external/chromium/chrome/browser/resources/net_internals/
H A Dutil.js6 * Inherit the prototype methods from one constructor into another.
13 childCtor.prototype.constructor = childCtor;
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestEventConstructor.cpp93 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& args) function in namespace:WebCore::TestEventConstructorV8Internal
132 throwTypeError("DOM object constructor cannot be called as a function.", args.GetIsolate());
141 TestEventConstructorV8Internal::constructor(args);

Completed in 887 milliseconds

123456