HomeSort by relevance Sort by last modified time
    Searched refs:constructors (Results 1 - 25 of 288) 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/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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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):
161 constructors = self.constructors_to_test[name]
163 self.assertGreaterEqual(len(constructors), 2)
164 for hash_object_constructor in constructors:
    [all...]
  /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 83 Constructor[] constructors = testCaseClass.getConstructors(); local
85 if (constructors.length == 0) {
88 for (Constructor constructor : constructors) {
TestGrouping.java 228 Constructor<? extends TestCase>[] constructors local
230 for (Constructor<? extends TestCase> constructor : constructors) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug098.go 14 var m *M = &M{0 : 0}; // should be legal to use & here for consistency with other composite constructors (prev. line)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug098.go 14 var m *M = &M{0 : 0}; // should be legal to use & here for consistency with other composite constructors (prev. line)
  /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/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];
  /prebuilts/tools/common/m2/repository/com/squareup/burst/burst/1.1.0/
burst-1.1.0.jar 
  /external/junit/src/main/java/org/junit/experimental/theories/
Theories.java 140 Constructor<?>[] constructors = supplierClass.getConstructors(); local
142 if (constructors.length != 1) {
146 Class<?>[] paramTypes = constructors[0].getParameterTypes();
  /external/mockito/src/main/java/org/mockito/internal/util/reflection/
FieldInitializer.java 216 * Constructor instantiating strategy for parameterized constructors.
295 final List<? extends Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors()); local
296 Collections.sort(constructors, byParameterNumber);
298 Constructor<?> constructor = constructors.get(0);
  /external/junit/src/main/java/org/junit/runners/model/
TestClass.java 203 Constructor<?>[] constructors = clazz.getConstructors(); local
204 Assert.assertEquals(1, constructors.length);
205 return constructors[0];
  /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/doclava/src/com/google/doclava/
SinceTagger.java 158 for (MethodInfo constructor : doc.constructors()) {
251 for (MethodInfo constructor : missingVersions(claz.constructors())) {
  /system/connectivity/wifilogd/
Android.mk 20 -Wno-weak-vtables -Wno-sign-conversion -Wno-global-constructors \

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 91011>>