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

  /external/clang/lib/AST/
NSAPI.cpp 38 Selector Sel;
41 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
44 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
47 return (NSStringSelectors[MK] = Sel);
55 Selector Sel;
58 Sel = Ctx.Selectors.getNullarySelector(&Ctx.Idents.get("array"));
61 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithArray"));
64 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObject"));
67 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("arrayWithObjects"));
74 Sel = Ctx.Selectors.getSelector(2, KeyIdents)
    [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 53 Selector Sel = Msg->getSelector();
57 NS.getNSStringSelector(NSAPI::NSStr_stringWithString) == Sel) ||
61 NS.getNSArraySelector(NSAPI::NSArr_arrayWithArray) == Sel) ||
66 NSAPI::NSDict_dictionaryWithDictionary) == Sel)) {
179 Selector Sel = Msg->getSelector();
182 Sel == NS.getNSArraySelector(NSAPI::NSArr_objectAtIndex)) ||
184 Sel == NS.getNSDictionarySelector(NSAPI::NSDict_objectForKey)))
191 Sel == NS.getNSArraySelector(NSAPI::NSMutableArr_replaceObjectAtIndex))
195 Sel == NS.getNSDictionarySelector(NSAPI::NSMutableDict_setObjectForKey))
234 Selector Sel = Msg->getSelector()
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 223 SelectInst *Sel =
227 Rem->replaceAllUsesWith(Sel);
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 470 Value *Sel = Builder.CreateSelect(
476 Idx.push_back(Sel);
  /external/clang/lib/Sema/
SemaExprMember.cpp 387 const Selector &Sel,
392 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
397 if (Decl *D = FindGetterSetterNameDeclFromProtocolList(*I, Member, Sel,
406 const Selector &Sel,
418 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
427 GDecl = FindGetterSetterNameDeclFromProtocolList(*I, Member, Sel,
    [all...]
SemaDeclObjC.cpp     [all...]
SemaExprObjC.cpp 164 Selector Sel = S.NSAPIObj->getNSNumberLiteralSelector(*Kind,
198 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel);;
202 Method = ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel,
217 S.Diag(Loc, diag::err_undeclared_nsnumber_method) << Sel;
224 << Sel;
589 Sel = NSAPIObj->getNSArraySelector(NSAPI::NSArr_arrayWithObjectsCount);
590 ArrayWithObjectsMethod = NSArrayDecl->lookupClassMethod(Sel);
595 SourceLocation(), SourceLocation(), Sel,
630 Diag(SR.getBegin(), diag::err_undeclared_arraywithobjects) << Sel;
722 Selector Sel = NSAPIObj->getNSDictionarySelector
    [all...]
SemaCodeComplete.cpp 237 void setPreferredSelector(Selector Sel) {
238 PreferredSelector = Sel;
    [all...]
SemaExpr.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 907 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs);
908 return Sel;
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 400 return Builder.CreateLoad(getEHSelectorSlot(), "sel");
    [all...]
CGObjC.cpp 66 Selector Sel = BoxingMethod->getSelector();
82 BoxingMethod->getResultType(), Sel, Receiver, Args,
159 Selector Sel = MethodWithObjects->getSelector();
172 Sel,
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 45 CallInst *&Sel,
59 assert(!Sel && "Found more than one eh.selector call!");
60 Sel = CI;
64 if (Exn && Sel) return;
68 if (Exn && Sel) return;
71 FindExnAndSelIntrinsics(*I, Exn, Sel, Visited);
72 if (Exn && Sel) return;
165 CallInst *Sel = 0;
166 FindExnAndSelIntrinsics(UnwindDest, Exn, Sel, Visited);
167 assert(Exn && Sel && "Cannot find eh.exception and eh.selector calls!")
    [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 382 milliseconds