Home
last modified time | relevance | path

Searched refs:type_handle (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dnodes.cc2833 ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { in Create() argument
2836 DCHECK(IsValidHandle(type_handle)); in Create()
2838 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes()) in Create()
2842 return ReferenceTypeInfo(type_handle, is_exact); in Create()
Dnodes.h196 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);
198 static ReferenceTypeInfo Create(TypeHandle type_handle) REQUIRES_SHARED(Locks::mutator_lock_) { in Create() argument
199 return Create(type_handle, type_handle->CannotBeAssignedFromOtherTypes()); in Create()
202 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { in CreateUnchecked() argument
203 return ReferenceTypeInfo(type_handle, is_exact); in CreateUnchecked()
295 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact) in ReferenceTypeInfo() argument
296 : type_handle_(type_handle), is_exact_(is_exact) { } in ReferenceTypeInfo()