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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/sdk/current/androidx/m2repository/androidx/lifecycle/lifecycle-common/2.0.0-alpha1/
lifecycle-common-2.0.0-alpha1.jar 
  /prebuilts/sdk/current/extras/app-toolkit/m2repository/android/arch/lifecycle/common/28.0.0/
common-28.0.0.jar 
  /art/runtime/
jni_internal_test.cc 659 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V"); local
660 jobj_ = env_->NewObject(jklass_, constructor);
    [all...]
  /art/test/046-reflect/src/
Main.java 370 Constructor<Target> cons;
391 Constructor<Thrower> constructor = Thrower.class.getDeclaredConstructor(); local
392 Thrower thrower = constructor.newInstance();
393 System.out.println("ERROR: Constructor.newInstance did not throw exception");
395 System.out.println("got expected exception for Constructor.newInstance");
397 System.out.println("ERROR: Constructor.newInstance got unexpected exception: " +
528 Constructor<?> ctor;
761 System.out.println("SuperTarget constructor ()V");
777 System.out.println("Target constructor ()V")
    [all...]
  /external/annotation-tools/scene-lib/test/annotations/tests/executable/
TestSceneLib.java 143 private void checkConstructor(AMethod constructor) {
144 Annotation ann = ((Annotation) constructor.receiver.type.lookup("p2.D"));
146 ATypeElement l = (ATypeElement) constructor.body.locals
153 constructor.body.locals.get(new LocalLocation(1, 3, 6));
169 AMethod constructor = me.getValue(); local
170 assertNotNull(constructor);
171 checkConstructor((AMethod) constructor);
  /external/conscrypt/android/src/main/java/org/conscrypt/
Platform.java 27 import java.lang.reflect.Constructor;
77 * if the default constructor is used.
745 Constructor<?> constructor = gcmSpecClass.getConstructor(int.class, byte[].class); local
746 return (AlgorithmParameterSpec) constructor.newInstance(tagLenInBits, iv);
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/
LambdaDesugaring.java 28 import java.lang.reflect.Constructor;
127 // Bridge is a factory method calling a constructor
278 // Call invisible constructor through generated bridge "factory" method, so we need to
279 // compute the descriptor for the bridge method from the constructor's descriptor
321 for (Constructor<?> c : owner.getDeclaredConstructors()) {
457 // the constructor of generated lambda class with the arguments on the stack
492 * {@code internalName}'s constructor.
497 // Walk backwards past loads corresponding to constructor arguments to find the instruction
621 Constructor<Lookup> constructor = Lookup.class.getDeclaredConstructor(Class.class) local
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
OptionsParser.java 26 import java.lang.reflect.Constructor;
773 Constructor<O> constructor = data.getConstructor(optionsClass); local
774 Preconditions.checkNotNull(constructor, "No options class constructor available")
    [all...]
  /external/guice/core/test/com/google/inject/
BindingTest.java 37 import java.lang.reflect.Constructor;
205 "Could not find a suitable constructor in " + PrivateNoArg.class.getName(),
216 TooManyConstructors.class.getName() + " has more than one constructor annotated with "
217 + "@Inject. Classes must have either one (and only one) constructor",
228 final Constructor<D> constructor = D.class.getConstructor(Stage.class); local
232 bind(Object.class).toConstructor(constructor);
241 final Constructor<C> constructor = C.class.getConstructor(Stage.class, Object.class); local
247 bind(s).toConstructor(constructor, new TypeLiteral<C<Stage>>() {})
264 final Constructor constructor = C.class.getConstructor(Stage.class, Object.class); local
284 final Constructor<D> constructor = D.class.getConstructor(Stage.class); local
308 final Constructor<E> constructor = E.class.getDeclaredConstructor(Stage.class); local
321 final Constructor<F> constructor = F.class.getConstructor(Stage.class); local
355 final Constructor<D> constructor = D.class.getConstructor(Stage.class); local
376 final Constructor<CFoo> constructor = CFoo.class.getDeclaredConstructor(); local
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider2.java 60 import java.lang.reflect.Constructor;
119 /** the constructor the implementation is constructed with. */
120 final Constructor<?> constructor; field in class:FactoryProvider2.AssistData
121 /** the return type in the factory method that the constructor is bound to. */
140 AssistData(Constructor<?> constructor, Key<?> returnType, ImmutableList<Key<?>> paramTypes,
144 this.constructor = constructor;
157 .add("ctor", constructor)
293 Constructor<?> constructor = (Constructor<?>) ctorInjectionPoint.getMember(); local
    [all...]
  /external/python/cpython3/Modules/
_operator.c 1113 PyObject *constructor; local
    [all...]
  /external/v8/src/compiler/
js-create-lowering.cc 243 // Extract constructor and original constructor function.
246 Handle<JSFunction> constructor = local
250 DCHECK(constructor->IsConstructor());
254 if (IsAllocationInlineable(constructor, original_constructor)) {
    [all...]
js-native-context-specialization.cc 139 Node* constructor = NodeProperties::GetValueInput(node, 0); local
145 HeapObjectMatcher m(constructor);
151 // We can constant-fold the super constructor access if the
174 Node* constructor = NodeProperties::GetValueInput(node, 1); local
183 HeapObjectMatcher m(constructor);
209 effect = BuildCheckMaps(constructor, effect, control,
213 NodeProperties::ReplaceValueInput(node, constructor, 0);
230 effect = BuildCheckMaps(constructor, effect, control,
236 node->ReplaceInput(1, constructor);
262 Node* constructor = NodeProperties::GetValueInput(node, 0) local
2187 Handle<JSFunction> constructor; local
2289 Handle<JSFunction> constructor = local
    [all...]
  /external/v8/src/heap/
incremental-marking.cc 655 Object* constructor = map->GetConstructor(); local
656 if (!constructor->IsHeapObject() ||
657 ObjectMarking::IsWhite(HeapObject::cast(constructor))) {
658 // The constructor is dead, no new objects with this map can
697 // The prototype and the constructor are marked, this map keeps only
    [all...]
  /external/v8/src/runtime/
runtime-debug.cc 478 // 7: Constructor call
544 // Add the constructor information.
569 // Check for constructor frame.
570 bool constructor = frame_inspector.IsConstructor(); local
689 // Add the constructor information.
690 details->set(kFrameDetailsConstructCallIndex, heap->ToBoolean(constructor));
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 42 import java.lang.reflect.Constructor;
93 private static final HashMap<String, Constructor<? extends View>> sConstructorMap =
94 new HashMap<String, Constructor<? extends View>>();
557 private final boolean verifyClassLoader(Constructor<? extends View> constructor) {
558 final ClassLoader constructorLoader = constructor.getDeclaringClass().getClassLoader();
594 Constructor<? extends View> constructor = sConstructorMap.get(name); local
595 if (constructor != null && !verifyClassLoader(constructor)) {
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/view/
SupportMenuInflater.java 53 import java.lang.reflect.Constructor;
549 Constructor<?> constructor = clazz.getConstructor(constructorSignature); local
550 constructor.setAccessible(true);
551 return (T) constructor.newInstance(arguments);
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_btservice_AdapterService.cpp 70 jmethodID constructor; member in struct:android::__anon52908
439 android_bluetooth_UidTraffic.constructor,
644 android_bluetooth_UidTraffic.constructor =
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 53 import java.lang.reflect.Constructor;
196 Constructor<? extends LintFix> constructor = clazz.getDeclaredConstructor( local
198 constructor.setAccessible(true);
199 LintFix fix = constructor.newInstance(id, marker);
  /art/compiler/jni/
jni_compiler_test.cc 320 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V"); local
321 jobj_ = env_->NewObject(jklass_, constructor);
    [all...]
  /art/dexdump/
dexdump.cc 278 "CONSTRUCTOR", /* 0x10000 */
1252 const bool constructor = (name[0] == '<'); local
    [all...]
  /art/dexlayout/
dexlayout.cc 198 "CONSTRUCTOR", /* 0x10000 */
1212 const bool constructor = (name[0] == '<'); local
    [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc 266 StackHandleScope<2> hs(self); // Class, constructor, object.
292 // 2) If we can't find the default constructor. We'll postpone the exception to runtime.
311 "Could not find default constructor for '%s'",
414 // Special managed code cut-out to allow constructor lookup in a un-started runtime.
427 ObjPtr<mirror::Constructor> constructor; local
430 constructor = mirror::Class::GetDeclaredConstructorInternal<PointerSize::k64,
433 constructor = mirror::Class::GetDeclaredConstructorInternal<PointerSize::k32,
438 constructor = mirror::Class::GetDeclaredConstructorInternal<PointerSize::k64,
441 constructor = mirror::Class::GetDeclaredConstructorInternal<PointerSize::k32
636 ArtMethod* constructor = h_class->FindConstructor("([B)V", cl->GetImagePointerSize()); local
    [all...]
  /build/make/tools/signapk/src/com/android/signapk/
SignApk.java 58 import java.lang.reflect.Constructor;
801 Constructor<?> constructor = null; local
802 for (Constructor<?> c : klass.getConstructors()) {
804 constructor = c;
808 if (constructor == null) {
809 System.err.println("No zero-arg constructor found for " + providerClassName);
816 o = constructor.newInstance();
    [all...]
  /cts/tests/tests/renderscript/libcoremathtestcpp/
CoreMathTestJni.cpp 74 jmethodID constructor = env->GetMethodID(mClass, "<init>", "()V"); local
75 if (!constructor) {
76 LOGE("Can't find the constructor of %s", name.c_str());
79 mObject = env->NewObject(mClass, constructor);
101 return 0; // We already have logged the error in the constructor.

Completed in 1499 milliseconds

1 2 3 4 5 6 7 8 91011>>