HomeSort by relevance Sort by last modified time
    Searched defs:constructors (Results 1 - 25 of 189) sorted by null

1 2 3 4 5 6 7 8

  /external/v8/test/mjsunit/es6/
typed-array-iterator.js 6 var constructors = [Uint8Array, Int8Array, variable
38 constructors.forEach(TestTypedArrayValues);
  /external/v8/test/mjsunit/regress/
regress-447756.js 21 var constructors = variable
26 for (var i = 0; i < constructors.length; i++) {
27 TestConstructor(constructors[i]);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
BaseWorld.java 37 private final ObjectMap<String, Constructor<T>> constructors = new ObjectMap<String, Constructor<T>>(); field in class:BaseWorld
42 constructors.put(name, constructor);
47 return constructors.get(name);
55 final T entity = constructors.get(type).construct(x, y, z);
61 final T entity = constructors.get(type).construct(transform);
89 for (Constructor<T> constructor : constructors.values())
91 constructors.clear();
  /external/compiler-rt/test/BlocksRuntime/
copyconstructor.C 13 int constructors = 0; variable
36 ++constructors;
44 _version = ++constructors;
75 if (constructors == 0) {
76 printf("No copy constructors!!!\n");
79 if (constructors != destructors) {
80 printf("%d constructors but only %d destructors\n", constructors, destructors);
reference.C 17 int constructors = 0; variable
41 ++constructors;
49 _version = ++constructors;
  /external/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp 70 void constructors() { function
microsoft-abi-structors.cpp 42 // Tests that we can define constructors outside the class (PR12784).
219 namespace constructors { namespace
231 // CHECK: define x86_thiscallcc %"struct.constructors::B"* @"\01??0B@constructors@@QAE@XZ"(%"struct.constructors::B"* returned %this)
232 // CHECK: call x86_thiscallcc %"struct.constructors::A"* @"\01??0A@constructors@@QAE@XZ"(%"struct.constructors::A"* %{{.*}})
241 // CHECK: define x86_thiscallcc %"struct.constructors::C"* @"\01??0C@constructors@@QAE@XZ"(%"struct.constructors::C"* returned %this, i32 %is_most_derived
    [all...]
  /external/javassist/sample/evolve/
VersionManager.java 68 Constructor[] constructors = clazz.getConstructors(); local
69 int n = constructors.length;
72 return constructors[i].newInstance(args);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TextReport.java 57 List<ApiConstructor> constructors = local
59 Collections.sort(constructors);
60 for (ApiConstructor constructor : constructors) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintCustomContent.java 492 String[] constructors = getResources().getStringArray(R.array.motogp_constructors); local
501 item.constructor = constructors[i];
  /external/javassist/src/main/javassist/
SerialVersionUID.java 134 // constructors.
135 CtConstructor[] constructors = clazz.getDeclaredConstructors(); local
136 Arrays.sort(constructors, new Comparator() {
145 for (int i = 0; i < constructors.length; i++) {
146 CtConstructor constructor = constructors[i];
  /external/junit/src/org/junit/runners/model/
TestClass.java 126 Constructor<?>[] constructors= fClass.getConstructors(); local
127 Assert.assertEquals(1, constructors.length);
128 return constructors[0];
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/reflect/
ClassReflection.java 76 /** Returns an array of {@link Constructor} containing the public constructors of the class represented by the supplied Class. */
78 java.lang.reflect.Constructor[] constructors = c.getConstructors(); local
79 Constructor[] result = new Constructor[constructors.length];
80 for (int i = 0, j = constructors.length; i < j; i++) {
81 result[i] = new Constructor(constructors[i]);
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldInitializer.java 202 * Constructor instantiating strategy for parameterized constructors.
265 final List<Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors()); local
266 Collections.sort(constructors, byParameterNumber);
268 Constructor<?> constructor = constructors.get(0);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 79 Constructor[] constructors = testCaseClass.getConstructors(); local
81 if (constructors.length == 0) {
84 for (Constructor constructor : constructors) {
TestGrouping.java 228 Constructor<? extends TestCase>[] constructors local
230 for (Constructor<? extends TestCase> constructor : constructors) {
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 40 const ConstructorMap &constructors() const { return Constructors; } function in class:clang::ast_matchers::dynamic::__anon6311::RegistryMaps
44 ConstructorMap Constructors;
49 assert(Constructors.find(MatcherName) == Constructors.end());
50 Constructors[MatcherName] = Callback;
383 llvm::DeleteContainerSeconds(Constructors);
393 RegistryData->constructors().find(MatcherName);
394 return it == RegistryData->constructors().end()
454 for (const auto &M : RegistryData->constructors()) {
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
InjectBindingRegistry.java 51 * Maintains the collection of provision bindings from {@link Inject} constructors and members
210 List<ExecutableElement> constructors = local
212 ImmutableSet<ExecutableElement> injectConstructors = FluentIterable.from(constructors)
227 throw new IllegalStateException("Found multiple @Inject constructors: "
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider.java 156 * This class implements the old @AssistedInject implementation that manually matches constructors
254 List<AssistedConstructor<?>> constructors = Lists.newArrayList(); local
260 constructors.add(assistedConstructor);
264 if (constructors.isEmpty()) {
270 if (constructors.size() != factoryMethods.length) {
272 + "constructors, factory %s has %s creation methods", implementationType,
273 constructors.size(), factoryType, factoryMethods.length);
278 for (AssistedConstructor<?> c : constructors) {
300 + "@Assisted parameters %s in that order. @AssistInject constructors are %s",
  /external/javassist/src/main/javassist/tools/reflect/
ClassMetaobject.java 51 private Constructor[] constructors; field in class:ClassMetaobject
81 constructors = javaClass.getConstructors();
93 constructors = javaClass.getConstructors();
134 int n = constructors.length;
137 return constructors[i].newInstance(args);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/reflect/
ClassReflection.java 79 /** Returns an array of {@link Constructor} containing the public constructors of the class represented by the supplied Class. */
81 com.badlogic.gwtref.client.Constructor[] constructors = ReflectionCache.getType(c).getConstructors(); local
82 Constructor[] result = new Constructor[constructors.length];
83 for (int i = 0, j = constructors.length; i < j; i++) {
84 result[i] = new Constructor(constructors[i]);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/client/
Type.java 26 /** Describes a type (equivalent to {@link Class}), providing methods to retrieve fields, constructors, methods and super
54 Constructor[] constructors = EMPTY_CONSTRUCTORS; field in class:Type
191 return constructors;
199 for (Constructor c : constructors) {
287 + Arrays.toString(methods) + ",\n constructors=" + Arrays.toString(constructors) + ",\n annotations="
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
FastClassEmitter.java 71 List constructors = new ArrayList(Arrays.asList(type.getDeclaredConstructors())); local
72 CollectionUtils.filter(constructors, vp);
83 List info = CollectionUtils.transform(constructors, MethodInfoTransformer.getInstance());
100 invokeSwitchHelper(e, constructors, 1, base);
  /external/testng/src/main/java/org/testng/internal/
ClassHelper.java 432 Constructor<?>[] constructors = declaringClass.getDeclaredConstructors(); local
434 for (Constructor<?> result : constructors) {
  /external/doclava/src/com/google/doclava/
PackageInfo.java 403 * constructors and methods.
406 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods) {
440 constructors, methods, annotationElements, local
496 // generate a "delta" class with only added methods and constructors, but no fields etc

Completed in 1097 milliseconds

1 2 3 4 5 6 7 8