Searched refs:BoxingMethod (Results 1 – 5 of 5) sorted by relevance
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaExprObjC.cpp | 450 ObjCMethodDecl *BoxingMethod = nullptr; in BuildObjCBoxedExpr() local 495 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String); in BuildObjCBoxedExpr() 496 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) { in BuildObjCBoxedExpr() 516 BoxingMethod = M; in BuildObjCBoxedExpr() 520 stringWithUTF8String, BoxingMethod)) in BuildObjCBoxedExpr() 523 StringWithUTF8StringMethod = BoxingMethod; in BuildObjCBoxedExpr() 526 BoxingMethod = StringWithUTF8StringMethod; in BuildObjCBoxedExpr() 562 BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), ValueType); in BuildObjCBoxedExpr() 572 BoxingMethod = getNSNumberFactoryMethod(*this, SR.getBegin(), in BuildObjCBoxedExpr() 577 if (!BoxingMethod) { in BuildObjCBoxedExpr() [all …]
|
| /minix3/external/bsd/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjC.cpp | 64 const ObjCMethodDecl *BoxingMethod = E->getBoxingMethod(); in EmitObjCBoxedExpr() local 65 assert(BoxingMethod && "BoxingMethod is null"); in EmitObjCBoxedExpr() 66 assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method"); in EmitObjCBoxedExpr() 67 Selector Sel = BoxingMethod->getSelector(); in EmitObjCBoxedExpr() 73 const ObjCInterfaceDecl *ClassDecl = BoxingMethod->getClassInterface(); in EmitObjCBoxedExpr() 77 EmitCallArgs(Args, BoxingMethod, E->arg_begin(), E->arg_end()); in EmitObjCBoxedExpr() 80 *this, ReturnValueSlot(), BoxingMethod->getReturnType(), Sel, Receiver, in EmitObjCBoxedExpr() 81 Args, ClassDecl, BoxingMethod); in EmitObjCBoxedExpr()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | ExprObjC.h | 94 ObjCMethodDecl *BoxingMethod; variable 102 SubExpr(E), BoxingMethod(method), Range(R) {} in ObjCBoxedExpr() 110 return BoxingMethod; in getBoxingMethod()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 2658 ObjCMethodDecl *BoxingMethod = Exp->getBoxingMethod(); in RewriteObjCBoxedExpr() local 2659 ObjCInterfaceDecl *BoxingClass = BoxingMethod->getClassInterface(); in RewriteObjCBoxedExpr() 2673 getStringLiteral(BoxingMethod->getSelector().getAsString())); in RewriteObjCBoxedExpr() 2694 for (const auto PI : BoxingMethod->parameters()) in RewriteObjCBoxedExpr() 2711 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic()); in RewriteObjCBoxedExpr()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 927 E->BoxingMethod = ReadDeclAs<ObjCMethodDecl>(Record, Idx); in VisitObjCBoxedExpr()
|