Lines Matching refs:shorty
79 std::string_view shorty, in CallingConvention() argument
85 shorty_(shorty) { in CallingConvention()
86 num_args_ = (is_static ? 0 : 1) + shorty.length() - 1; in CallingConvention()
90 for (size_t i = 1; i < shorty.length(); i++) { in CallingConvention()
91 char ch = shorty[i]; in CallingConvention()
241 std::string_view shorty,
280 std::string_view shorty, in ManagedRuntimeCallingConvention() argument
282 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {} in ManagedRuntimeCallingConvention()
306 std::string_view shorty,
406 std::string_view shorty, in JniCallingConvention() argument
408 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size), in JniCallingConvention()