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

1234567

/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) {
H A Dregress-2987.js34 function constructor() { class
40 var object = new constructor();
/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/chromium_org/chrome/browser/resources/cryptotoken/
H A Dinherits.js14 /** @constructor */
19 childCtor.prototype.constructor = childCtor;
/external/chromium_org/ui/ozone/
H A Dplatform_object_internal.h22 // Look up the constructor in the constructor list.
23 Constructor constructor = PlatformConstructorList<T>::kConstructors[platform]; local
25 // Call the constructor.
26 return make_scoped_ptr(constructor());
/external/chromium_org/v8/test/mjsunit/compiler/
H A Descape-analysis-representation.js38 function constructor(value_track) { class
43 var o = new constructor(value_track);
65 // Also make sure the initial map of the constructor is reset.
66 constructor.prototype = {};
/external/deqp/framework/delibs/dethread/
H A DdeSingleton.c30 void deInitSingleton (volatile deSingletonState* singletonState, deSingletonConstructorFunc constructor, void* arg) argument
38 constructor(arg);
/external/chromium_org/extensions/renderer/
H A Ddocument_custom_bindings.cc37 v8::Handle<v8::Value> constructor = document.registerEmbedderCustomElement( local
39 args.GetReturnValue().Set(constructor);
/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/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastConstructor.java23 FastConstructor(FastClass fc, Constructor constructor) { argument
24 super(fc, constructor, fc.getIndex(constructor.getParameterTypes()));
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
H A DReflectionConstructor.java51 private final Constructor constructor; field in class:ReflectionConstructor
53 public ReflectionConstructor(Constructor constructor) { argument
54 this.constructor = constructor;
58 final Constructor method = this.constructor;
85 return constructor.getModifiers();
97 return ReflectionUtils.javaToDexName(constructor.getDeclaringClass().getName());
101 return constructor.getName();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptFunctionCall.cpp188 v8::Local<v8::Function> constructor = v8::Local<v8::Function>::Cast(value); local
193 v8::Local<v8::Object> result = V8ObjectConstructor::newInstance(m_scriptState->isolate(), constructor, m_arguments.size(), info.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/src/compiler/
H A Dsimplified-operator-unittest.cc29 const Operator* (SimplifiedOperatorBuilder::*constructor)(); member in struct:v8::internal::compiler::__anon17279::PureOperator
85 EXPECT_EQ((simplified1.*pop.constructor)(), (simplified2.*pop.constructor)());
92 const Operator* op = (simplified.*pop.constructor)();
108 const Operator* op = (simplified.*pop.constructor)();
116 const Operator* op = (simplified.*pop.constructor)();
H A Dmachine-operator-unittest.cc172 const Operator* (MachineOperatorBuilder::*constructor)(); member in struct:v8::internal::compiler::__anon17276::PureOperator
231 EXPECT_EQ((machine1.*pop.constructor)(), (machine2.*pop.constructor)());
238 const Operator* op = (machine.*pop.constructor)();
255 const Operator* op = (machine.*pop.constructor)();
263 const Operator* op = (machine.*pop.constructor)();
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterfaceConstructor3.cpp35 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info) function in namespace:blink::TestInterfaceConstructor3V8Internal
66 TestInterfaceConstructor3V8Internal::constructor(info);
/external/chromium_org/v8/test/cctest/
H A Dtest-weaktypedarrays.cc268 static void TestTypedArrayFromScript(const char* constructor) { argument
289 constructor, constructor, constructor);
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dsuper.js50 constructor: Base,
62 constructor: Derived,
77 constructor: Base,
91 constructor: Derived,
107 constructor: Base,
118 constructor: Derived,

Completed in 668 milliseconds

1234567