Searched defs:instance (Results 1 - 5 of 5) sorted by relevance

/art/test/080-oom-throw/src/
H A DMain.java47 static void confuseCompilerOptimization(InstanceMemEater instance) { argument
/art/runtime/verifier/
H A Dreg_type.cc38 BooleanType* BooleanType::instance = NULL; member in class:art::verifier::BooleanType
346 if (BooleanType::instance == NULL) {
347 instance = new BooleanType(klass, descriptor, cache_id);
349 return BooleanType::instance;
353 CHECK(BooleanType::instance != NULL);
354 return BooleanType::instance;
358 if (BooleanType::instance != NULL) {
359 delete instance;
360 instance = NULL;
H A Dreg_type.h306 // Get the singleton Conflict instance.
309 // Create the singleton instance.
314 // Destroy the singleton instance.
336 // Get the singleton Undefined instance.
339 // Create the singleton instance.
344 // Destroy the singleton instance.
407 static BooleanType* instance; member in class:art::verifier::BooleanType
/art/test/046-reflect/src/
H A DMain.java62 private void showStrings(Target instance) argument
70 one = (String) field.get(instance);
73 two = (String) field.get(instance);
76 three = (String) field.get(instance);
84 Object instance = new otherpackage.Other();
88 meth.invoke(instance);
98 instance = otherpackage.Other.getInnerClassInstance();
99 target = instance.getClass();
103 meth.invoke(instance);
111 int x = field.getInt(instance);
[all...]
/art/runtime/jdwp/
H A Djdwp_handler.cc581 * Return the instance of java.lang.ClassLoader that loaded the specified
863 * Invoke an instance method. The invocation must occur in the specified
1342 ObjectId instance = request.ReadObjectId(); local
1343 mod.instanceOnly.objectId = instance;

Completed in 207 milliseconds