Home
last modified time | relevance | path

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

/dalvik/vm/compiler/
DInlineTransformation.cpp249 if (methodStats->attributes & METHOD_IS_GETTER) { in tryInlineSingletonCallsite()
291 if (methodStats->attributes & METHOD_IS_GETTER) { in tryInlineVirtualCallsite()
DCompiler.h158 #define METHOD_IS_GETTER (1 << kIsGetter) macro
DFrontend.cpp224 attributes &= ~METHOD_IS_GETTER; in analyzeInlineTarget()
239 attributes &= ~METHOD_IS_GETTER; in analyzeInlineTarget()
260 attributes &= ~(METHOD_IS_GETTER | METHOD_IS_SETTER); in analyzeInlineTarget()
323 METHOD_IS_GETTER | METHOD_IS_SETTER; in dvmCompilerAnalyzeMethodBody()
349 if ((attributes & (METHOD_IS_GETTER | METHOD_IS_SETTER)) && in dvmCompilerAnalyzeMethodBody()
351 attributes &= ~(METHOD_IS_GETTER | METHOD_IS_SETTER); in dvmCompilerAnalyzeMethodBody()
369 if (attributes & (METHOD_IS_GETTER | METHOD_IS_SETTER)) { in dvmCompilerAnalyzeMethodBody()
371 attributes & METHOD_IS_GETTER ? "getter": "setter"); in dvmCompilerAnalyzeMethodBody()