Searched refs:constructors (Results 1 - 25 of 103) sorted by relevance

12345

/external/compiler-rt/test/BlocksRuntime/
H A Dcopyconstructor.C13 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);
H A Dreference.C17 int constructors = 0; variable
41 ++constructors;
49 _version = ++constructors;
/external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
H A DAndroid.mk17 test_makefile := external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/Android.mk
19 test_name := diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/default
23 test_name := diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/int_error_category
27 test_name := diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/ErrorCodeEnum
/external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/
H A DAndroid.mk17 test_makefile := external/libcxx/test/diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/Android.mk
19 test_name := diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/default
23 test_name := diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/int_error_category
27 test_name := diagnostics/syserr/syserr.errcondition/syserr.errcondition.constructors/ErrorConditionEnum
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-methods.cpp70 void constructors() { function
H A Dmicrosoft-abi-structors.cpp41 // Tests that we can define constructors outside the class (PR12784).
200 namespace constructors { namespace
212 // CHECK: define x86_thiscallcc %"struct.constructors::B"* @"\01??0B@constructors@@QAE@XZ"(%"struct.constructors::B"* returned %this)
213 // CHECK: call x86_thiscallcc %"struct.constructors::A"* @"\01??0A@constructors@@QAE@XZ"(%"struct.constructors::A"* %{{.*}})
222 // CHECK: define x86_thiscallcc %"struct.constructors::C"* @"\01??0C@constructors
[all...]
/external/javassist/sample/evolve/
H A DVersionManager.java68 Constructor[] constructors = clazz.getConstructors();
69 int n = constructors.length;
72 return constructors[i].newInstance(args);
/external/javassist/src/main/javassist/tools/reflect/
H A DClassMetaobject.java51 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/org/junit/runners/model/
H A DTestClass.java126 Constructor<?>[] constructors= fClass.getConstructors();
127 Assert.assertEquals(1, constructors.length);
128 return constructors[0];
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dv8_interface.py178 constructors = [generate_constructor(interface, constructor)
179 for constructor in interface.constructors
180 # FIXME: shouldn't put named constructors with constructors
182 # Handle named constructors separately
184 if len(constructors) > 1:
185 template_contents['constructor_overloads'] = generate_overloads(constructors)
205 if (constructors or custom_constructors or has_event_constructor or
212 'constructors': constructors,
[all...]
H A Didl_definitions.py31 Classes are primarily constructors, which build an IdlDefinitions object
259 self.constructors = []
282 self.constructors, self.custom_constructors = (
298 for constructor in self.constructors:
581 # The only complexity is handling various types of constructors:
588 constructors = []
608 constructors.append(child)
629 # Store constructors and custom constructors in special list attributes,
631 if constructors
[all...]
H A Dgenerate_global_constructors.py11 hence "global constructors" for short.
63 """Returns constructors for an interface."""
175 constructors = interface_name_to_constructors(interface_name)
179 constructors,
/external/javassist/src/main/javassist/
H A DSerialVersionUID.java134 // constructors.
135 CtConstructor[] constructors = clazz.getDeclaredConstructors();
136 Arrays.sort(constructors, new Comparator() {
145 for (int i = 0; i < constructors.length; i++) {
146 CtConstructor constructor = constructors[i];
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DFastClassEmitter.java71 List constructors = new ArrayList(Arrays.asList(type.getDeclaredConstructors()));
72 CollectionUtils.filter(constructors, vp);
83 List info = CollectionUtils.transform(constructors, MethodInfoTransformer.getInstance());
100 invokeSwitchHelper(e, constructors, 1, base);
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldInitializer.java202 * Constructor instantiating strategy for parameterized constructors.
265 final List<Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors());
266 Collections.sort(constructors, byParameterNumber);
268 Constructor<?> constructor = constructors.get(0);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DEnhancer.java446 List constructors = new ArrayList(Arrays.asList(sc.getDeclaredConstructors()));
447 filterConstructors(sc, constructors);
481 List constructorInfo = CollectionUtils.transform(constructors, MethodInfoTransformer.getInstance());
518 * Filter the list of constructors from the superclass. The
519 * constructors which remain will be included in the generated
521 * constructors, but subclasses may extend Enhancer to override this
524 * @param constructors the list of all declared constructors from the superclass
525 * @throws IllegalArgumentException if there are no non-private constructors
527 protected void filterConstructors(Class sc, List constructors) { argument
699 emitConstructors(ClassEmitter ce, List constructors) argument
841 emitNewInstanceMultiarg(ClassEmitter ce, List constructors) argument
[all...]
/external/doclava/src/com/google/doclava/
H A DStubs.java452 for (MethodInfo method : cl.constructors()) {
472 // default constructor in the case where there are no written constructors.
473 // So, if we hide all the constructors, java may put in a constructor
474 // that calls a nonexistent super class constructor. So, if there are no constructors,
478 if ((cl.constructors().isEmpty() && (!cl.getNonWrittenConstructors().isEmpty() ||
481 // cl.position(), "No constructors " +
707 ArrayList<MethodInfo> ctors = base.constructors();
753 // to avoid collisions with other constructors. If the type is generic
895 ArrayList<MethodInfo> constructors = cl.constructors();
[all...]
H A DSinceTagger.java157 for (MethodInfo constructor : doc.constructors()) {
250 for (MethodInfo constructor : missingVersions(claz.constructors())) {
H A DFederationTagger.java129 for (MethodInfo constructor : localClass.constructors()) {
H A DProofread.java147 // constructors
148 for (MethodInfo m : cl.constructors()) {
H A DTodoFile.java93 for (MethodInfo m : cl.constructors()) {
/external/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp39 const ConstructorMap &constructors() const { return Constructors; } function in class:clang::ast_matchers::dynamic::__anon16965::RegistryMaps
332 RegistryData->constructors().find(MatcherName);
333 return it == RegistryData->constructors().end()
408 for (ConstructorMap::const_iterator I = RegistryData->constructors().begin(),
409 E = RegistryData->constructors().end();
/external/mockito/src/org/mockito/internal/creation/jmock/
H A DClassImposterizer.java92 protected void filterConstructors(Class sc, List constructors) {
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface_base.cpp107 {% for constructor in constructors %}
/external/guava/guava/src/com/google/common/util/concurrent/
H A DFutures.java1017 * String} or {@code Throwable} (preferring constructors with at least one
1083 * String} or {@code Throwable} (preferring constructors with at least one
1215 List<Constructor<X>> constructors =
1217 for (Constructor<X> constructor : preferringStrings(constructors)) {
1232 preferringStrings(List<Constructor<X>> constructors) { argument
1233 return WITH_STRING_PARAM_FIRST.sortedCopy(constructors);

Completed in 740 milliseconds

12345