HomeSort by: relevance | last modified time | path
    Searched defs:BoxingMethod (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h 130 ObjCMethodDecl *BoxingMethod;
138 BoxingMethod(method), Range(R) {
148 return BoxingMethod;
154 return !BoxingMethod && SubExpr;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjC.cpp 65 const ObjCMethodDecl *BoxingMethod = E->getBoxingMethod();
73 assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method");
74 Selector Sel = BoxingMethod->getSelector();
80 const ObjCInterfaceDecl *ClassDecl = BoxingMethod->getClassInterface();
84 const ParmVarDecl *ArgDecl = *BoxingMethod->param_begin();
104 const ParmVarDecl *EncodingDecl = BoxingMethod->parameters()[1];
114 *this, ReturnValueSlot(), BoxingMethod->getReturnType(), Sel, Receiver,
115 Args, ClassDecl, BoxingMethod);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 506 ObjCMethodDecl *BoxingMethod = nullptr;
559 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
560 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
581 BoxingMethod = M;
585 stringWithUTF8String, BoxingMethod))
588 StringWithUTF8StringMethod = BoxingMethod;
591 BoxingMethod = StringWithUTF8StringMethod;
595 BoxingMethod->getReturnType()->getNullability(Context);
634 BoxingMethod = getNSNumberFactoryMethod(*this, Loc, ValueType);
643 BoxingMethod = getNSNumberFactoryMethod(*this, Loc
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 2638 ObjCMethodDecl *BoxingMethod = Exp->getBoxingMethod();
2639 ObjCInterfaceDecl *BoxingClass = BoxingMethod->getClassInterface();
2647 // Create a call to sel_registerName("<BoxingMethod>:"), etc.
2651 getStringLiteral(BoxingMethod->getSelector().getAsString()));
2671 for (const auto PI : BoxingMethod->parameters())
2687 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic());

Completed in 47 milliseconds