HomeSort by relevance Sort by last modified time
    Searched defs:constructor (Results 201 - 225 of 1351) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/tools/common/fest/
fest-reflect-1.2.jar 
  /prebuilts/tools/common/intellij-core/171.2455.10/
picocontainer.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/dagger/dagger-compiler/1.2.2/
dagger-compiler-1.2.2.jar 
  /art/runtime/native/
java_lang_Class.cc 508 Handle<mirror::Constructor> result = hs.NewHandle(
540 auto h_constructors = hs.NewHandle(mirror::ObjectArray<mirror::Constructor>::Alloc(
541 soa.Self(), mirror::Constructor::ArrayClass(), constructor_count));
551 auto* constructor = mirror::Constructor::CreateFromArtMethod<kRuntimePointerSize, false>( local
553 if (UNLIKELY(constructor == nullptr)) {
557 h_constructors->SetWithoutChecks<false>(constructor_count++, constructor);
593 // Add non-constructor declared methods.
823 ArtMethod* constructor = klass->GetDeclaredConstructor( local
    [all...]
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 20 import java.lang.reflect.Constructor;
93 * Public no-arguments constructor required by the lookup mechanism.
220 * The one-argument constructor of the
226 protected Constructor logConstructor = null;
230 * The signature of the Constructor to be used.
524 * <p>Return the <code>Constructor</code> that can be called to instantiate
529 * the same <code>Constructor</code> instance will ultimately be derived
532 * @exception LogConfigurationException if a suitable constructor
538 protected Constructor getLogConstructor()
541 // Return the previously identified Constructor (if any
974 Constructor constructor = null; local
    [all...]
  /external/guice/core/test/com/google/inject/spi/
ElementsTest.java 57 import java.lang.reflect.Constructor;
1216 final Constructor<C> constructor = C.class.getDeclaredConstructor(Integer.class); local
    [all...]
InjectionPointTest.java 39 import java.lang.reflect.Constructor;
109 Constructor<?> constructor = Constructable.class.getConstructor(String.class); local
110 InjectionPoint injectionPoint = new InjectionPoint(typeLiteral, constructor);
111 assertSame(constructor, injectionPoint.getMember());
114 assertEqualsBothWays(injectionPoint, new InjectionPoint(typeLiteral, constructor));
120 assertEquals(constructor, dependency.getInjectionPoint().getMember());
126 getOnlyElement(new InjectionPoint(typeLiteral, constructor).getDependencies()));
142 Constructor<HashSet> constructor = HashSet.class.getConstructor() local
205 InjectionPoint constructor = InjectionPoint.forConstructorOf(type); local
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/bytecode/
ShadowWrangler.java 14 import java.lang.reflect.Constructor;
171 Constructor<?> constructor = findConstructor(instance, shadowClass); local
172 if (constructor != null) {
173 shadow = constructor.newInstance(instance);
226 private Constructor<?> findConstructor(Object instance, Class<?> shadowClass) {
229 Constructor constructor; local
230 for (constructor = null; constructor == null && clazz != null; clazz = clazz.getSuperclass())
    [all...]
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
ShadowWrangler.java 382 throw new RuntimeException("Could not instantiate shadow, missing public empty constructor.", e);
393 MethodHandle constructor = LOOKUP.findConstructor(shadowClass, methodType(void.class)); local
403 mh = foldArguments(mh, constructor); // (shadow, instance)
407 throw new RuntimeException("Could not instantiate shadow, missing public empty constructor.", e);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
SafeConstructor.java 16 package org.yaml.snakeyaml.constructor;
291 * constructor when for this expected failure cause.
506 "could not determine a constructor for the tag " + node.getTag(),
  /external/testng/src/test/java/test/mannotation/
MAnnotationSampleTest.java 17 import java.lang.reflect.Constructor;
89 Constructor constructor = MTest1.class.getConstructor(new Class[0]); local
90 ITestAnnotation test1 = (ITestAnnotation) m_finder.findAnnotation(constructor, ITestAnnotation.class);
102 Assert.assertEquals(test1.getDescription(), "Constructor description");
  /external/v8/src/
api-natives.cc 121 // Copy map so it won't interfere constructor's initial map.
130 // Copy map so it won't interfere constructor's initial map.
333 if (fun->shared()->function_data() != info->constructor()) return false;
342 Handle<JSFunction> constructor; local
346 constructor = Handle<JSFunction>::cast(new_target);
360 if (constructor.is_null()) {
361 Object* maybe_constructor_info = info->constructor();
363 constructor = isolate->object_function();
373 constructor = scope.CloseAndEscape(tmp_constructor);
376 if (new_target.is_null()) new_target = constructor;
    [all...]
lookup.cc 127 Handle<JSFunction> constructor = isolate->string_function(); local
128 Handle<JSObject> result = isolate->factory()->NewJSObject(constructor);
166 // Setting the constructor property could change an instance's @@species
173 // Setting the constructor of Array.prototype of any realm also needs
184 // Setting the Symbol.species property of any Array constructor invalidates
    [all...]
  /external/v8/src/builtins/
builtins-object.cc 986 Node* constructor = Parameter(Descriptor::kLeft); local
    [all...]
  /frameworks/base/core/java/android/view/
MenuInflater.java 38 import java.lang.reflect.Constructor;
561 Constructor<?> constructor = clazz.getConstructor(constructorSignature); local
562 constructor.setAccessible(true);
563 return (T) constructor.newInstance(arguments);
  /frameworks/base/services/core/jni/
com_android_server_tv_TvInputHal.cpp 68 jmethodID constructor; member in struct:android::__anon45933
80 jmethodID constructor; member in struct:android::__anon45934
463 gTvInputHardwareInfoBuilderClassInfo.constructor);
620 gTvStreamConfigBuilderClassInfo.constructor);
699 gTvStreamConfigBuilderClassInfo.constructor,
733 gTvInputHardwareInfoBuilderClassInfo.constructor,
  /frameworks/layoutlib/bridge/src/android/view/
BridgeInflater.java 50 import java.lang.reflect.Constructor;
226 Constructor<?> constructor = inflaterClass.getDeclaredConstructor(); local
227 constructor.setAccessible(true);
228 Object inflater = constructor.newInstance();
375 * @param attrs the {@link AttributeSet} to be passed to the view constructor
  /frameworks/multidex/library/src/androidx/multidex/
MultiDex.java 29 import java.lang.reflect.Constructor;
580 private final Constructor<?> elementConstructor;
603 private final Constructor<?> elementConstructor;
626 private final Constructor<?> elementConstructor;
672 ElementConstructor constructor; local
675 constructor = new ICSElementConstructor(elementClass);
678 constructor = new JBMR11ElementConstructor(elementClass);
680 constructor = new JBMR2ElementConstructor(elementClass);
683 this.elementConstructor = constructor;
    [all...]
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
Filters.java 30 import java.lang.reflect.Constructor;
327 Constructor[] constructors = mFilterClasses[mIndices[i]].getConstructors();
328 for (Constructor ctr : constructors) {
329 Log.i("Filters", "constructor " + ctr);
332 Constructor constructor = local
337 mFilters[i] = (FilterInterface)constructor.newInstance(this, mRS);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java 19 import java.lang.reflect.Constructor;
108 Constructor<?> constructor = fClass.getDeclaredConstructors()[0]; local
109 Type[] parameters = constructor.getGenericParameterTypes();
132 Constructor<?> c1 = A.class.getDeclaredConstructor();
133 Constructor<?> c2 = aClass.getDeclaredConstructor();
OldAndroidClassTest.java 19 import java.lang.reflect.Constructor;
90 Constructor constructor = helloClass.getConstructor((Class[]) null); local
91 assertNotNull(constructor);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
AnnotatedElementParameterTest.java 22 import java.lang.reflect.Constructor;
40 * objects obtained from both {@link Constructor} and {@link Method}.
212 static Constructor<?> getConstructorWithoutAnnotations() throws Exception {
216 static Constructor<?> getConstructorMultipleAnnotationOddity() throws Exception {
220 static Constructor<?> getConstructorMultipleAnnotationExplicitSingle()
225 static Constructor<?> getConstructorSingleAnnotation() throws Exception {
229 static Constructor<?> getConstructorMultipleAnnotation() throws Exception {
444 * As an inner class the constructor will actually have two parameters: the first, referencing
451 /** Special case testing for a compiler-generated constructor parameter. JLS 8.8.1, JLS 13.1. */
453 Constructor<InnerClass> constructor local
494 Constructor<? extends AnonymousBaseClass> constructor = local
533 Constructor<StaticInnerClass> constructor = local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ProjectCallback.java 69 import java.lang.reflect.Constructor;
354 * Instantiate a class object, using a specific constructor and parameters.
356 * @param constructorSignature the signature of the constructor to use
357 * @param constructorParameters the parameters to use in the constructor.
358 * @return A new class object, created using a specific constructor and parameters.
365 Constructor<?> constructor = null; local
368 constructor = clazz.getConstructor(constructorSignature);
375 // The 3-parameter constructor takes the following arguments:
380 // There is no parameter-less constructor. Nobody should ask for one
    [all...]
  /system/extras/verity/
Utils.java 19 import java.lang.reflect.Constructor;
103 Constructor<?> constructor = null; local
104 for (Constructor<?> c : klass.getConstructors()) {
106 constructor = c;
110 if (constructor == null) {
111 System.err.println("No zero-arg constructor found for " + providerClassName);
118 o = constructor.newInstance();
  /prebuilts/maven_repo/android/android/arch/lifecycle/common/1.0.3/
common-1.0.3.jar 

Completed in 1844 milliseconds

1 2 3 4 5 6 7 891011>>