Home | History | Annotate | Download | only in jni_generator

Lines Matching refs:static

56     self.static = kwargs['static']
82 self.static = kwargs['static']
90 self.env_call = GetEnvCall(self.is_constructor, self.static,
404 static='static' in match.group('qualifiers'),
466 call = 'Static' + call
563 static='static' in match.group('prefix'),
608 static='static' in match.group('prefix'),
624 static=False,
634 re_constant_field = re.compile('.*?public static final int (?P<name>.*?);')
857 static const JNINativeMethod kMethods${JAVA_CLASS}[] = {
876 signature = 'static bool RegisterNativesImpl(JNIEnv* env)'
928 if native.static:
1059 static ${RETURN_DECLARATION} ${NAME}(JNIEnv* env, ${PARAMS});
1084 if called_by_native.static or called_by_native.is_constructor:
1146 static ${RETURN_TYPE} Java_${JAVA_CLASS}_${METHOD_ID_VAR_NAME}(\
1154 static base::subtle::AtomicWord g_${JAVA_CLASS}_${METHOD_ID_VAR_NAME} = 0;
1234 base::android::MethodID::TYPE_${STATIC}>(
1255 'STATIC': 'STATIC' if called_by_native.static else 'INSTANCE',