HomeSort by relevance Sort by last modified time
    Searched defs:IFace (Results 1 - 14 of 14) sorted by null

  /art/test/563-checker-invoke-super/src/
Main.java 17 interface IFace {
21 class ClassImplA implements IFace {
25 IFace.super.$noinline$aMethod();
  /art/test/utils/python/
generate_java_main.py 255 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'))
273 class IFace(namedtuple("IFace", ["name", "methods", "super_class", "implements"])):
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")]
290 ifaces[name] = IFace(name = name
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 109 maybeAdjustInterfaceForSubscriptingCheck(const ObjCInterfaceDecl *IFace,
112 assert(IFace && Receiver);
116 return IFace;
121 return IFace;
127 return IFace;
138 return IFace;
144 return IFace;
153 return IFace;
156 static bool canRewriteToSubscriptSyntax(const ObjCInterfaceDecl *&IFace,
163 IFace = maybeAdjustInterfaceForSubscriptingCheck(IFace, Rec, Ctx)
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 454 const ObjCInterfaceDecl *IFace = this;
455 while (IFace) {
456 if (IFace->hasDesignatedInitializers())
457 return IFace;
458 if (!IFace->inheritsDesignatedInitializers())
460 IFace = IFace->getSuperClass();
526 const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers();
527 if (!IFace)
530 for (const auto *MD : IFace->instance_methods()
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp     [all...]
SemaExprObjC.cpp 1415 const ObjCContainerDecl *iface; local
    [all...]
SemaCodeComplete.cpp 675 if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
676 return C.getObjCInterfaceType(Iface);
    [all...]
SemaDeclAttr.cpp     [all...]
SemaType.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 744 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
745 if (!IFace->isThisDeclarationADefinition()) {
747 SourceLocation StartLoc = IFace->getLocStart();
763 ObjCInterfacesSeen.push_back(IFace);
    [all...]
RewriteObjC.cpp 679 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
680 if (!IFace->isThisDeclarationADefinition()) {
682 SourceLocation StartLoc = IFace->getLocStart();
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 807 milliseconds