Searched refs:is_a (Results 1 - 25 of 55) sorted by relevance

123

/openjdk10/corba/src/java.corba/share/classes/org/omg/PortableServer/portable/
H A DDelegate.java92 boolean is_a(Servant Self, String Repository_Id); method in interface:Delegate
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciCodeInstaller.cpp54 assert(hotspot_method != NULL && hotspot_method->is_a(HotSpotResolvedJavaMethodImpl::klass()), "sanity");
103 if (!reference_map->is_a(HotSpotReferenceMap::klass())) {
247 if (obj->is_a(HotSpotResolvedObjectTypeImpl::klass())) {
254 } else if (obj->is_a(HotSpotResolvedJavaMethodImpl::klass())) {
271 if (!obj->is_a(HotSpotResolvedObjectTypeImpl::klass())) {
303 } else if (value->is_a(RegisterValue::klass())) {
339 } else if (value->is_a(StackSlot::klass())) {
362 } else if (value->is_a(JavaConstant::klass())) {
363 if (value->is_a(PrimitiveConstant::klass())) {
364 if (value->is_a(RawConstan
[all...]
H A DjvmciCompilerToVM.cpp206 if (bs->is_a(BarrierSet::CardTableModRef)) {
667 } else if (base_object->is_a(SystemDictionary::ResolvedMethodName_klass())) {
669 } else if (base_object->is_a(SystemDictionary::HotSpotResolvedJavaMethodImpl_klass())) {
686 if (object->is_a(SystemDictionary::HotSpotResolvedJavaMethodImpl_klass())) {
688 } else if (object->is_a(SystemDictionary::HotSpotResolvedObjectTypeImpl_klass())) {
710 if (base_object->is_a(SystemDictionary::HotSpotResolvedJavaMethodImpl_klass())) {
712 } else if (base_object->is_a(SystemDictionary::HotSpotConstantPool_klass())) {
714 } else if (base_object->is_a(SystemDictionary::HotSpotResolvedObjectTypeImpl_klass())) {
716 } else if (base_object->is_a(SystemDictionary::Class_klass())) {
1042 assert(installed_code_handle->is_a(InstalledCod
[all...]
H A DjvmciRuntime.cpp243 if (!(exception->is_a(SystemDictionary::Throwable_klass()))) {
765 if (metadataRoot->is_a(SystemDictionary::HotSpotResolvedJavaMethodImpl_klass())) {
768 } else if (metadataRoot->is_a(SystemDictionary::HotSpotConstantPool_klass())) {
771 } else if (metadataRoot->is_a(SystemDictionary::HotSpotResolvedObjectTypeImpl_klass())) {
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DbarrierSet.hpp79 bool is_a(BarrierSet::Name bsn) const { return _fake_rtti.has_tag(bsn); } function in class:BarrierSet
223 assert(bs->is_a(BarrierSet::GetName<T>::value), "wrong type of barrier set");
/openjdk10/hotspot/src/os_cpu/linux_arm/vm/
H A Dthread_linux_arm.cpp44 if (bs->is_a(BarrierSet::CardTableModRef)) {
/openjdk10/hotspot/src/share/vm/runtime/
H A Dhandles.hpp102 #define DEF_HANDLE(type, is_a) \
112 assert(is_null() || ((oop)obj)->is_a(), "illegal type"); \
H A Dreflection.cpp270 if (!obj->is_a(element_klass)) {
1083 if (!receiver->is_a(klass)) {
1191 if (!arg->is_a(k)) {
/openjdk10/corba/src/java.corba/share/classes/org/omg/PortableServer/
H A DServant.java149 * @return <code>is_a</code> boolean indicating whether the specified
155 return _get_delegate().is_a(this, repository_id);
/openjdk10/hotspot/src/share/vm/services/
H A DlowMemoryDetector.cpp311 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOME here");
330 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOME here");
H A DgcNotifier.cpp219 if (!gc_mbean_h->is_a(gc_mbean_klass)) {
H A DthreadService.cpp367 if (waitingToLockBlocker->is_a(SystemDictionary::abstract_ownable_synchronizer_klass())) {
822 if (_blocker_object != NULL && _blocker_object->is_a(SystemDictionary::abstract_ownable_synchronizer_klass())) {
914 assert(waitingToLockBlocker->is_a(SystemDictionary::abstract_ownable_synchronizer_klass()),
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/portable/
H A DDelegate.java79 public abstract boolean is_a(org.omg.CORBA.Object obj, String repository_id); method in class:Delegate
H A DObjectImpl.java130 return _get_delegate().is_a(this, repository_id);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DDelegateImpl.java119 public boolean is_a(Servant self, String repId) method in class:DelegateImpl
/openjdk10/hotspot/src/share/vm/utilities/
H A Dexceptions.cpp148 if (h_exception->is_a(SystemDictionary::OutOfMemoryError_klass())) {
152 assert(h_exception->is_a(SystemDictionary::Throwable_klass()), "exception is not a subclass of java/lang/Throwable");
303 assert(h_cause->is_a(SystemDictionary::Throwable_klass()),
491 if (message == NULL && exception->is_a(SystemDictionary::Throwable_klass())) {
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaClientDelegateImpl.java206 public boolean is_a(org.omg.CORBA.Object obj, String dest) method in class:CorbaClientDelegateImpl
239 return is_a(obj, dest);
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DjvmciCodeInstaller_aarch64.cpp116 if (hotspot_method->is_a(HotSpotResolvedJavaMethodImpl::klass())) {
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DjvmciCodeInstaller_sparc.cpp122 if (hotspot_method->is_a(HotSpotResolvedJavaMethodImpl::klass())) {
H A Dinterp_masm_sparc.hpp216 void is_a(Label& L);
/openjdk10/hotspot/src/cpu/x86/vm/
H A DjvmciCodeInstaller_x86.cpp151 if (hotspot_method->is_a(HotSpotResolvedJavaMethodImpl::klass())) {
/openjdk10/hotspot/src/share/vm/oops/
H A Doop.hpp104 inline bool is_a(Klass* k) const;
/openjdk10/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp241 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())),
439 if (!(h_exception->is_a(SystemDictionary::Throwable_klass()))) {
695 if (!exception->is_a(SystemDictionary::ThreadDeath_klass())) {
982 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
1044 assert((PENDING_EXCEPTION->is_a(SystemDictionary::OutOfMemoryError_klass())), "we expect only an OOM error here");
/openjdk10/hotspot/src/cpu/ppc/vm/
H A Dinterp_masm_ppc.hpp143 void is_a(Label& L);
/openjdk10/hotspot/src/cpu/s390/vm/
H A Dinterp_masm_s390.hpp214 void is_a(Label& L);

Completed in 331 milliseconds

123