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 426 const ObjCInterfaceDecl *IFace = this;
427 while (IFace) {
428 if (IFace->hasDesignatedInitializers())
429 return IFace;
430 if (!IFace->inheritsDesignatedInitializers())
432 IFace = IFace->getSuperClass();
498 const ObjCInterfaceDecl *IFace= findInterfaceWithDesignatedInitializers();
499 if (!IFace)
502 for (const auto *MD : IFace->instance_methods()
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp     [all...]
SemaExprObjC.cpp 1418 const ObjCContainerDecl *iface; local
    [all...]
SemaCodeComplete.cpp 658 if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
659 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 754 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
755 if (!IFace->isThisDeclarationADefinition()) {
757 SourceLocation StartLoc = IFace->getLocStart();
773 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 221 milliseconds