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

1 2 3 4 5 6

  /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);
  /external/chromium_org/v8/test/mjsunit/es6/
typed-array-iterator.js 6 var constructors = [Uint8Array, Int8Array, variable
28 constructors.forEach(TestTypedArrayPrototype);
39 constructors.forEach(TestTypedArrayValues);
  /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."""
173 constructors = interface_name_to_constructors(interface_name)
177 constructors,
v8_interface.py 205 # Constructors
206 constructors = [constructor_context(interface, constructor)
207 for constructor in interface.constructors
208 # FIXME: shouldn't put named constructors with constructors
210 # Handle named constructors separately
212 if len(constructors) > 1:
213 context['constructor_overloads'] = overloads_context(constructors)
233 if (constructors or custom_constructors or has_event_constructor or
240 'constructors': constructors
    [all...]
idl_definitions.py 31 Classes are primarily constructors, which build an IdlDefinitions object
35 * Constructors walk the AST, creating objects.
89 # Constructors don't have their own return type, because it's the
272 self.constructors = []
297 self.constructors, self.custom_constructors = (
316 for constructor in self.constructors:
641 Constructors: value is a list of Arguments nodes, corresponding to
650 # The only complexity is handling various types of constructors:
651 # 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...]
  /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())) {
FederationTagger.java 129 for (MethodInfo constructor : localClass.constructors()) {
Proofread.java 147 // constructors
148 for (MethodInfo m : cl.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.
  /external/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 39 const ConstructorMap &constructors() const { return Constructors; } function in class:clang::ast_matchers::dynamic::__anon22384::RegistryMaps
43 ConstructorMap Constructors;
48 assert(Constructors.find(MatcherName) == Constructors.end());
49 Constructors[MatcherName] = Callback;
318 for (ConstructorMap::iterator it = Constructors.begin(),
319 end = Constructors.end();
332 RegistryData->constructors().find(MatcherName);
333 return it == RegistryData->constructors().end(
    [all...]

Completed in 805 milliseconds

1 2 3 4 5 6