Home
last modified time | relevance | path

Searched defs:constructor (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/external/guice/core/src/com/google/inject/internal/
DDefaultConstructionProxyFactory.java45 final Constructor<T> constructor = (Constructor<T>) injectionPoint.getMember(); in create() local
70 final Constructor<T> constructor; field in DefaultConstructionProxyFactory.FastClassProxy
76 Constructor<T> constructor, in FastClassProxy()
111 final Constructor<T> constructor; field in DefaultConstructionProxyFactory.ReflectiveProxy
114 ReflectiveProxy(InjectionPoint injectionPoint, Constructor<T> constructor) { in ReflectiveProxy()
/external/guava/android/guava-tests/test/com/google/common/reflect/
DInvokableTest.java56 Constructor<WithConstructorAndTypeParameter> constructor = type.getDeclaredConstructor(); in testConstructor_returnType_hasTypeParameter() local
321 Constructor<?> constructor = InnerWithDefaultConstructor.class.getDeclaredConstructors()[0]; in testInnerClassDefaultConstructor() local
326 Constructor<?> constructor = in testNestedInnerClassDefaultConstructor() local
337 Constructor<?> constructor = in testInnerClassWithOneParameterConstructor() local
350 Constructor<?> constructor = in testInnerClassWithAnnotatedConstructorParameter() local
363 Constructor<?> constructor = in testInnerClassWithGenericConstructorParameter() local
381 Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; in testAnonymousClassDefaultConstructor() local
391 Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; in testAnonymousClassWithTwoParametersConstructor() local
404 Constructor<?> constructor = LocalWithDefaultConstructor.class.getDeclaredConstructors()[0]; in testLocalClassDefaultConstructor() local
422 Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; in doTestStaticAnonymousClassDefaultConstructor() local
[all …]
/external/guava/guava-tests/test/com/google/common/reflect/
DInvokableTest.java56 Constructor<WithConstructorAndTypeParameter> constructor = type.getDeclaredConstructor(); in testConstructor_returnType_hasTypeParameter() local
321 Constructor<?> constructor = InnerWithDefaultConstructor.class.getDeclaredConstructors()[0]; in testInnerClassDefaultConstructor() local
326 Constructor<?> constructor = in testNestedInnerClassDefaultConstructor() local
337 Constructor<?> constructor = in testInnerClassWithOneParameterConstructor() local
350 Constructor<?> constructor = in testInnerClassWithAnnotatedConstructorParameter() local
363 Constructor<?> constructor = in testInnerClassWithGenericConstructorParameter() local
381 Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; in testAnonymousClassDefaultConstructor() local
391 Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; in testAnonymousClassWithTwoParametersConstructor() local
404 Constructor<?> constructor = LocalWithDefaultConstructor.class.getDeclaredConstructors()[0]; in testLocalClassDefaultConstructor() local
422 Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; in doTestStaticAnonymousClassDefaultConstructor() local
[all …]
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DAssistedConstructor.java40 private final Constructor<T> constructor; field in AssistedConstructor
45 Constructor<T> constructor, List<TypeLiteral<?>> parameterTypes) { in create()
49 private AssistedConstructor(Constructor<T> constructor, List<TypeLiteral<?>> parameterTypes) { in AssistedConstructor()
/external/antlr/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
DLexer.pm12 sub constructor : Test(1) { subroutine
DException.pm9 sub constructor : Test(1) { subroutine
DCommonToken.pm11 sub constructor : Test(1) { subroutine
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/
DClassTagsTest.java75 Constructor constructor = new Constructor(); in testLoadClassTag() local
87 Constructor constructor = new Constructor(); in testNullDescription() local
97 Constructor constructor = new Constructor(new TypeDescription(Car.class)); in testLoadClassNoRoot() local
DArrayTagsTest.java61 Constructor constructor = new Constructor(); in testLoadClassTag() local
72 Constructor constructor = new Constructor(); in testNullDescription() local
82 Constructor constructor = new Constructor(new TypeDescription(CarWithArray.class)); in testLoadClassNoRoot() local
/external/python/cpython2/Lib/test/
Dtest_StringIO.py20 constructor = str variable in TestGenericStringIO
207 constructor = buffer variable in TestBufferStringIO
210 constructor = buffer variable in TestBuffercStringIO
213 constructor = memoryview variable in TestMemoryviewcStringIO
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/
DDefaultRenderersFactory.java284 Constructor<?> constructor = in buildVideoRenderers() local
311 Constructor<?> constructor = in buildVideoRenderers() local
339 Constructor<?> constructor = in buildVideoRenderers() local
410 Constructor<?> constructor = in buildAudioRenderers() local
431 Constructor<?> constructor = in buildAudioRenderers() local
453 Constructor<?> constructor = in buildAudioRenderers() local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
DReflectionConstructor.java51 private final Constructor constructor; field in ReflectionConstructor
53 public ReflectionConstructor(Constructor constructor) { in ReflectionConstructor()
/external/python/pybind11/include/pybind11/detail/
Dinit.h171 struct constructor { struct
176 }, is_new_style_constructor(), extra...); in execute() argument
188 }, is_new_style_constructor(), extra...); in execute() argument
197 }, is_new_style_constructor(), extra...); in execute() argument
/external/skia/demos.skia.org/demos/path_performance/
Dshared.js51 constructor(svgObjectElement) { method in SVGRenderer
76 constructor(svgData, offscreenCanvas) { method in Path2dRenderer
103 constructor(svgData, offscreenCanvas, CanvasKit) { method in CanvasKitRenderer
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionConstructorDeclaration.java32 private Constructor<?> constructor; field in ReflectionConstructorDeclaration
35 public ReflectionConstructorDeclaration(Constructor<?> constructor, in ReflectionConstructorDeclaration()
/external/guice/core/test/com/google/inject/
DBindingTest.java250 final Constructor<D> constructor = D.class.getConstructor(Stage.class); in testToConstructorBinding() local
266 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class); in testToConstructorBindingsOnParameterizedTypes() local
292 final Constructor constructor = C.class.getConstructor(Stage.class, Object.class); in testToConstructorBindingsFailsOnRawTypes() local
314 final Constructor<D> constructor = D.class.getConstructor(Stage.class); in testToConstructorAndMethodInterceptors() local
343 final Constructor<E> constructor = E.class.getDeclaredConstructor(Stage.class); in testInaccessibleConstructor() local
359 final Constructor<F> constructor = F.class.getConstructor(Stage.class); in testToConstructorAndScopes() local
396 final Constructor<D> constructor = D.class.getConstructor(Stage.class); in testToConstructorSpiData() local
421 final Constructor<CFoo> constructor = CFoo.class.getDeclaredConstructor(); in testInterfaceToImplementationConstructor() local
/external/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dast.js16 constructor() { method in Module
79 constructor(name, opcode, operands) { method in Instruction
95 constructor(mod, name, type, value, params) { method in Operand
/external/deqp-deps/SPIRV-Tools/tools/sva/src/
Dast.js16 constructor() { method in Module
79 constructor(name, opcode, operands) { method in Instruction
95 constructor(mod, name, type, value, params) { method in Operand
/external/angle/third_party/vulkan-deps/spirv-tools/src/tools/sva/src/
Dast.js16 constructor() { method in Module
79 constructor(name, opcode, operands) { method in Instruction
95 constructor(mod, name, type, value, params) { method in Operand
/external/auto/value/src/main/java/com/google/auto/value/extension/serializable/processor/
DSerializableAutoValueExtension.java144 private MethodSpec constructor() { in constructor() method in SerializableAutoValueExtension.Generator
145 MethodSpec.Builder constructor = in constructor() local
261 private MethodSpec constructor() { in constructor() method in SerializableAutoValueExtension.ProxyGenerator
262 MethodSpec.Builder constructor = MethodSpec.constructorBuilder(); in constructor() local
/external/dagger2/java/dagger/hilt/processor/internal/root/
DTestComponentDataSupplierGenerator.java97 private MethodSpec constructor() { in constructor() method in TestComponentDataSupplierGenerator
98 MethodSpec.Builder constructor = MethodSpec.constructorBuilder(); in constructor() local
/external/autotest/client/site_tests/audio_WebRtcAudioLoopback/
Daudio_loopback_test.js18 constructor() { method in FeedTable
41 constructor(audioElement) { method in PeerConnection
97 constructor(runtimeSeconds) { method in TestRunner
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
DReflectionConstructorDeclaration.java39 private Constructor<?> constructor; field in ReflectionConstructorDeclaration
42 public ReflectionConstructorDeclaration(Constructor<?> constructor, TypeSolver typeSolver) { in ReflectionConstructorDeclaration()
/external/mockito/src/main/java/org/mockito/internal/util/reflection/
DFieldInitializer.java189 Constructor<?> constructor = null; in instantiate() local
263 Constructor<?> constructor = null; in instantiate() local
288 private void checkParameterized(Constructor<?> constructor, Field field) { in checkParameterized()
298 Constructor<?> constructor = constructors.get(0); in biggestConstructor() local
/external/mockito/src/test/java/org/mockito/
DStaticMockingExperimentTest.java168 Invocation constructor = Mockito.framework().getInvocationFactory().createInvocation( in stubbing_new() local
190 Invocation constructor = Mockito.framework().getInvocationFactory().createInvocation( in verifying_new() local
234 Object construct(Constructor constructor, Object... args); in construct()

12345678910>>...12