HomeSort by relevance Sort by last modified time
    Searched refs:GetMethod (Results 1 - 25 of 52) sorted by null

1 2 3

  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
attribute.swg 141 %define %attribute_custom(Class, AttributeType, AttributeName, GetMethod, SetMethod, GetMethodCall, SetMethodCall)
142 %ignore Class::GetMethod();
143 %ignore Class::GetMethod() const;
170 %define %attribute_readonly(Class, AttributeType, AttributeName, GetMethod, GetMethodCall)
171 %ignore Class::GetMethod();
172 %ignore Class::GetMethod() const;
196 %define %attribute(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
198 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_))
200 %attribute_readonly(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, self_->GetMethod()
    [all...]
  /art/runtime/
method_helper-inl.h 31 const DexFile::MethodId& mid = dex_file->GetMethodId(GetMethod()->GetDexMethodIndex());
34 dex_file->GetMethodId(other->GetMethod()->GetDexMethodIndex());
39 other_dex_file->GetMethodId(other->GetMethod()->GetDexMethodIndex());
47 mirror::ArtMethod* method = GetMethod();
57 mirror::ArtMethod* method = GetMethod();
66 mirror::ArtMethod* method = GetMethod();
nth_caller_visitor.h 34 mirror::ArtMethod* m = GetMethod();
throw_location.h 60 mirror::ArtMethod* GetMethod() const {
stack.cc 37 mirror::ArtMethod* m = GetMethod();
51 mirror::ArtMethod* m = GetMethod();
60 return ThrowLocation(GetThisObject(), GetMethod(), GetDexPC());
69 if (current_frame->GetMethod()->IsNative()) {
109 return GetMethod()->ToDexPc(cur_quick_frame_pc_, abort_on_failure);
119 mirror::ArtMethod* m = GetMethod();
151 return GetMethod()->NativePcOffset(cur_quick_frame_pc_);
158 DCHECK(m == GetMethod());
212 DCHECK(m == GetMethod());
259 DCHECK(m == GetMethod());
    [all...]
method_helper.h 40 mirror::ArtMethod* GetMethod() const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
89 if (GetMethod()->IsStatic()) {
common_throws.cc 319 mirror::DexCache* dex_cache = throw_location.GetMethod()->GetDeclaringClass()->GetDexCache();
324 throw_location.GetMethod()->GetDeclaringClass(), msg.str().c_str());
351 mirror::DexCache* dex_cache = throw_location.GetMethod()->GetDeclaringClass()->GetDexCache();
367 const DexFile::CodeItem* code = throw_location.GetMethod()->GetCodeItem();
395 verifier::MethodVerifier::FindInvokedMethodAtDexPc(throw_location.GetMethod(),
416 throw_location.GetMethod(), false);
426 verifier::MethodVerifier::FindAccessedFieldAtDexPc(throw_location.GetMethod(),
447 throw_location.GetMethod(), false);
457 verifier::MethodVerifier::FindAccessedFieldAtDexPc(throw_location.GetMethod(),
497 *throw_location.GetMethod()->GetDeclaringClass()->GetDexCache()->GetDexFile()
    [all...]
method_helper.cc 67 mirror::ArtMethod* method = GetMethod();
108 mirror::ArtMethod* method = GetMethod();
profiler.h 60 MethodReference GetMethod() { return method_; }
73 MethodReference mr1 = node1->GetMethod();
74 MethodReference mr2 = node2->GetMethod();
  /art/runtime/entrypoints/interpreter/
interpreter_entrypoints.cc 31 mirror::ArtMethod* method = shadow_frame->GetMethod();
47 method = shadow_frame->GetMethod();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 61 return frame.GetMethod().Name;
66 return frame.GetMethod().DeclaringType.Name;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 67 return frame.GetMethod().Name;
73 return frame.GetMethod().DeclaringType.Name;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.h 48 enum Method { GetMethod, PostMethod, DialogMethod };
54 : m_method(GetMethod)
FormSubmission.cpp 113 return FormSubmission::GetMethod;
124 case GetMethod:
235 formData = domFormData->createFormData(attributes.method() == GetMethod ? FormData::FormURLEncoded : FormData::parseEncodingType(encodingType));
  /art/runtime/arch/x86/
context_x86.cc 40 mirror::ArtMethod* method = fr.GetMethod();
  /art/runtime/entrypoints/portable/
portable_thread_entrypoints.cc 34 mirror::ArtMethod* method = cur_frame->GetMethod();
  /art/test/004-StackWalk/
stack_walk_jni.cc 51 mirror::ArtMethod* m = GetMethod();
  /external/chromium_org/content/renderer/pepper/
pepper_url_request_unittest.cc 92 WebString GetMethod() {
222 EXPECT_TRUE(IsExpected(GetMethod(), "GET"));
224 EXPECT_TRUE(IsExpected(GetMethod(), "POST"));
  /art/runtime/entrypoints/
entrypoint_utils.cc 60 DCHECK(throw_location.GetMethod() == referrer);
292 if (mh_interface_method.GetMethod()->GetDeclaringClass()->IsInterface()) {
294 mh_interface_method.GetMethod());
297 DCHECK(mh_interface_method.GetMethod()->GetDeclaringClass()->IsObjectClass());
298 proxy_method = mh_interface_method.GetMethod();
  /art/runtime/interpreter/
interpreter_common.cc 34 ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
55 instrumentation->FieldReadEvent(self, this_object, shadow_frame.GetMethod(),
139 instrumentation->FieldReadEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
210 ArtField* f = FindFieldFromCode<find_type, do_access_check>(field_idx, shadow_frame.GetMethod(), self,
235 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(),
344 instrumentation->FieldWriteEvent(Thread::Current(), obj, shadow_frame.GetMethod(),
394 mirror::ArtMethod* method = GetMethod();
469 Handle<mirror::ArtMethod> h_method(hs.NewHandle(shadow_frame.GetMethod()));
475 shadow_frame.GetMethod(), dex_pc);
479 shadow_frame.GetMethod(), dex_pc)
    [all...]
interpreter.cc 356 DCHECK(shadow_frame.GetMethod() == mh.GetMethod() ||
357 shadow_frame.GetMethod()->GetDeclaringClass()->IsProxyClass());
358 DCHECK(!shadow_frame.GetMethod()->IsAbstract());
359 DCHECK(!shadow_frame.GetMethod()->IsNative());
360 shadow_frame.GetMethod()->GetDeclaringClass()->AssertInitializedOrInitializingInThread(self);
363 if (LIKELY(shadow_frame.GetMethod()->IsPreverified())) {
501 MethodHelper mh(hs.NewHandle(shadow_frame->GetMethod()));
502 const DexFile::CodeItem* code_item = mh.GetMethod()->GetCodeItem();
549 ArtMethod* method = shadow_frame->GetMethod();
    [all...]
interpreter_goto_table_impl.cc 157 shadow_frame.GetMethod(), 0);
262 shadow_frame.GetMethod(), dex_pc,
266 shadow_frame.GetMethod(), dex_pc);
281 shadow_frame.GetMethod(), dex_pc,
285 shadow_frame.GetMethod(), dex_pc);
301 shadow_frame.GetMethod(), dex_pc,
305 shadow_frame.GetMethod(), dex_pc);
320 shadow_frame.GetMethod(), dex_pc,
324 shadow_frame.GetMethod(), dex_pc);
339 MethodHelper mh(hs.NewHandle(shadow_frame.GetMethod()));
    [all...]
interpreter_common.h 111 mirror::ArtMethod* sf_method = shadow_frame.GetMethod();
353 oss << PrettyMethod(shadow_frame.GetMethod())
355 << inst->DumpString(mh.GetMethod()->GetDexFile()) << "\n";
  /art/runtime/arch/arm/
context_arm.cc 45 mirror::ArtMethod* method = fr.GetMethod();
  /art/runtime/arch/mips/
context_mips.cc 44 mirror::ArtMethod* method = fr.GetMethod();

Completed in 499 milliseconds

1 2 3