Searched refs:methods (Results 1 - 25 of 79) sorted by relevance

1234

/art/test/048-reflect-v8/
H A Dbuild24 ./default-build "$@" --experimental default-methods
/art/test/146-bad-interface/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/563-checker-invoke-super/
H A Dbuild24 ./default-build "$@" --experimental default-methods
/art/test/604-hot-static-interface/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/962-iface-static/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/963-default-range-smali/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/965-default-verify/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/966-default-conflict/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/967-default-ame/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
27 ./default-build "$@" --experimental default-methods
/art/test/975-iface-private/
H A Dbuild20 ./default-build "$@" --experimental default-methods
/art/test/978-virtual-interface/
H A Dbuild20 ./default-build "$@" --experimental default-methods
/art/test/626-set-resolved-string/src/
H A DMain.java23 // Get all methods. We cannot call getDeclaredMethod("foo") as
25 Method[] methods = Main.class.getDeclaredMethods();
27 // Call getName on the methods, which is implemented by using the dex
29 for (int i = 0; i < methods.length; i++) {
30 methods[i].getName();
/art/test/960-default-smali/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
30 ./default-build "$@" --experimental default-methods
/art/test/969-iface-super/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
30 ./default-build "$@" --experimental default-methods
/art/test/961-default-iface-resolution-gen/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
32 ./default-build "$@" --experimental default-methods
/art/test/964-default-iface-init-gen/
H A Dbuild23 # TODO: fix this temporary work-around for default-methods, see b/19467889
32 ./default-build "$@" --experimental default-methods
/art/test/497-inlining-and-class-loader/
H A Dclear_dex_cache.cc37 ArtMethod** methods = dex_cache->GetResolvedMethods(); local
38 CHECK_EQ(num_methods != 0u, methods != nullptr);
51 ArtMethod* method = mirror::DexCache::GetElementPtrSize(methods, i, kRuntimePointerSize);
62 ArtMethod** methods = soa.Decode<mirror::Class>(cls)->GetDexCache()->GetResolvedMethods(); local
63 CHECK_EQ(num_methods != 0u, methods != nullptr);
65 CHECK_EQ(methods != nullptr, old != nullptr);
69 mirror::DexCache::SetElementPtrSize(methods, i, method, kRuntimePointerSize);
/art/runtime/native/
H A Djava_lang_reflect_Proxy.cc30 jobject loader, jobjectArray methods, jobjectArray throws) {
34 soa, name, interfaces, loader, methods, throws));
29 Proxy_generateProxy(JNIEnv* env, jclass, jstring name, jobjectArray interfaces, jobject loader, jobjectArray methods, jobjectArray throws) argument
/art/compiler/debug/
H A Delf_compilation_unit.h28 std::vector<const MethodDebugInfo*> methods; member in struct:art::debug::ElfCompilationUnit
/art/runtime/
H A Dimtable_test.cc93 std::pair<ArtMethod*, ArtMethod*> methods = LoadMethods("LInterfaces$A;", "foo"); local
94 CHECK_EQ(ImTable::GetImtIndex(methods.first), ImTable::GetImtIndex(methods.second));
100 std::pair<ArtMethod*, ArtMethod*> methods = LoadMethods("LInterfaces$Z;", "foo"); local
101 CHECK_EQ(ImTable::GetImtIndex(methods.first), ImTable::GetImtIndex(methods.second));
H A Dnative_bridge_art_interface.cc56 static uint32_t GetNativeMethods(JNIEnv* env, jclass clazz, JNINativeMethod* methods, argument
58 if ((clazz == nullptr) || (methods == nullptr)) {
68 methods[count].name = m.GetName();
69 methods[count].signature = m.GetShorty();
70 methods[count].fnPtr = m.GetEntryPointFromJni();
83 // The interface is expected to expose the following methods:
88 // native bridge can call back to get all native methods of specified class so that all
H A Dimage-inl.h75 table->Visit([&visitor](const std::pair<ArtMethod*, ArtMethod*>& methods) {
76 return std::make_pair(visitor(methods.first), visitor(methods.second));
/art/test/968-default-partial-compile-gen/
H A Dbuild37 ./default-build "$@" "$EXTRA_ARGS" --experimental default-methods
/art/test/971-iface-super/
H A Dbuild37 ./default-build "$@" "$EXTRA_ARGS" --experimental default-methods
/art/test/utils/python/
H A Dgenerate_java_main.py220 Iterate over all the methods 'c' can call
223 yield from c1.methods
239 Iterate over all the interface methods 'c' can call
241 yield from i.methods
243 yield from i2.methods
267 class Clazz(namedtuple("Clazz", ["name", "methods", "super_class", "implements"])):
273 class IFace(namedtuple("IFace", ["name", "methods", "super_class", "implements"])):
289 methods = [a.text for a in iface.find("methods")]
292 methods
[all...]

Completed in 1727 milliseconds

1234