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

1 2 3 4 5 6 7 8 91011

  /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/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/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp 70 void constructors() { function
  /external/javassist/sample/evolve/
VersionManager.java 68 Constructor[] constructors = clazz.getConstructors(); local
69 int n = constructors.length;
72 return constructors[i].newInstance(args);
  /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]);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_hashlib.py 62 for algorithm, constructors in self.constructors_to_test.items():
63 constructors.add(getattr(hashlib, algorithm))
68 constructors.add(_test_algorithm_via_hashlib_new)
76 for algorithm, constructors in self.constructors_to_test.items():
79 constructors.add(constructor)
100 constructors = self.constructors_to_test.itervalues()
101 for cons in itertools.chain.from_iterable(constructors):
158 constructors = self.constructors_to_test[name]
160 self.assertGreaterEqual(len(constructors), 2)
161 for hash_object_constructor in constructors
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_hashlib.py 62 for algorithm, constructors in self.constructors_to_test.items():
63 constructors.add(getattr(hashlib, algorithm))
68 constructors.add(_test_algorithm_via_hashlib_new)
76 for algorithm, constructors in self.constructors_to_test.items():
79 constructors.add(constructor)
100 constructors = self.constructors_to_test.itervalues()
101 for cons in itertools.chain.from_iterable(constructors):
158 constructors = self.constructors_to_test[name]
160 self.assertGreaterEqual(len(constructors), 2)
161 for hash_object_constructor in constructors
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_hashlib.py 62 for algorithm, constructors in self.constructors_to_test.items():
63 constructors.add(getattr(hashlib, algorithm))
68 constructors.add(_test_algorithm_via_hashlib_new)
76 for algorithm, constructors in self.constructors_to_test.items():
79 constructors.add(constructor)
100 constructors = self.constructors_to_test.itervalues()
101 for cons in itertools.chain.from_iterable(constructors):
158 constructors = self.constructors_to_test[name]
160 self.assertGreaterEqual(len(constructors), 2)
161 for hash_object_constructor in constructors
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_hashlib.py 62 for algorithm, constructors in self.constructors_to_test.items():
63 constructors.add(getattr(hashlib, algorithm))
68 constructors.add(_test_algorithm_via_hashlib_new)
76 for algorithm, constructors in self.constructors_to_test.items():
79 constructors.add(constructor)
100 constructors = self.constructors_to_test.itervalues()
101 for cons in itertools.chain.from_iterable(constructors):
158 constructors = self.constructors_to_test[name]
160 self.assertGreaterEqual(len(constructors), 2)
161 for hash_object_constructor in constructors
    [all...]
  /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) {
  /external/v8/test/mjsunit/es6/
typed-array-iterator.js 6 var constructors = [Uint8Array, Int8Array, variable
38 constructors.forEach(TestTypedArrayValues);
  /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);
  /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) {
  /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/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/
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/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/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]);
  /frameworks/native/libs/ui/
Android.mk 22 # The static constructors and destructors in this library have not been noted to
25 LOCAL_CPPFLAGS += -Wno-global-constructors
  /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/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);
  /frameworks/native/libs/gui/
Android.mk 21 # The static constructors and destructors in this library have not been noted to
24 LOCAL_CPPFLAGS += -Wno-global-constructors
  /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);
  /external/chromium-trace/catapult/third_party/Paste/paste/
urlparser.py 92 constructors=None,
126 self.constructors = self.global_constructors.copy()
127 if constructors:
128 self.constructors.update(constructors)
129 # @@: Should we also check the global options for constructors?
139 self.constructors[ext] = value
277 constructor = self.constructors.get(t, self.constructors.get('*'))
292 Register a function as a constructor. Registered constructors
    [all...]

Completed in 1056 milliseconds

1 2 3 4 5 6 7 8 91011