Searched refs:instance (Results 1 - 9 of 9) sorted by relevance

/art/test/034-call-null/src/
H A DMain.java25 Main instance = null;
26 instance.doStuff(0, null, null, null);
/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/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/107-int-math2/src/
H A DMain.java99 Main instance = new Main();
100 Main base = instance;
101 int val1 = instance.tryThing();
/art/runtime/
H A Djni_internal_test.cc114 // We have an instance of the class we asked for...
205 // Not instance.
969 // A superclass is assignable from an instance of its
977 // An interface is assignable from an instance of an implementing
1267 #define EXPECT_PRIMITIVE_FIELD(instance, type, field_name, sig, value1, value2) \
1271 env_->Set ## type ## Field(instance, fid, value1); \
1272 EXPECT_EQ(value1, env_->Get ## type ## Field(instance, fid)); \
1273 env_->Set ## type ## Field(instance, fid, value2); \
1274 EXPECT_EQ(value2, env_->Get ## type ## Field(instance, fid)); \
1281 env_->Get ## type ## Field(instance, nullpt
[all...]
H A Djni_internal.cc1538 #define GET_PRIMITIVE_FIELD(fn, instance) \
1539 CHECK_NON_NULL_ARGUMENT_RETURN_ZERO(instance); \
1542 mirror::Object* o = soa.Decode<mirror::Object*>(instance); \
1552 #define SET_PRIMITIVE_FIELD(fn, instance, value) \
1553 CHECK_NON_NULL_ARGUMENT_RETURN_VOID(instance); \
1556 mirror::Object* o = soa.Decode<mirror::Object*>(instance); \
/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 462 milliseconds