Home | History | Annotate | Download | only in quick

Lines Matching full:is_static

74   CallingConvention(bool is_static, bool is_synchronized, const char* shorty,
80 is_static_(is_static), is_synchronized_(is_synchronized),
82 num_args_ = (is_static ? 0 : 1) + strlen(shorty) - 1;
83 num_ref_args_ = is_static ? 0 : 1; // The implicit this pointer.
227 bool is_static,
256 ManagedRuntimeCallingConvention(bool is_static,
260 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {}
280 bool is_static,
360 JniCallingConvention(bool is_static, bool is_synchronized, const char* shorty,
362 : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {}