HomeSort by relevance Sort by last modified time
    Searched defs:constructors (Results 1 - 25 of 295) 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;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/core/
BasePreferenceControllerSignatureInspector.java 57 final Constructor[] constructors = c.getDeclaredConstructors(); local
58 if (constructors == null || constructors.length == 0) {
61 for (Constructor constructor : 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);
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
ParameterizedRobolectricTestRunner.java 72 Constructor<?>[] constructors = bootstrappedClass.getConstructors(); local
73 Assert.assertEquals(1, constructors.length);
74 return constructors[0].newInstance(computeParams());
  /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/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);
  /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 202 Constructor<? extends TestCase>[] constructors local
204 for (Constructor<? extends TestCase> constructor : constructors) {
  /frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
Lifecycling.java 59 List<Constructor<? extends GeneratedAdapter>> constructors = local
61 if (constructors.size() == 1) {
63 constructors.get(0), object);
66 GeneratedAdapter[] adapters = new GeneratedAdapter[constructors.size()];
67 for (int i = 0; i < constructors.size(); i++) {
68 adapters[i] = createGeneratedAdapter(constructors.get(i), object);
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 40 const ConstructorMap &constructors() const { return Constructors; } function in class:clang::ast_matchers::dynamic::__anon14868::RegistryMaps
44 ConstructorMap Constructors;
49 assert(Constructors.find(MatcherName) == Constructors.end());
50 Constructors[MatcherName] = Callback;
425 llvm::DeleteContainerSeconds(Constructors);
435 RegistryData->constructors().find(MatcherName);
436 return it == RegistryData->constructors().end()
496 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/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/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/skqp/tools/bookmaker/
selfCheck.cpp 65 // Check that all constructors are in a table of contents
66 // should be 'creators' instead of constructors?
73 auto constructors = this->findTopic("Constructors", Optional::kYes); local
74 if (constructors && MarkType::kSubtopic != constructors->fMarkType) {
75 return constructors->reportError<bool>("expected #Subtopic Constructors");
78 if (constructors) {
79 if (!this->collectEntries(constructors, &constructorEntries))
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/burst/burst/1.1.0/
burst-1.1.0.jar 
  /cts/tests/tests/util/src/android/util/cts/
HalfTest.java 578 public void constructors() { method in class:HalfTest
    [all...]
  /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 423 * constructors and methods.
426 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods) {
460 constructors, methods, annotationElements, local
516 // generate a "delta" class with only added methods and constructors, but no fields etc

Completed in 419 milliseconds

1 2 3 4 5 6 7 8 91011>>