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

  /external/clang/lib/AST/
NSAPI.cpp 40 Selector Sel;
43 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithString"));
46 Sel = Ctx.Selectors.getUnarySelector(
54 Sel = Ctx.Selectors.getSelector(2, KeyIdents);
58 Sel= Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("stringWithCString"));
61 Sel = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get("initWithString"));
64 return (NSStringSelectors[MK] = Sel);
71 NSAPI::getNSStringMethodKind(Selector Sel) const {
74 if (Sel == getNSStringSelector(MK))
83 Selector Sel;
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 221 SelectInst *Sel =
225 Rem->replaceAllUsesWith(Sel);
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 67 Selector Sel = Msg->getSelector();
71 (NS.getNSStringSelector(NSAPI::NSStr_stringWithString) == Sel ||
72 NS.getNSStringSelector(NSAPI::NSStr_initWithString) == Sel)) ||
76 (NS.getNSArraySelector(NSAPI::NSArr_arrayWithArray) == Sel ||
77 NS.getNSArraySelector(NSAPI::NSArr_initWithArray) == Sel)) ||
82 NSAPI::NSDict_dictionaryWithDictionary) == Sel ||
83 NS.getNSDictionarySelector(NSAPI::NSDict_initWithDictionary) == Sel))) {
303 Selector Sel = Msg->getSelector();
305 if (Sel == NS.getNSArraySelector(NSAPI::NSArr_objectAtIndex))
308 if (Sel == NS.getNSDictionarySelector(NSAPI::NSDict_objectForKey)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 710 Selector Sel) const {
735 D = IDecl->lookupMethod(Sel, true);
767 Selector Sel = E->getSelector();
793 if (!canBeOverridenInSubclass(IDecl, Sel))
800 const ObjCMethodDecl *MD = IDecl->lookupPrivateMethod(Sel);
813 return RuntimeDefinition(IDecl->lookupPrivateClassMethod(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 147 Selector Sel, const ObjCMethodDecl *Method) {
150 S.Diag(Loc, diag::err_undeclared_boxing_method) << Sel << Class->getName();
158 << Sel;
188 Selector Sel = S.NSAPIObj->getNSNumberLiteralSelector(*Kind,
224 ObjCMethodDecl *Method = S.NSNumberDecl->lookupClassMethod(Sel);
228 Method = ObjCMethodDecl::Create(CX, SourceLocation(), SourceLocation(), Sel,
245 if (!validateBoxingMethod(S, Loc, S.NSNumberDecl, Sel, Method))
639 Sel = NSAPIObj->getNSArraySelector(NSAPI::NSArr_arrayWithObjectsCount);
640 ObjCMethodDecl *Method = NSArrayDecl->lookupClassMethod(Sel);
644 SourceLocation(), SourceLocation(), Sel,
    [all...]
SemaCodeComplete.cpp 237 void setPreferredSelector(Selector Sel) {
238 PreferredSelector = Sel;
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 777 Selector Sel = M.getSelector();
778 if (Sel == ObjectAtIndex || Sel == ObjectAtIndexedSubscript) {
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 471 Value *Sel = Builder.CreateSelect(
477 Idx.push_back(Sel);
  /external/clang/lib/CodeGen/
CGException.cpp 412 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...]
  /external/llvm/lib/Transforms/Scalar/
SimplifyLibCalls.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 1232 milliseconds