Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc3113 ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { in Create() argument
3116 DCHECK(IsValidHandle(type_handle)); in Create()
3118 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes()) in Create()
3122 return ReferenceTypeInfo(type_handle, is_exact); in Create()
Dnodes.h201 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);
203 static ReferenceTypeInfo Create(TypeHandle type_handle) REQUIRES_SHARED(Locks::mutator_lock_) { in Create() argument
204 return Create(type_handle, type_handle->CannotBeAssignedFromOtherTypes()); in Create()
207 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { in CreateUnchecked() argument
208 return ReferenceTypeInfo(type_handle, is_exact); in CreateUnchecked()
300 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact) in ReferenceTypeInfo() argument
301 : type_handle_(type_handle), is_exact_(is_exact) { } in ReferenceTypeInfo()