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/test/046-reflect/src/
H A DMain.java60 private void showStrings(Target instance) argument
68 one = (String) field.get(instance);
71 two = (String) field.get(instance);
74 three = (String) field.get(instance);
82 Object instance = new otherpackage.Other();
86 meth.invoke(instance);
96 instance = otherpackage.Other.getInnerClassInstance();
97 target = instance.getClass();
101 meth.invoke(instance);
109 int x = field.getInt(instance);
[all...]
/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.h303 // Get the singleton Conflict instance.
306 // Create the singleton instance.
311 // Destroy the singleton instance.
333 // Get the singleton Undefined instance.
336 // Create the singleton instance.
341 // Destroy the singleton instance.
404 static BooleanType* instance; member in class:art::verifier::BooleanType
/art/runtime/jdwp/
H A Djdwp_handler.cc572 * Return the instance of java.lang.ClassLoader that loaded the specified
854 * Invoke an instance method. The invocation must occur in the specified
1349 ObjectId instance = request.ReadObjectId(); local
1350 mod.instanceOnly.objectId = instance;

Completed in 258 milliseconds