Home
last modified time | relevance | path

Searched refs:IsSynthetic (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dart_method.h493 bool IsSynthetic() const {
494 return IsSynthetic(GetAccessFlags());
497 static bool IsSynthetic(uint32_t access_flags) {
Dclass_linker_test.cc110 EXPECT_FALSE(primitive->IsSynthetic()); in AssertPrimitiveClass()
156 EXPECT_FALSE(JavaLangObject->IsSynthetic()); in AssertObjectClass()
221 EXPECT_FALSE(array->IsSynthetic()); in AssertArrayClass()
293 if (!klass->IsSynthetic()) { in AssertClass()
972 EXPECT_FALSE(MyClass->IsSynthetic()); in TEST_F()
/art/runtime/mirror/
Dclass.cc1785 if (orig_method->IsSynthetic() && !new_method->IsSynthetic()) { in IsMethodPreferredOver()
1833 if (!m_hidden && !m.IsSynthetic()) { in GetDeclaredMethodInternal()
1848 DCHECK(result->IsSynthetic()); in GetDeclaredMethodInternal()
1868 if (!m_hidden && !m.IsSynthetic()) { in GetDeclaredMethodInternal()
Dclass.h341 ALWAYS_INLINE bool IsSynthetic() REQUIRES_SHARED(Locks::mutator_lock_) { in IsSynthetic() function
/art/openjdkjvmti/
Dti_method.cc543 return method->IsSynthetic(); in IsMethodSynthetic()