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

1 2 3 4

  /art/runtime/mirror/
iftable-inl.h 28 DCHECK(interface->IsInterface());
class-inl.h 345 DCHECK(klass->IsInterface()) << PrettyClass();
400 DCHECK(!IsInterface()) << PrettyClass(); // handled first in IsAssignableFrom
520 DCHECK(!IsInterface()) << PrettyClass();
536 if (UNLIKELY(!declaring_class->IsInterface())) {
556 DCHECK(!method->GetDeclaringClass()->IsInterface() || method->IsDefault() || method->IsMiranda());
563 DCHECK(!method->GetDeclaringClass()->IsInterface());
572 if (method->GetDeclaringClass()->IsInterface() && !method->IsCopied()) {
    [all...]
class.cc 265 os << "----- " << (IsInterface() ? "interface" : "class") << " "
408 if (LIKELY(klass->IsInterface())) {
431 if (LIKELY(klass->IsInterface())) {
472 } else if (klass->IsInterface()) {
697 DCHECK(method->GetDeclaringClass()->IsInterface());
698 DCHECK(IsInterface()) << "Should only be called on a interface class";
    [all...]
  /art/runtime/openjdkjvmti/
ti_class.h 78 static jvmtiError IsInterface(jvmtiEnv* env, jclass klass, jboolean* is_interface_ptr);
  /art/runtime/
class_linker-inl.h 105 if (UNLIKELY(!klass->IsInterface())) {
124 if (UNLIKELY(klass->IsInterface())) {
169 if (klass->IsInterface()) {
art_method-inl.h 185 return IsDirect() || (methods_class->IsInterface() && !IsCopied());
192 return IsDirect() || !(methods_class->IsInterface() || methods_class->IsObjectClass());
class_linker_test.cc 98 EXPECT_FALSE(primitive->IsInterface());
137 EXPECT_FALSE(JavaLangObject->IsInterface());
211 EXPECT_FALSE(array->IsInterface());
286 if (klass->IsInterface()) {
298 EXPECT_EQ(klass->IsInterface(), !klass->HasVTable());
303 if (klass->IsInterface()) {
342 EXPECT_TRUE(method.GetDeclaringClass()->IsInterface())
    [all...]
  /art/runtime/native/
java_lang_reflect_Constructor.cc 71 c->IsInterface() ? "interface" : "abstract class",
  /art/runtime/verifier/
reg_type-inl.h 105 } else if (!strict && !lhs.IsUnresolvedTypes() && lhs.GetClass()->IsInterface()) {
verifier_deps.cc 341 DCHECK(destination->IsInterface());
422 (!is_strict && destination->IsInterface())) {
464 if (!destination->IsInterface() && !source->IsInterface()) {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
type.go 25 IsInterface() bool
69 func (t *CompilerType) IsInterface() bool { return false }
102 func (t *TupleType) IsInterface() bool { return false }
type_test.go 39 func (t *TypeImpl) IsInterface() bool { return t.inter }
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
type.go 25 IsInterface() bool
69 func (t *CompilerType) IsInterface() bool { return false }
102 func (t *TupleType) IsInterface() bool { return false }
type_test.go 39 func (t *TypeImpl) IsInterface() bool { return t.inter }
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
swt.go 67 if t != nil && !t.IsInterface() {
139 case t.IsInterface() && !n1.Type.IsInterface() && !n1.Type.IsComparable():
160 case !n1.Type.IsInterface() && t.IsInterface() && !implements(n1.Type, t, &missing, &have, &ptr):
391 if typeswvar != nil || sw.Left.Type.IsInterface() || !n.List.First().Type.IsInteger() || n.List.Len() < integerRangeMin {
545 isconst: !n.Left.Type.IsInterface(),
597 if !s.exprname.Type.IsInterface() {
692 if !cond.Right.Type.IsInterface() {
subr.go 769 if dst.IsInterface() && src.Etype != TNIL {
809 if src.IsInterface() && dst.Etype != TBLANK {
886 if src.IsInterface() || dst.IsInterface() {
1228 if tl.Elem().IsStruct() && tr.Elem().IsInterface() {
1230 } else if tl.Elem().IsInterface() && tr.Elem().IsStruct() {
1389 if u.IsStruct() || u.IsInterface() {
1443 if !u.IsStruct() && !u.IsInterface() {
    [all...]
typecheck.go 611 if r.Type.IsInterface() && !l.Type.IsInterface() && !l.Type.IsComparable() {
618 if r.Type.IsInterface() == l.Type.IsInterface() || l.Type.Width >= 1<<16 {
633 if l.Type.IsInterface() && !r.Type.IsInterface() && !r.Type.IsComparable() {
640 if r.Type.IsInterface() == l.Type.IsInterface() || r.Type.Width >= 1<<16 {
657 if r.Type.IsInterface() == l.Type.IsInterface() || aop == 0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
swt.go 67 if t != nil && !t.IsInterface() {
139 case t.IsInterface() && !n1.Type.IsInterface() && !n1.Type.IsComparable():
160 case !n1.Type.IsInterface() && t.IsInterface() && !implements(n1.Type, t, &missing, &have, &ptr):
391 if typeswvar != nil || sw.Left.Type.IsInterface() || !n.List.First().Type.IsInteger() || n.List.Len() < integerRangeMin {
545 isconst: !n.Left.Type.IsInterface(),
597 if !s.exprname.Type.IsInterface() {
692 if !cond.Right.Type.IsInterface() {
subr.go 769 if dst.IsInterface() && src.Etype != TNIL {
809 if src.IsInterface() && dst.Etype != TBLANK {
886 if src.IsInterface() || dst.IsInterface() {
1228 if tl.Elem().IsStruct() && tr.Elem().IsInterface() {
1230 } else if tl.Elem().IsInterface() && tr.Elem().IsStruct() {
1389 if u.IsStruct() || u.IsInterface() {
1443 if !u.IsStruct() && !u.IsInterface() {
    [all...]
typecheck.go 611 if r.Type.IsInterface() && !l.Type.IsInterface() && !l.Type.IsComparable() {
618 if r.Type.IsInterface() == l.Type.IsInterface() || l.Type.Width >= 1<<16 {
633 if l.Type.IsInterface() && !r.Type.IsInterface() && !r.Type.IsComparable() {
640 if r.Type.IsInterface() == l.Type.IsInterface() || r.Type.Width >= 1<<16 {
657 if r.Type.IsInterface() == l.Type.IsInterface() || aop == 0
    [all...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Parse/
Parser.h     [all...]

Completed in 660 milliseconds

1 2 3 4