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()
193 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);195 static ReferenceTypeInfo Create(TypeHandle type_handle) REQUIRES_SHARED(Locks::mutator_lock_) { in Create() argument196 return Create(type_handle, type_handle->CannotBeAssignedFromOtherTypes()); in Create()199 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { in CreateUnchecked() argument200 return ReferenceTypeInfo(type_handle, is_exact); in CreateUnchecked()299 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact) in ReferenceTypeInfo() argument300 : type_handle_(type_handle), is_exact_(is_exact) { } in ReferenceTypeInfo()