/external/v8/test/mjsunit/regress/ |
H A D | regress-117794.js | 33 function constructor() {}; function
|
H A D | regress-2489.js | 37 g.constructor.apply(this, arguments); 40 g.constructor = function(a, b) {
|
H A D | regress-2987.js | 34 function constructor() { class 40 var object = new constructor();
|
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/ |
H A D | Lexer.pm | 12 sub constructor : Test(1) { subroutine
|
H A D | Exception.pm | 9 sub constructor : Test(1) { subroutine
|
H A D | CommonToken.pm | 11 sub constructor : Test(1) { subroutine
|
H A D | BitSet.pm | 9 sub constructor : Tests(3) { subroutine
|
/external/deqp/framework/delibs/dethread/ |
H A D | deSingleton.c | 30 void deInitSingleton (volatile deSingletonState* singletonState, deSingletonConstructorFunc constructor, void* arg) argument 38 constructor(arg);
|
/external/v8/test/mjsunit/compiler/ |
H A D | escape-analysis-representation.js | 38 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 D | ConstructorInstantiator.java | 24 * 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 D | FastConstructor.java | 23 FastConstructor(FastClass fc, Constructor constructor) { argument 24 super(fc, constructor, fc.getIndex(constructor.getParameterTypes()));
|
H A D | FastClass.java | 31 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 D | SunReflectionFactoryHelper.java | 34 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 D | ReflectionConstructor.java | 51 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 D | 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();
|
H A D | debug-evaluate-bool-constructor.js | 70 // Add set constructor field to a non-function value. 71 var a = {constructor:true};
|
/external/v8/src/compiler/ |
H A D | simplified-operator-unittest.cc | 29 const Operator* (SimplifiedOperatorBuilder::*constructor)(); member in struct:v8::internal::compiler::__anon14826::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 D | machine-operator-unittest.cc | 172 const Operator* (MachineOperatorBuilder::*constructor)(); member in struct:v8::internal::compiler::__anon14823::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 D | ParameterSignature.java | 19 public static List<ParameterSignature> signatures(Constructor<?> constructor) { argument 20 return signatures(constructor.getParameterTypes(), constructor
|
/external/v8/test/cctest/ |
H A D | test-weaktypedarrays.cc | 268 static void TestTypedArrayFromScript(const char* constructor) { argument 289 constructor, constructor, constructor);
|
/external/v8/test/mjsunit/harmony/ |
H A D | super.js | 50 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 D | antlr.js | 258 * 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 D | bootstrap.js | 458 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 D | Invokable.java | 44 * 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 D | websock.js | 319 function constructor() { function 354 return constructor();
|