Lines Matching defs:method
31 * only to allow the debugger to check whether a method has been inlined.
71 // we need to be able to detect possibly inlined method, we pass a null inline method to indicate
74 InlineMethod* method) {
76 DCHECK_EQ(Runtime::Current()->IsCompiler(), method != nullptr);
78 DCHECK_EQ(verifier->CanLoadClasses(), method != nullptr);
89 if (method != nullptr) {
90 method->opcode = kInlineOpNop;
91 method->flags = kInlineSpecial;
92 method->d.data = 0u;
98 return AnalyseReturnMethod(code_item, method);
104 return AnalyseConstMethod(code_item, method);
116 return AnalyseIGetMethod(verifier, method);
128 return AnalyseIPutMethod(verifier, method);
334 ArtMethod* method = dex_cache->GetResolvedMethod(method_idx, cl->GetImagePointerSize());
336 if (method == nullptr || field == nullptr || field->IsStatic()) {
339 mirror::Class* method_class = method->GetDeclaringClass();