Home
last modified time | relevance | path

Searched refs:constructors (Results 1 – 25 of 257) sorted by relevance

1234567891011

/external/compiler-rt/test/BlocksRuntime/
Dcopyconstructor.C13 int constructors = 0; variable
36 ++constructors; in TestObject()
44 _version = ++constructors; in TestObject()
75 if (constructors == 0) { in main()
79 if (constructors != destructors) { in main()
80 printf("%d constructors but only %d destructors\n", constructors, destructors); in main()
Dreference.C17 int constructors = 0; variable
41 ++constructors; in TestObject()
49 _version = ++constructors; in TestObject()
/external/javassist/sample/evolve/
DVersionManager.java68 Constructor[] constructors = clazz.getConstructors(); in make() local
69 int n = constructors.length; in make()
72 return constructors[i].newInstance(args); in make()
/external/javassist/src/main/javassist/tools/reflect/
DClassMetaobject.java51 private Constructor[] constructors; field in ClassMetaobject
81 constructors = javaClass.getConstructors(); in ClassMetaobject()
93 constructors = javaClass.getConstructors(); in readObject()
134 int n = constructors.length; in newInstance()
137 return constructors[i].newInstance(args); in newInstance()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider.java254 List<AssistedConstructor<?>> constructors = Lists.newArrayList(); in createMethodMapping() local
260 constructors.add(assistedConstructor); in createMethodMapping()
264 if (constructors.isEmpty()) { in createMethodMapping()
270 if (constructors.size() != factoryMethods.length) { in createMethodMapping()
273 constructors.size(), factoryType, factoryMethods.length); in createMethodMapping()
278 for (AssistedConstructor<?> c : constructors) { in createMethodMapping()
/external/javassist/src/main/javassist/
DSerialVersionUID.java135 CtConstructor[] constructors = clazz.getDeclaredConstructors(); in calculateDefault() local
136 Arrays.sort(constructors, new Comparator() { in calculateDefault()
145 for (int i = 0; i < constructors.length; i++) { in calculateDefault()
146 CtConstructor constructor = constructors[i]; in calculateDefault()
/external/proguard/examples/
Dandroid.pro67 # Preserve all View implementations, their special context constructors, and
77 # Preserve all classes that have special context constructors, and the
78 # constructors themselves.
84 # Preserve all classes that have special context constructors, and the
85 # constructors themselves.
/external/proguard/examples/gradle/
Dandroid.gradle87 // Preserve all View implementations, their special context constructors, and
97 // Preserve all classes that have special context constructors, and the
98 // constructors themselves.
104 // Preserve all classes that have special context constructors, and the
105 // constructors themselves.
/external/clang/docs/analyzer/
DIPA.txt43 -analyzer-config c++-inlining=[none | methods | constructors | destructors]
47 constructors, for example.
53 Note that under 'constructors', constructors for types with non-trivial
90 This option controls whether constructors and destructors of "container" types
95 Currently, these constructors and destructors are NOT considered for inlining
109 state, which is what happens when their constructors are treated as opaque.
184 - In C++, constructors are not inlined unless the destructor call will be
188 constructors for objects with trivial constructors can still be inlined.)
192 or operator 'delete', nor does it inline the constructors and destructors
347 which base constructors have been completed. This is tracked using
[all …]
/external/doclava/src/com/google/doclava/
DStubs.java613 for (MethodInfo method : cl.constructors()) { in writeClass()
639 if ((cl.constructors().isEmpty() && (!cl.getNonWrittenConstructors().isEmpty() || in writeClass()
876 ArrayList<MethodInfo> ctors = base.constructors(); in superCtorCall()
1064 ArrayList<MethodInfo> constructors = cl.constructors(); in writeClassXML() local
1065 Collections.sort(constructors, MethodInfo.comparator); in writeClassXML()
1066 for (MethodInfo mi : constructors) { in writeClassXML()
1282 List<MethodInfo> constructors = cl.getExhaustiveConstructors().stream().filter(predicate) in writeClassPredicateSelfMembers() local
1291 if (constructors.isEmpty() && methods.isEmpty() && enums.isEmpty() && fields.isEmpty()) { in writeClassPredicateSelfMembers()
1362 for (MethodInfo mi : constructors) { in writeClassPredicateSelfMembers()
1533 ArrayList<MethodInfo> constructors = cl.constructors(); in writeClassApi() local
[all …]
DSinceTagger.java158 for (MethodInfo constructor : doc.constructors()) { in versionConstructors()
251 for (MethodInfo constructor : missingVersions(claz.constructors())) { in warnForMissingVersions()
DClassInfo.java142 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods, in init() argument
153 mAllConstructors = constructors; in init()
526 public ArrayList<MethodInfo> constructors() { in constructors() method in ClassInfo
767 public void setExhaustiveConstructors(List<MethodInfo> constructors) { in setExhaustiveConstructors() argument
768 mExhaustiveConstructors = constructors; in setExhaustiveConstructors()
874 for (MethodInfo m : constructors()) { in selfAttributes()
991 ArrayList<MethodInfo> ctors = constructors(); in makeKeywordEntries()
1145 ArrayList<MethodInfo> ctors = constructors(); in makeHDF()
1591 rv = matchMethod(constructors(), name, params, dimensions, varargs); in findMethod()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.arrays.txt25 + Array definition and constructors
31 + Negative tests for illegal C-style constructors
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DFieldInitializer.java295 …final List<? extends Constructor<?>> constructors = Arrays.asList(clazz.getDeclaredConstructors()); in biggestConstructor() local
296 Collections.sort(constructors, byParameterNumber); in biggestConstructor()
298 Constructor<?> constructor = constructors.get(0); in biggestConstructor()
/external/junit/src/main/java/org/junit/experimental/theories/
DTheories.java140 Constructor<?>[] constructors = supplierClass.getConstructors(); in validateParameterSupplier() local
142 if (constructors.length != 1) { in validateParameterSupplier()
146 Class<?>[] paramTypes = constructors[0].getParameterTypes(); in validateParameterSupplier()
/external/junit/src/main/java/org/junit/runners/model/
DTestClass.java203 Constructor<?>[] constructors = clazz.getConstructors(); in getOnlyConstructor() local
204 Assert.assertEquals(1, constructors.length); in getOnlyConstructor()
205 return constructors[0]; in getOnlyConstructor()
/external/llvm/test/Bitcode/
Dupgrade-global-ctors.ll4 ; Global constructors should no longer be upgraded when reading bitcode.
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-methods.cpp70 void constructors() { in constructors() function
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp40 const ConstructorMap &constructors() const { return Constructors; } in constructors() function in clang::ast_matchers::dynamic::__anon95b711b70111::RegistryMaps
435 RegistryData->constructors().find(MatcherName); in lookupMatcherCtor()
436 return it == RegistryData->constructors().end() in lookupMatcherCtor()
496 for (const auto &M : RegistryData->constructors()) { in getMatcherCompletions()
/external/v8/testing/gmock/include/gmock/
Dgmock-generated-nice-strict.h.pump54 // NiceMock, NaggyMock, and StrictMock "inherit" the constructors of
68 // Another known limitation is that the constructors of the base mock
101 // C++ doesn't (yet) allow inheritance of constructors, so we have
/external/googletest/googlemock/include/gmock/
Dgmock-generated-nice-strict.h.pump54 // NiceMock, NaggyMock, and StrictMock "inherit" the constructors of
68 // Another known limitation is that the constructors of the base mock
101 // C++ doesn't (yet) allow inheritance of constructors, so we have
/external/google-breakpad/src/testing/include/gmock/
Dgmock-generated-nice-strict.h.pump45 // NiceMock and StrictMock "inherits" the constructors of their
58 // Another known limitation is that the constructors of the base mock
80 // C++ doesn't (yet) allow inheritance of constructors, so we have
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DInjectBindingRegistry.java210 List<ExecutableElement> constructors = in getOrFindProvisionBinding() local
212 ImmutableSet<ExecutableElement> injectConstructors = FluentIterable.from(constructors) in getOrFindProvisionBinding()
/external/vixl/
DCPPLINT.cfg13 filter=+readability/constructors
/external/clang/test/Analysis/
Dctor.mm1 …er=core,debug.ExprInspection -fobjc-arc -analyzer-config c++-inlining=constructors -Wno-null-deref…
248 // Not strictly about constructors, but trivial assignment operators should
566 // FIXME: Pending proper implementation of constructors for 'new'.
573 // FIXME: Pending proper implementation of constructors for 'new[]'.
673 // FIXME: When we handle constructors with 'new', this will be TRUE.

1234567891011