Home | History | Annotate | Download | only in quick

Lines Matching refs:is_static

68   CallingConvention(bool is_static, bool is_synchronized, const char* shorty)
69 : displacement_(0), is_static_(is_static), is_synchronized_(is_synchronized),
71 num_args_ = (is_static ? 0 : 1) + strlen(shorty) - 1;
72 num_ref_args_ = is_static ? 0 : 1; // The implicit this pointer.
166 static ManagedRuntimeCallingConvention* Create(bool is_static, bool is_synchronized,
191 ManagedRuntimeCallingConvention(bool is_static, bool is_synchronized, const char* shorty)
192 : CallingConvention(is_static, is_synchronized, shorty) {}
211 static JniCallingConvention* Create(bool is_static, bool is_synchronized, const char* shorty,
276 explicit JniCallingConvention(bool is_static, bool is_synchronized, const char* shorty)
277 : CallingConvention(is_static, is_synchronized, shorty) {}