Searched refs:is_exact (Results 1 – 7 of 7) sorted by relevance
/aosp12/art/compiler/optimizing/ |
H A D | reference_type_propagation.cc | 99 bool is_exact); 565 is_exact = is_exact || handle->CannotBeAssignedFromOtherTypes(); in SetClassAsTypeInfo() 586 SetClassAsTypeInfo(instr, klass, is_exact); in UpdateReferenceTypeInfo() 762 bool is_exact = klass->CannotBeAssignedFromOtherTypes(); in VisitCheckCast() local 822 bool is_exact = a.IsExact() && b.IsExact(); in MergeTypes() local 833 is_exact = false; in MergeTypes() 836 is_exact = false; in MergeTypes() 840 is_exact = false; in MergeTypes() 850 is_exact = false; in MergeTypes() 853 return ReferenceTypeInfo::Create(result_type_handle, is_exact); in MergeTypes() [all …]
|
H A D | reference_type_propagation_test.cc | 67 ReferenceTypeInfo ObjectType(bool is_exact = true) REQUIRES_SHARED(Locks::mutator_lock_) { in ObjectType() argument 68 return ReferenceTypeInfo::Create(graph_->GetHandleCache()->GetObjectClassHandle(), is_exact); in ObjectType() 72 ReferenceTypeInfo StringType(bool is_exact = true) REQUIRES_SHARED(Locks::mutator_lock_) { in StringType() argument 73 return ReferenceTypeInfo::Create(graph_->GetHandleCache()->GetStringClassHandle(), is_exact); in StringType()
|
H A D | nodes.cc | 3108 ReferenceTypeInfo ReferenceTypeInfo::Create(TypeHandle type_handle, bool is_exact) { in Create() argument 3112 if (!is_exact) { in Create() 3117 return ReferenceTypeInfo(type_handle, is_exact); in Create()
|
H A D | nodes.h | 199 static ReferenceTypeInfo Create(TypeHandle type_handle, bool is_exact); 205 static ReferenceTypeInfo CreateUnchecked(TypeHandle type_handle, bool is_exact) { in CreateUnchecked() argument 206 return ReferenceTypeInfo(type_handle, is_exact); in CreateUnchecked() 298 ReferenceTypeInfo(TypeHandle type_handle, bool is_exact) in ReferenceTypeInfo() argument 299 : type_handle_(type_handle), is_exact_(is_exact) { } in ReferenceTypeInfo()
|
/aosp12/system/core/property_service/libpropertyinfoserializer/ |
H A D | property_info_serializer.cpp | 35 for (const auto& [name, context, type, is_exact] : property_info) { in BuildTrie() 36 if (!trie_builder.AddToTrie(name, context, type, is_exact, error)) { in BuildTrie()
|
/aosp12/frameworks/native/libs/math/include/math/ |
H A D | half.h | 173 static constexpr const bool is_exact = false;
|
/aosp12/frameworks/proto_logging/stats/ |
H A D | atoms.proto | 16616 optional bool is_exact = 2; field
|