Searched refs:iface (Results 1 - 14 of 14) sorted by relevance

/art/test/023-many-interfaces/
H A Dbuild21 gcc -Wall -Werror -o iface-gen iface-gen.c
22 ./iface-gen
/art/test/023-many-interfaces/src/
H A DManyInterfaces.java302 static void testIface001(Interface001 iface, int count) { argument
304 iface.func001(); iface.func001(); iface.func001(); iface.func001();
305 iface.func001(); iface.func001(); iface.func001(); iface.func001();
306 iface
311 testIface049(Interface049 iface, int count) argument
320 testIface099(Interface099 iface, int count) argument
[all...]
/art/test/972-default-imt-collision/src/
H A DMain.java23 Class<?> iface = Class.forName("Iface2");
24 Method test = c.getMethod("testMe", iface);
/art/test/utils/python/
H A Dgenerate_java_main.py255 for iface in flatten_interfaces(dat, clazz):
256 for meth in flatten_interface_methods(dat, iface):
258 i.add_func(Func(meth, iface.name, 'interface'))
286 for iface in root.find("interfaces"):
287 name = iface.attrib['name']
288 implements = [a.text for a in iface.find("implements")]
289 methods = [a.text for a in iface.find("methods")]
291 super_class = iface.attrib['super'],
/art/test/971-iface-super/util-src/
H A Dgenerate_smali.py350 for iface in self.ifaces:
351 yield self.OUTPUT_PREFIX.format(iface_name = iface.get_name(), tree = self.get_tree())
352 yield from iface.get_expected()
353 yield iface.get_response().get_output_format().format(iface_name = iface.get_name(),
364 super_calls = "\n".join(super_template.format(iface_name = iface.get_name(),
366 tree = self.get_tree()) for iface in self.ifaces)
534 for iface in self.ifaces:
536 yield self.OUTPUT_PREFIX.format(iface_name = iface.get_name(), tree = self.get_tree())
537 yield from iface
[all...]
/art/test/961-default-iface-resolution-gen/util-src/
H A Dgenerate_java.py170 def __init__(self, iface):
174 self.iface = iface
188 iface_tree = self.iface.get_tree())
194 yield self.iface
195 yield from self.iface
202 all_ifaces = set(iface for iface in self if iface.default)
213 iface_name = self.iface
[all...]
/art/test/968-default-partial-compile-gen/util-src/
H A Dgenerate_smali.py276 def __init__(self, iface):
280 self.iface = iface
294 iface_tree = self.iface.get_tree())
300 yield self.iface
301 yield from self.iface
308 return self.iface.get_called()
315 iface_name = self.iface.get_name(),
541 Prints a list of iface trees
555 for iface i
[all...]
/art/test/970-iface-super-resolution-gen/util-src/
H A Dgenerate_smali.py279 # test_{iface}_super();
284 :try_{iface}_start
285 invoke-virtual {{p0}}, L{class_name};->test_{iface}_super()V
286 goto :error_{iface}_end
287 :try_{iface}_end
288 .catch Ljava/lang/Throwable; {{:try_{iface}_start .. :try_{iface}_end}} :error_{iface}_start
289 :error_{iface}_start
293 :error_{iface}_en
[all...]
/art/test/004-JniTest/src/
H A DMain.java272 private static native void testInvokeLambdaMethod(LambdaInterface iface); argument
274 private static native void testInvokeLambdaDefaultMethod(LambdaInterface iface); argument
/art/test/068-classloader/src/
H A DMain.java347 IGetDoubled iface = (IGetDoubled) obj;
350 DoubledExtendOkay de = iface.getDoubled();
/art/runtime/
H A Dclass_linker.cc1166 << klass->PrettyDescriptor() << " iface #" << i;
4060 MutableHandle<mirror::Class> iface(hs.NewHandle<mirror::Class>(nullptr));
4063 iface.Assign(klass->GetIfTable()->GetInterface(i));
4064 DCHECK(iface != nullptr);
4066 if (LIKELY(!iface->HasDefaultMethods() || iface->IsVerified())) {
4068 } else if (UNLIKELY(!AttemptSupertypeVerification(self, klass, iface))) {
4072 } else if (UNLIKELY(!iface->IsVerified())) {
4073 // We softly failed to verify the iface. Stop checking and clean up.
4074 // Put the iface int
4565 ObjPtr<mirror::Class> iface = klass->GetIfTable()->GetInterface(i); local
4853 InitializeDefaultInterfaceRecursive(Thread* self, Handle<mirror::Class> iface, bool can_init_statics, bool can_init_parents) argument
6559 ObjPtr<mirror::Class> iface = iftable->GetInterface(i); local
[all...]
/art/runtime/native/
H A Djava_lang_Class.cc322 ObjPtr<mirror::Class> iface = mirror::Class::ResolveDirectInterface(self, h_clazz, i); local
323 if (UNLIKELY(iface == nullptr)) {
327 result = GetPublicFieldRecursive(self, iface, h_name.Get());
/art/runtime/mirror/
H A Dclass.cc650 MutableHandle<Class> iface(hs.NewHandle<Class>(nullptr));
658 iface.Assign(iftable->GetInterface(k));
661 for (auto& method_iter : iface->GetDeclaredVirtualMethods(pointer_size)) {
673 if (iface->IsAssignableFrom(possible_override->GetDeclaringClass())) {
/art/oatdump/
H A Doatdump.cc3162 mirror::Class* iface = if_table->GetInterface(i); local
3164 std::cerr << " " << iface->GetDescriptor(&iface_name) << std::endl;
3166 for (ArtMethod& iface_method : iface->GetVirtualMethods(pointer_size)) {
3243 mirror::Class* iface = if_table->GetInterface(i); local
3244 size_t num_methods = iface->NumDeclaredVirtualMethods();
3246 for (ArtMethod& iface_method : iface->GetMethods(pointer_size)) {

Completed in 2712 milliseconds