Home | History | Annotate | Download | only in quick

Lines Matching full:shorty

72   CallingConvention(bool is_static, bool is_synchronized, const char* shorty,
79 shorty_(shorty) {
80 num_args_ = (is_static ? 0 : 1) + strlen(shorty) - 1;
84 for (size_t i = 1; i < strlen(shorty); i++) {
113 param++; // 0th argument must skip return value at start of the shorty
123 param++; // 0th argument must skip return value at start of the shorty
133 param++; // 0th argument must skip return value at start of the shorty
142 param++; // 0th argument must skip return value at start of the shorty
151 param++; // 0th argument must skip return value at start of the shorty
172 param++; // 0th argument must skip return value at start of the shorty
225 const char* shorty,
252 ManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty,
254 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {}
273 static JniCallingConvention* Create(bool is_static, bool is_synchronized, const char* shorty,
350 explicit JniCallingConvention(bool is_static, bool is_synchronized, const char* shorty,
352 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {}