Home
last modified time | relevance | path

Searched refs:METHOD_IS_GETTER (Results 1 – 3 of 3) sorted by relevance

/dalvik/vm/compiler/
DInlineTransformation.cpp235 if (methodStats->attributes & METHOD_IS_GETTER) { in tryInlineSingletonCallsite()
277 if (methodStats->attributes & METHOD_IS_GETTER) { in tryInlineVirtualCallsite()
DFrontend.cpp229 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()
DCompiler.h151 #define METHOD_IS_GETTER (1 << kIsGetter) macro