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

123456

/external/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/deqp/framework/delibs/dethread/
H A DdeSingleton.c30 void deInitSingleton (volatile deSingletonState* singletonState, deSingletonConstructorFunc constructor, void* arg) argument
38 constructor(arg);
/external/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/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/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()));
H A DFastClass.java31 throw new Error("Using the FastClass empty constructor--please report to the cglib-devel mailing list");
103 public FastConstructor getConstructor(Constructor constructor) { argument
104 return new FastConstructor(this, constructor);
159 * Return the index of the matching constructor. The index may be used
163 * @return the constructor index, or <code>-1</code> if none is found.
178 * Create a new instance using the specified constructor index and arguments.
180 * @param index the constructor index
181 * @param args the arguments passed to the constructor
182 * @throws java.lang.reflect.InvocationTargetException if the constructor throws an exception
/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/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/v8/src/compiler/
H A Dsimplified-operator-unittest.cc29 const Operator* (SimplifiedOperatorBuilder::*constructor)(); member in struct:v8::internal::compiler::__anon14821::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::__anon14818::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/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/v8/test/cctest/
H A Dtest-weaktypedarrays.cc268 static void TestTypedArrayFromScript(const char* constructor) { argument
289 constructor, constructor, constructor);
/external/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,
/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-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Dbootstrap.js458 constructor: Collapse
611 constructor: Dropdown
708 constructor: Modal
924 constructor: Tooltip
1202 constructor: Popover
1305 constructor: ScrollSpy
1445 constructor: Tab
1588 constructor: Typeahead
/external/guava/guava/src/com/google/common/reflect/
H A DInvokable.java44 * TypeToken#constructor} will resolve the type parameters of the method or constructor in the
53 * @param <T> the type that owns this method or constructor.
55 * constructor.
71 /** Returns {@link Invokable} of {@code constructor}. */
72 public static <T> Invokable<T, T> from(Constructor<T> constructor) { argument
73 return new ConstructorInvokable<T>(constructor);
87 * and returns the return value; or calls the underlying constructor with {@code args} and returns
91 * access control and the underlying method or constructor is inaccessible.
96 * @throws InvocationTargetException if the underlying method or constructor throw
232 final Constructor<?> constructor; field in class:Invokable.ConstructorInvokable
234 ConstructorInvokable(Constructor<?> constructor) argument
[all...]
/external/libvncserver/webclients/novnc/include/
H A Dwebsock.js319 function constructor() { function
354 return constructor();

Completed in 780 milliseconds

123456