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
96
ObjCMethodDecl *
BoxingMethod
;
104
SubExpr(E),
BoxingMethod
(method), Range(R) {}
112
return
BoxingMethod
;
[
all
...]
/external/clang/lib/Sema/
SemaExprObjC.cpp
507
ObjCMethodDecl *
BoxingMethod
= nullptr;
536
BoxingMethod
= NSStringDecl->lookupClassMethod(stringWithUTF8String);
537
if (!
BoxingMethod
&& getLangOpts().DebuggerObjCLiteral) {
557
BoxingMethod
= M;
561
stringWithUTF8String,
BoxingMethod
))
564
StringWithUTF8StringMethod =
BoxingMethod
;
567
BoxingMethod
= StringWithUTF8StringMethod;
603
BoxingMethod
= getNSNumberFactoryMethod(*this, Loc, ValueType);
612
BoxingMethod
= getNSNumberFactoryMethod(*this, Loc,
641
BoxingMethod
= NSValueDecl->lookupClassMethod(ValueWithBytesObjCType)
[
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/Frontend/Rewrite/
RewriteModernObjC.cpp
[
all
...]
Completed in 829 milliseconds