OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BoxingMethod
(Results
1 - 4
of
4
) sorted by null
/external/clang/include/clang/AST/
ExprObjC.h
94
ObjCMethodDecl *
BoxingMethod
;
102
SubExpr(E),
BoxingMethod
(method), Range(R) {}
110
return
BoxingMethod
;
[
all
...]
/external/clang/lib/CodeGen/
CGObjC.cpp
64
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();
76
const ParmVarDecl *argDecl = *
BoxingMethod
->param_begin();
83
BoxingMethod
->getResultType(), Sel, Receiver, Args,
84
ClassDecl,
BoxingMethod
);
[
all
...]
/external/clang/lib/Sema/
SemaExprObjC.cpp
426
ObjCMethodDecl *
BoxingMethod
= NULL;
471
BoxingMethod
= NSStringDecl->lookupClassMethod(stringWithUTF8String);
472
if (!
BoxingMethod
&& getLangOpts().DebuggerObjCLiteral) {
494
BoxingMethod
= M;
498
stringWithUTF8String,
BoxingMethod
))
501
StringWithUTF8StringMethod =
BoxingMethod
;
504
BoxingMethod
= StringWithUTF8StringMethod;
540
BoxingMethod
= getNSNumberFactoryMethod(*this, SR.getBegin(), ValueType);
550
BoxingMethod
= getNSNumberFactoryMethod(*this, SR.getBegin(),
555
if (!
BoxingMethod
) {
[
all
...]
/external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp
[
all
...]
Completed in 331 milliseconds