Searched refs:type_handle (Results 1 - 2 of 2) sorted by last modified time

/art/compiler/optimizing/
H A Dnodes.cc2292 ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { argument
2295 DCHECK(IsValidHandle(type_handle));
2297 DCHECK(!type_handle->CannotBeAssignedFromOtherTypes())
2301 return ReferenceTypeInfo(type_handle, is_exact);
H A Dnodes.h161 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact);
163 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { argument
164 return ReferenceTypeInfo(type_handle, is_exact);
263 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact) argument
264 : type_handle_(type_handle), is_exact_(is_exact) { }

Completed in 45 milliseconds