Searched refs:BoxingMethod (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Sema/
H A DSemaExprObjC.cpp450 ObjCMethodDecl *BoxingMethod = nullptr; local
495 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
496 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
516 BoxingMethod = M;
520 stringWithUTF8String, BoxingMethod))
523 StringWithUTF8StringMethod = BoxingMethod;
526 BoxingMethod = StringWithUTF8StringMethod;
562 BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), ValueType);
572 BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(),
577 if (!BoxingMethod) {
[all...]
/external/clang/include/clang/AST/
H A DExprObjC.h94 ObjCMethodDecl *BoxingMethod; member in class:clang::ObjCBoxedExpr
102 SubExpr(E), BoxingMethod(method), Range(R) {}
110 return BoxingMethod;
/external/clang/lib/CodeGen/
H A DCGObjC.cpp65 const ObjCMethodDecl *BoxingMethod = E->getBoxingMethod(); local
66 assert(BoxingMethod && "BoxingMethod is null");
67 assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method");
68 Selector Sel = BoxingMethod->getSelector();
74 const ObjCInterfaceDecl *ClassDecl = BoxingMethod->getClassInterface();
77 const ParmVarDecl *argDecl = *BoxingMethod->param_begin();
84 *this, ReturnValueSlot(), BoxingMethod->getReturnType(), Sel, Receiver,
85 Args, ClassDecl, BoxingMethod);
[all...]
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp2670 ObjCMethodDecl *BoxingMethod = Exp->getBoxingMethod(); local
2671 ObjCInterfaceDecl *BoxingClass = BoxingMethod->getClassInterface();
2681 // Create a call to sel_registerName("<BoxingMethod>:"), etc.
2685 getStringLiteral(BoxingMethod->getSelector().getAsString()));
2706 for (const auto PI : BoxingMethod->parameters())
2723 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic());
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp926 E->BoxingMethod = ReadDeclAs<ObjCMethodDecl>(Record, Idx);

Completed in 3105 milliseconds