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

1 2 3 4 5 6 7 8

  /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/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
Android.mk 17 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/
Android.mk 17 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/
microsoft-abi-methods.cpp 70 void constructors() { function
microsoft-abi-structors.cpp 41 // 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@@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);
  /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) {
  /cts/tools/signature-tools/src/signature/model/impl/
SigClassDefinition.java 46 private Set<IConstructor> constructors = Uninitialized.unset(); field in class:SigClassDefinition
118 return constructors;
121 public void setConstructors(Set<IConstructor> constructors) {
122 this.constructors = constructors;
  /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/chromium_org/third_party/WebKit/Source/bindings/scripts/
generate_global_constructors.py 11 hence "global constructors" for short.
63 """Returns constructors for an interface."""
175 constructors = interface_name_to_constructors(interface_name)
179 constructors,
v8_interface.py 177 # Constructors
178 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...]
idl_definitions.py 31 Classes are primarily constructors, which build an IdlDefinitions object
35 * Constructors walk the AST, creating objects.
87 # Constructors don't have their own return type, because it's the
259 self.constructors = []
282 self.constructors, self.custom_constructors = (
298 for constructor in self.constructors:
573 Constructors: value is a list of Arguments nodes, corresponding to
581 # The only complexity is handling various types of constructors:
582 # Constructors and Custom Constructors can have duplicate entries due t
    [all...]
  /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/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/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/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/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Enhancer.java 446 List constructors = new ArrayList(Arrays.asList(sc.getDeclaredConstructors())); local
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) {
    [all...]
  /libcore/libart/src/main/java/java/lang/
Class.java 564 * constructors for this {@code Class}. If there
565 * are no public constructors or if this {@code Class} represents an array
571 ArrayList<Constructor<T>> constructors = new ArrayList(); local
572 getDeclaredConstructors(true, constructors);
573 return constructors.toArray(new Constructor[constructors.size()]);
578 * constructors declared in the class represented by this {@code Class}. If
579 * there are no constructors or if this {@code Class} represents an array
585 ArrayList<Constructor<T>> constructors = new ArrayList(); local
586 getDeclaredConstructors(false, constructors);
    [all...]
  /external/doclava/src/com/google/doclava/
Stubs.java 452 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(); local
1106 List<MethodInfo> constructors = cl.getRemovedConstructors(); local
1223 ArrayList<MethodInfo> constructors = cl.constructors(); local
1423 ArrayList<MethodInfo> constructors = cl.constructors(); local
    [all...]
SinceTagger.java 157 for (MethodInfo constructor : doc.constructors()) {
250 for (MethodInfo constructor : missingVersions(claz.constructors())) {
  /external/chromium_org/v8/test/mjsunit/harmony/regress/
regress-2225.js 51 // Test inline constructors with proxy as prototype.
59 // Test inline constructors with proxy in prototype chain.

Completed in 571 milliseconds

1 2 3 4 5 6 7 8