Searched refs:type_handle (Results 1 – 2 of 2) sorted by relevance
3113 ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { in Create() argument3116 DCHECK(IsValidHandle(type_handle)); in Create()3118 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes()) in Create()3122 return ReferenceTypeInfo(type_handle, is_exact); in Create()
201 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);203 static ReferenceTypeInfo Create(TypeHandle type_handle) REQUIRES_SHARED(Locks::mutator_lock_) { in Create() argument204 return Create(type_handle, type_handle->CannotBeAssignedFromOtherTypes()); in Create()207 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { in CreateUnchecked() argument208 return ReferenceTypeInfo(type_handle, is_exact); in CreateUnchecked()300 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact) in ReferenceTypeInfo() argument301 : type_handle_(type_handle), is_exact_(is_exact) { } in ReferenceTypeInfo()