Home
last modified time | relevance | path

Searched refs:method (Results 451 – 475 of 961) sorted by relevance

1...<<11121314151617181920>>...39

/art/test/098-ddmc/
Dexpected.txt2 …able from start of message: 15 number of class name strings: 0 number of method name strings: 0 nu…
14 …able from start of message: 15 number of class name strings: 0 number of method name strings: 0 nu…
23 …able from start of message: 15 number of class name strings: 0 number of method name strings: 0 nu…
/art/test/162-method-resolution/jasmin/
DTest5User.j18 .method public static test()V
26 ; Call an unresolved method bar() to force verification at runtime
40 .end method
/art/openjdkjvmti/
Devents.cc629 art::ArtMethod* method, in MethodEntered() argument
632 if (!method->IsRuntimeMethod() && in MethodEntered()
638 art::jni::EncodeArtMethod(method)); in MethodEntered()
646 art::ArtMethod* method, in MethodExited() argument
651 if (method->IsRuntimeMethod()) { in MethodExited()
681 method->GetInterfaceMethodIfProxy(art::kRuntimePointerSize)->GetReturnTypePrimitive(), in MethodExited()
682 art::Primitive::kPrimNot) << method->PrettyMethod(); in MethodExited()
692 art::jni::EncodeArtMethod(method), in MethodExited()
701 art::ArtMethod* method, in MethodExited() argument
730 method->GetInterfaceMethodIfProxy(art::kRuntimePointerSize)->GetReturnTypePrimitive(), in MethodExited()
[all …]
/art/test/ti-agent/
Dtrace_helper.cc132 jmethodID method, in singleStepCB() argument
148 jobject method_arg = GetJavaMethod(jvmti, jnienv, method); in singleStepCB()
160 jmethodID method, in fieldAccessCB() argument
180 jobject method_arg = GetJavaMethod(jvmti, jnienv, method); in fieldAccessCB()
196 jmethodID method, in fieldModificationCB() argument
218 jobject method_arg = GetJavaMethod(jvmti, jnienv, method); in fieldModificationCB()
241 jmethodID method, in methodExitCB() argument
249 if (method == data->exit_method || in methodExitCB()
250 method == data->enter_method || in methodExitCB()
261 jobject method_arg = GetJavaMethod(jvmti, jnienv, method); in methodExitCB()
[all …]
/art/test/622-simplifyifs-exception-edges/smali/
DTest.smali19 .method public static test([I)I
45 .end method
47 .method public static test2([II)I
76 .end method
/art/test/804-class-extends-itself/smali/
DMain.smali25 .method public static main([Ljava/lang/String;)V
34 .end method
36 .method static test()V
57 .end method
/art/test/575-checker-string-init-alias/smali/
DTestCase.smali25 .method public static testNoAlias([ILjava/lang/String;)V
45 .end method
51 .method public static testAlias([ILjava/lang/String;)V
72 .end method
/art/test/988-method-trace/
Dgen_srcs.py169 def __init__(self, staticness, pretty_params, method, kls): argument
175 self.method_name = method
218 method = get_item(IDX_METHOD_NAME)
221 debug_print ((sig, method, kls))
229 return MethodInfo(staticness, pretty_params, method, kls)
/art/test/530-checker-lse3/smali/
DStoreLoad.smali38 .method public static test(I)I
46 .end method
55 .method public static test2(I)I
59 .end method
78 .method public static test3(I)I
96 .end method
/art/test/800-smali/smali/
Db_22331663_pass.smali5 .method public static run(Z)V
22 .end method
Db_121245951_3.smali5 .method public static run(Ljava/lang/Object;)V
33 .end method
Db_22331663_fail.smali5 .method public static run(Z)V
20 .end method
/art/test/616-cha-unloading/
Dcha_unload.cc54 ArtMethod* method = ArtMethod::FromReflectedMethod(soa, java_method); in Java_Main_getArtMethod() local
55 return reinterpret_cast64<jlong>(method); in Java_Main_getArtMethod()
/art/test/180-native-default-method/jasmin/
DTestInterface.j18 .method public native foo()V
19 .end method
/art/libdexfile/external/
Ddex_file_ext.cc119 for (const art::ClassAccessor::Method& method : accessor.GetMethods()) { in GetMethodCacheEntryForOffset() local
120 art::CodeItemInstructionAccessor code = method.GetInstructions(); in GetMethodCacheEntryForOffset()
128 int32_t index = method.GetIndex(); in GetMethodCacheEntryForOffset()
145 for (const art::ClassAccessor::Method& method : accessor.GetMethods()) { in GetClassDefIndex() local
146 art::CodeItemInstructionAccessor code = method.GetInstructions(); in GetClassDefIndex()
366 for (const art::ClassAccessor::Method& method : accessor.GetMethods()) { in ExtDexFileGetAllMethodInfos() local
367 art::CodeItemInstructionAccessor code = method.GetInstructions(); in ExtDexFileGetAllMethodInfos()
377 ext_dex_file->dex_file_->PrettyMethod(method.GetIndex(), with_signature)}; in ExtDexFileGetAllMethodInfos()
/art/test/435-new-instance/src/
DTestInterface.java18 public void method(); in method() method
DTestClass.java20 public void method() {}; in method() method in TestClass
/art/test/508-referrer-method/src/p1/
DPackagePrivateA.java20 protected static int method() { in method() method in PackagePrivateA
/art/test/510-checker-try-catch/smali/
DBuilder.smali98 .method public static testMultipleTryCatch(III)I
131 .end method
210 .method public static testMultipleEntries(IIII)I
232 .end method
289 .method public static testMultipleExits(II)I
308 .end method
377 .method public static testSharedBoundary(III)I
400 .end method
473 .method public static testSharedBoundary_Reverse(III)I
500 .end method
[all …]
/art/test/470-huge-method/
Dinfo.txt1 Test for huge method.
/art/test/105-invoke/
Dinfo.txt1 Tests simple method dispatch.
/art/test/HiddenApiSignatures/
DInterface.java20 public void method(); in method() method
/art/runtime/jni/
Djni_internal_test.cc221 jmethodID method = env_->GetMethodID(nullptr, "<init>", "(Ljava/lang/String;)V"); in GetMethodIdBadArgumentTest() local
222 EXPECT_EQ(nullptr, method); in GetMethodIdBadArgumentTest()
227 method = env_->GetMethodID(jlnsme, nullptr, "(Ljava/lang/String;)V"); in GetMethodIdBadArgumentTest()
228 EXPECT_EQ(nullptr, method); in GetMethodIdBadArgumentTest()
231 method = env_->GetMethodID(jlnsme, "<init>", nullptr); in GetMethodIdBadArgumentTest()
232 EXPECT_EQ(nullptr, method); in GetMethodIdBadArgumentTest()
243 jmethodID method = env_->GetStaticMethodID(nullptr, "valueOf", "(I)Ljava/lang/String;"); in GetStaticMethodIdBadArgumentTest() local
244 EXPECT_EQ(nullptr, method); in GetStaticMethodIdBadArgumentTest()
248 method = env_->GetStaticMethodID(jlstring, nullptr, "(I)Ljava/lang/String;"); in GetStaticMethodIdBadArgumentTest()
249 EXPECT_EQ(nullptr, method); in GetStaticMethodIdBadArgumentTest()
[all …]
/art/test/537-checker-debuggable/smali/
DTestCase.smali19 # The phi in this method has no actual uses but one environment use. It will
29 .method public static deadPhi(III)I
42 .end method
/art/test/915-obsolete-2/
Dinfo.txt1 Tests basic obsolete method support

1...<<11121314151617181920>>...39