HomeSort by relevance Sort by last modified time
    Searched refs:IsInterface (Results 1 - 21 of 21) sorted by null

  /art/runtime/mirror/
iftable-inl.h 27 DCHECK(interface->IsInterface());
class-inl.h 219 DCHECK(klass->IsInterface()) << PrettyClass(this);
259 DCHECK(!IsInterface()) << PrettyClass(this); // handled first in IsAssignableFrom
359 DCHECK(!IsInterface()) << PrettyClass(this);
374 DCHECK(declaring_class->IsInterface()) << PrettyMethod(method);
388 DCHECK(!method->GetDeclaringClass()->IsInterface() || method->IsMiranda());
395 DCHECK(!method->GetDeclaringClass()->IsInterface());
404 if (method->GetDeclaringClass()->IsInterface() && !method->IsMiranda()) {
    [all...]
class.h 207 ALWAYS_INLINE bool IsInterface() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
451 return !IsPrimitive() && !IsInterface() && !IsAbstract() && !IsArrayClass();
455 return (!IsPrimitive() && !IsInterface() && !IsAbstract()) ||
583 if (!this->IsInterface() && this->IsSubClass(access_to)) {
627 } else if (IsInterface()) {
632 return !src->IsInterface() && src->IsSubClass(this);
    [all...]
class.cc 216 os << "----- " << (IsInterface() ? "interface" : "class") << " "
    [all...]
object-inl.h 214 return klass->IsInterface() || InstanceOf(klass);
    [all...]
  /art/runtime/native/
java_lang_reflect_Constructor.cc 43 c->IsInterface() ? "interface" : "abstract class",
java_lang_Class.cc 436 if (UNLIKELY(klass->GetPrimitiveType() != 0 || klass->IsInterface() || klass->IsArrayClass() ||
  /art/runtime/verifier/
reg_type-inl.h 97 } else if (!strict && !lhs.IsUnresolvedTypes() && lhs.GetClass()->IsInterface()) {
reg_type_cache.cc 187 DCHECK(!klass->IsInterface());
method_verifier.cc     [all...]
  /art/runtime/
art_method-inl.h 175 return IsDirect() || (methods_class->IsInterface() && !IsMiranda());
180 return IsConstructor() || IsStatic() || GetDeclaringClass()->IsInterface();
183 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
class_linker_test.cc 86 EXPECT_FALSE(primitive->IsInterface());
140 EXPECT_FALSE(array->IsInterface());
208 if (klass->IsInterface()) {
221 EXPECT_EQ(klass->IsInterface(), !klass->HasVTable());
226 if (klass->IsInterface()) {
716 EXPECT_FALSE(JavaLangObject->IsInterface());
    [all...]
class_linker.cc     [all...]
art_method.cc 70 if (GetDeclaringClass()->IsInterface()) {
debugger.cc 811 if (c->IsInterface()) {
    [all...]
jni_internal.cc 133 } else if (c->IsInterface()) {
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /art/compiler/dex/
verified_method.cc 281 if (reg_class->IsInterface()) {
  /external/clang/lib/Parse/
ParseDeclCXX.cpp     [all...]
  /art/compiler/driver/
compiler_driver-inl.h 254 && !referrer_class->IsInterface()
  /art/compiler/optimizing/
builder.cc 702 if (!outer_class->IsInterface()
    [all...]

Completed in 581 milliseconds