Searched refs:shorties (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/runtime_core/static_core/bytecode_optimizer/ |
H A D | runtime_adapter.cpp | 22 std::initializer_list<panda_file::Type::TypeId> shorties, in IsEqual() 26 auto shortyIt = shorties.begin(); in IsEqual() 30 auto visitType = [&equal, &shorties, &shortyIt, &refTypes, &refTypeIt, &pf](panda_file::Type type, in IsEqual() 35 if (shortyIt == shorties.end() || *shortyIt++ != type.GetId()) { in IsEqual() 45 return equal && shortyIt == shorties.end() && refTypeIt == refTypes.end(); in IsEqual() 21 IsEqual(panda_file::MethodDataAccessor mda, std::initializer_list<panda_file::Type::TypeId> shorties, std::initializer_list<std::string_view> refTypes) IsEqual() argument
|
H A D | runtime_adapter.h | 462 static bool IsEqual(panda_file::MethodDataAccessor mda, std::initializer_list<panda_file::Type::TypeId> shorties,
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | method.cpp | 77 const auto &shorties = other.GetShorty(); in operator ==() local 83 pda.EnumerateTypes([&equal, &shorties, &shortyIdx](panda_file::Type type) { in operator ==() 84 equal = equal && shortyIdx < shorties.size() && type == shorties[shortyIdx]; in operator ==() 87 if (!equal || shortyIdx != shorties.size() || pda.GetRefNum() != refTypes.size()) { in operator ==()
|
Completed in 2 milliseconds