Searched refs:METHOD_IS_GETTER (Results 1 – 3 of 3) sorted by relevance
235 if (methodStats->attributes & METHOD_IS_GETTER) { in tryInlineSingletonCallsite()277 if (methodStats->attributes & METHOD_IS_GETTER) { in tryInlineVirtualCallsite()
229 attributes &= ~METHOD_IS_GETTER; in analyzeInlineTarget()244 attributes &= ~METHOD_IS_GETTER; in analyzeInlineTarget()265 attributes &= ~(METHOD_IS_GETTER | METHOD_IS_SETTER); in analyzeInlineTarget()328 METHOD_IS_GETTER | METHOD_IS_SETTER; in dvmCompilerAnalyzeMethodBody()354 if ((attributes & (METHOD_IS_GETTER | METHOD_IS_SETTER)) && in dvmCompilerAnalyzeMethodBody()356 attributes &= ~(METHOD_IS_GETTER | METHOD_IS_SETTER); in dvmCompilerAnalyzeMethodBody()374 if (attributes & (METHOD_IS_GETTER | METHOD_IS_SETTER)) { in dvmCompilerAnalyzeMethodBody()376 attributes & METHOD_IS_GETTER ? "getter": "setter"); in dvmCompilerAnalyzeMethodBody()
151 #define METHOD_IS_GETTER (1 << kIsGetter) macro