Searched refs:type_handle (Results 1 – 2 of 2) sorted by relevance
2833 ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { in Create() argument2836 DCHECK(IsValidHandle(type_handle)); in Create()2838 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes()) in Create()2842 return ReferenceTypeInfo(type_handle, is_exact); in Create()
194 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);196 static ReferenceTypeInfo Create(TypeHandle type_handle) REQUIRES_SHARED(Locks::mutator_lock_) { in Create() argument197 return Create(type_handle, type_handle->CannotBeAssignedFromOtherTypes()); in Create()200 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { in CreateUnchecked() argument201 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()