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

  /external/clang/include/clang/AST/
ExprObjC.h 96 ObjCMethodDecl *BoxingMethod;
104 SubExpr(E), BoxingMethod(method), Range(R) {}
112 return BoxingMethod;
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 63 const ObjCMethodDecl *BoxingMethod = E->getBoxingMethod();
65 assert(BoxingMethod && "BoxingMethod is null");
66 assert(BoxingMethod->isClassMethod() && "BoxingMethod must be a class method");
67 Selector Sel = BoxingMethod->getSelector();
73 const ObjCInterfaceDecl *ClassDecl = BoxingMethod->getClassInterface();
77 const ParmVarDecl *ArgDecl = *BoxingMethod->param_begin();
97 const ParmVarDecl *EncodingDecl = BoxingMethod->parameters()[1];
107 *this, ReturnValueSlot(), BoxingMethod->getReturnType(), Sel, Receiver
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 505 ObjCMethodDecl *BoxingMethod = nullptr;
534 BoxingMethod = NSStringDecl->lookupClassMethod(stringWithUTF8String);
535 if (!BoxingMethod && getLangOpts().DebuggerObjCLiteral) {
555 BoxingMethod = M;
559 stringWithUTF8String, BoxingMethod))
562 StringWithUTF8StringMethod = BoxingMethod;
565 BoxingMethod = StringWithUTF8StringMethod;
602 BoxingMethod = getNSNumberFactoryMethod(*this, Loc, ValueType);
611 BoxingMethod = getNSNumberFactoryMethod(*this, Loc,
640 BoxingMethod = NSValueDecl->lookupClassMethod(ValueWithBytesObjCType)
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp     [all...]

Completed in 97 milliseconds