Lines Matching refs:string_view

76   std::unordered_set<std::string_view> mirror_types = {  in IsMirrored()
513 bool Class::IsInSamePackage(std::string_view descriptor1, std::string_view descriptor2) { in IsInSamePackage()
519 if (descriptor1.find('/', i) != std::string_view::npos || in IsInSamePackage()
520 descriptor2.find('/', i) != std::string_view::npos) { in IsInSamePackage()
559 std::string_view name, in FindInterfaceMethodWithSignature()
602 ArtMethod* Class::FindInterfaceMethod(std::string_view name, in FindInterfaceMethod()
603 std::string_view signature, in FindInterfaceMethod()
608 ArtMethod* Class::FindInterfaceMethod(std::string_view name, in FindInterfaceMethod()
620 std::string_view name = dex_file.StringViewByIdx(method_id.name_idx_); in FindInterfaceMethod()
661 std::string_view name, in FindClassMethodWithSignature()
715 ArtMethod* Class::FindClassMethod(std::string_view name, in FindClassMethod()
716 std::string_view signature, in FindClassMethod()
721 ArtMethod* Class::FindClassMethod(std::string_view name, in FindClassMethod()
748 std::string_view name; // Delay strlen() until actually needed. in FindClassMethod()
825 ArtMethod* Class::FindConstructor(std::string_view signature, PointerSize pointer_size) { in FindConstructor()
828 std::string_view name("<init>"); in FindConstructor()
837 ArtMethod* Class::FindDeclaredDirectMethodByName(std::string_view name, PointerSize pointer_size) { in FindDeclaredDirectMethodByName()
847 ArtMethod* Class::FindDeclaredVirtualMethodByName(std::string_view name, PointerSize pointer_size) { in FindDeclaredVirtualMethodByName()
935 std::string_view name, in FindFieldByNameAndType()
936 std::string_view type) in FindFieldByNameAndType()
952 int result = std::string_view(field.GetName()).compare(name); in FindFieldByNameAndType()
954 result = std::string_view(field.GetTypeDescriptor()).compare(type); in FindFieldByNameAndType()
978 ArtField* Class::FindDeclaredInstanceField(std::string_view name, std::string_view type) { in FindDeclaredInstanceField()
994 ArtField* Class::FindInstanceField(std::string_view name, std::string_view type) { in FindInstanceField()
1018 ArtField* Class::FindDeclaredStaticField(std::string_view name, std::string_view type) { in FindDeclaredStaticField()
1036 std::string_view name, in FindStaticField()
1037 std::string_view type) { in FindStaticField()
1087 std::string_view name, in FindField()
1088 std::string_view type) { in FindField()